In Fuel back-end, under Site, there's a "Blocks" option. Create a new block and you get a form that includes a wysiwyg field. If I create a link within that field (using the RTE, I'm using CKEditor), in the select dropdown, I want to see the PDFs av…
In your simple module, override the form_fields() function and assign an order:
$fields['myfield]['order'] = 5
http://docs.getfuelcms.com/general/forms#universal_attributes
edaw
In ./fuel/config/config.php
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
This defines what characters are allowed in URLs so in theory, yes.
When I had problems retrieving lats & longs from my data a few years ago (before I started using Fuel), I converted them to strings - I've not looked back since...
That 'preview'=>false feature is handy. I couldn't find it documented in http://docs.getfuelcms.com/general/forms#wysiwyg though.
It would be handy to have the 'source'=>false option too to hide the "source" button (in my CKEditor implementat…
There's an old forum post somewhere where someone else was having a similar issue. I took an interest because it was happening to me (on v1.0 I think).
At the time, clearing the cache did the trick.
Since updating to v1.2+, I've not seen it happen…
Yes I've had the same thing happen when you edit a user's permissions.
A recent posting here from Admin suggested it's been fixed for a while - are you using a recent Fuel build?
I can't get into ckfinder.js to see but I suspect they're relative. The apache log shows
http://{server}/fuel/assets/select/core/connector/php/connector.php?command=Init on each request
Is v1.3 routing different to v1.2? ./modules/core/Router.php s…
Yes, it's a proper 404.
And yes, the problem is with the supporting assets in that the core of the module works (the native Fuel assets selector that pops up from CKEditor is replaced by mine and my code takes over popping up the CKFinder window, i…
Cool. I'm not sure I'd see much benefit for my users in running the admin side in Bootstrap but having the front-end features more Bootstrap friendly would be useful - The Fuel navigation helpers for example - I currently had to all sorts of hoops t…
Apart from any possible coding errors, you'll probably find that the default settings on your web server has set the upload file size limit much lower than the average MP3 size. I'd double-0check that first...
Hi
Thanks for that but unfortunately it didn't work for me. I think that's because I've customised the $config['csrf_token_name'] in config.php
This edit to ./views/_admin/reindex.php uses the contents of $config['csrf_token_name'] and this works …
I've seen that happen too and yes, clearing the cache fixes it. I run about x20 Fuel sites but have only seen it on this one site which happens to be one of the first I built.
Could it be Fuel version related issue do you think? My problematic site…
I've got a working blog module to try and duplicate the problem. What were you doing to get the error?
Have you pulled that latest version from Git?
My line 983 is
$where[$tables['blog_links'].'.published'] = 'yes';
Which would imply that you don'…
It looks quite old, is it a Fuel 0.9x plugin? - migt explain why it's not working straight-off...
I'd be inclined to export it to Github (I understand Google is closing down Google Code soon) and do a bit of work converting it. It probably doesn't n…
Yes, that's pretty much what I have too (of course, I have extra code to calculate the actual group_id that I want to use).
I also have code that saves the original auto_page_navigation_group_id to my_page_model::$orig_group_id and then in the on_a…
Thanks. I think I understand the difference but I'm not sure how relevent that is. I'm using all Fuel native code. I've not changed anything just created a on_before_save() function in my over-ridden Fuel_pages_model (My_fuel_pages_model).
Are you …
This is weird.
In pages::create(), I've edited:
// run before_save hook $this->_run_hook('before_save', $posted); log_message('DEBUG','Current Config:: '.print_r($this->config->item('fuel'),true));
I'm setting 'auto_page_navigation_group_…
Hmm. Something's not right.
There is logic in the on_before_save() but I've got a log_message() on the last line before the return which outputs '10'.
I also have a log_message() on the first line of pages::_save_page_vars() which records $this-&g…