The site_url function has been modified in newer versions of FUEL to include a second parameter that can determine https (TRUE), or http (FALSE) or NULL with NULL defaulting to whatever the BASE_URL constant is.
Unfortunately not from the list view or normal create/edit view. There is only that if you are using a select or multi select field that has an add/edit (inline_edit field type), and you uses the "add_params" field parameter which essentially passes…
There was an issue in the routes file which I pushed a change to which should help:
https://github.com/daylightstudio/FUEL-CMS/commit/b56f2cec810784fb30def7c6a7b2e2a20638cfa5
You can pass a "preview" parameter with WYSIWYG field type that would be a view file location in the views/_admin/ folder:
http://docs.getfuelcms.com/general/forms#wysiwyg
Additionally, it passes a module and field parameter to the _fuel_preview.ph…
Hmm... that's a new one to me. I guess I would start by trying to figure out what may be different between the 2 servers in their configuration, PHP versions, CGI vs Apache module, etc.
The popup simply uses an iframe to bring up that page and it s…
The problem had to do with calling the fuel_url function in the fuel_lang file (oddly). This was the fix and is currently in the develop branch too:
https://github.com/daylightstudio/FUEL-CMS/commit/39f76eac5b244faf2c66f37ac4fb5ce7003e17f9
I've been developing mostly on a Mac and that hasn't cropped up yet so I appreciate the report. I've pushed a bunch of file casing updates. Please merge in the latest from 1.4_dev branch and test out when you can and let me know if you run across an…
The template field type will post an array syntax of:
$slide_image[0]['image'] = 'my_image1.jpg'; $slide_image[1]['image'] = 'my_image2.jpg' $slide_image[02]['image'] = 'my_image3.jpg'
Because it is this nested array syntax, the data needs to be ser…
Do you have multiple languages setup in the FUEL config and if so, what language_mode is specified (e.g. segment)?
http://docs.getfuelcms.com/general/localization
There is also a Sync module (which will simply replace your local database from another environment but will sync the assets):
http://docs.getfuelcms.com/modules/sync
https://github.com/daylightstudio/FUEL-CMS-Sync-Module
It looks like in this case it has to do with the MY_Model::auto_encode_entities property which is set to TRUE for the fuel_pagevariables_model. You can overwrite this by creating your own model in fuel/application/models/My_pagevariables_model.php t…
The following would give you a checkbox to enable it.
$config['settings']['enable_profiler'] = array('type' => 'checkbox', 'value' => 1);
However, there are other issues due to the fact that it is tied to the Fuel_hook::post_controller hook a…
An example can be found on the Search module at the bottom and you basically just need a:$config[{$module}]['settings'] = array(); // <-- Form_builder array syntax for form fields http://docs.getfuelcms.com/general/forms
$config['search']['setti…
I think the issue had to do with the 1.4_dev branch having an older version of the mimes in the config. It should be returning the array instead of specifying a $mimes array. I've updated that config to reflect that:
https://github.com/daylightstudi…
What file type are you trying to upload and what type is it actually checking in the Upload class? You may need to modify your fuel/application/config/mimes.php file. Sometimes the server will return a different mime-type then what is expected (e.g.…
I've pushed a fix to the develop and 1.4_dev branch that should take care of that issue:
https://github.com/daylightstudio/FUEL-CMS/commit/3e5481716bd45f9ea81f6ea2f5859bb47d5f243d
Thanks for the screenshot. If you don't mind, can you do the following:
1. Open up the fuel/modules/fuel/assets/js/jquery/plugins/jquery.supercomboselect.js
2. Change line 230 wrapping text with String like so:
var index = String(text).toLowerCase()…
Sorry, I misunderstood your message completely. When you say it doesn't work, did you type 3 or more characters? And are you seeing any javascript errors in your console?
You should be able to use the views/themes/_blocks/comment_form.php file and change it to whatever you want. Just include field names that match or you can use the $comment_fields array which contains the HTML form elements that you can just output …