If you add multiple sessions before executing, it will run it as a multi_session CURL:
$this->load->library('curl'): $this->curl->add_session('http://www.getfuelcms.com'); $this->curl->add_session('http://docs.getfuelcms.com'); $r…
It sounds like it's not hitting the fuel/modules/search/controllers/. The casing of the controllers and models were changed to be upper case for the FUEL 1.4 develop branch. Try lower casing the controller names and the model.
In your MY_fuel_modules.php file for the specific module, you can add the following:
'item_actions' => array('save', 'view', 'delete', 'create', 'others' => array('my_module/printit' => 'Print')),
This will submit to a page at a route of fu…
It was simply a manual way to break browser caches for asset files (not the local optimized cache files). It gets appended to the end of the URL and makes it unique so the browser will no longer cache it (to avoid telling the client to clear their c…
Unfortunately, it's difficult for me to understand and test your issue out completely without knowing the full model and database scope. If you are able to provide the modules, models and SQL information necessary to replicate the issue in a fresh i…
It really depends on the servers setting and the size of the database and what it's setup to handle. It sounds like it may be choking on the database backup part due to the size of your database and the memory allocated on the server. The code used …
Are there any options coming back from the Ajax request that is getting fired when you change the value on the main select field (check the browser's console for the Network activity to see the Ajax request)?
The dependent field should automatically set the value after the ajax options load. A few questions:
1. Does it work when using only one dependent field?
2. What version of FUEL (you can check in fuel/modules/fuel/config/fuel_constants.php)?
3. In t…
Glad you figured it out. You can set the model's $boolean_fields property to include the "published" field. This will allow you to toggle the published state in the list view. Also, this behavior takes place in the Base_module_model::_common_query()…
The code is setup so that only displays a dependent field for new values and select fields when you try and edit (the else part of the if(!$values) condition).
I think this long thread my be the answer you need. You'll need to probably lowercase the controller and model names in the fuel/modules/blog/models and fuel/modules/blog/controllers folder. This is due to the develop version of FUEL using CI 3.0 an…
There currently is not a setting to automatically collapse the left hand menus. However, you can leverage your own global javascript file to call the click event that is set on the id of the H3 for the toggler. To add your own global js file, add th…
Block layouts require some additional validation to work. There is a "validate" method you can leverage that gets passed all the page variables. The default Fuel_block_layout object that you are using simply returns true though. So to get it to work…
The Fuel_forms::get_email_message() method looks at the "email_message" property on the object. If it is a callable function or closure, it will call it passing in the current form object and the $posted values (line 1527). You can use double curly …
There is a property called "display_field" you can specify on your simple modules configuration that is a field returned by find_all_array. This field is used as the friendly text for the record and usually includes the name/title field value for th…
The $values array will only contain the data necessary for the model to save. If you want all the data in the post, grab it from the method 'normalize_save_values()':
public function on_before_save($values) { print_r($this->normalize_save_va…
The on_after_save methods passes an array of values that were saved. This will include the newly created 'id':
public function on_after_save($values) { print_r($values); return $values; }
Any change to a core FUEL file may be subject to change. You can inherit from the Module controller if you aren't already, overwrite the method and create the routes to point to your controller instead.
The "_process" method is inherited from the fuel/modules/fuel/controllers/Module.php controller (which the Pages controller inherits from). That method is protected so you won't be able to access it from your model.
This sounds like it is something CKEditor may be doing to the string:
http://stackoverflow.com/questions/16975859/ckeditor-doesn´t-read-media-embed-code
You can try adding config settings in the fuel/application/config/editors.php $config['ckeditor…