The timeout may be because $e contains a model object that references the CI object and using print_r on it will. Try something like print_r(array_keys($e)) to see if it prints the names of the variables for the page.
Did you change the "admin_enabled" in the fuel/application/config/MY_fuel.php?
// whether the admin backend is enabled or not $config['admin_enabled'] = TRUE;
To change the "vanity URL" of the FUEL admin, go to fuel/application/config/MY_fuel.php and change the very first $config variable in that file like so:
$config['fuel_path'] = 'admin/';
Upgrading to 1.4 will cause issues if you are using 1.3.x. The…
I see there is at least one direct question above "How do you remove fuel from the query string?" Are you referring to the URI segment "/fuel" for the admin?
To follow up, the develop branch (1.4) has the latest version of CI on it now and will be pushed to master here once we vet it a little more if you are interested in that which will fix the casing issues with other modules.
Corky, I'm sorry for your frustration. The truth is that FUEL is showing it's age some and hasn't been given a ton of love recently as we decide to work on other projects. As I tell my kids, be part of the problem or part of the solution. The projec…
Yes. You can overwrite the navigation in the by overriding the 'nav' config in MY_fuel.php. The default navigation (found in the fuel/modules/fuel/config/fuel.php which will be overwritten by MY_fuel.php) is the following:
// Site... Dashboard will…
1. FUEL does not have one. IonAuth or Tank Auth is a popular CI one that can be leveraged though:
http://forum.getfuelcms.com/discussion/2390#Item_3
http://forum.getfuelcms.com/discussion/comment/9583#Comment_9583
2. From your view file, you can use…
Did you also add it to the module's configuration permission array in your fuel/application/config/MY_fuel_modules?
$config['modules']['admin_subscriptions'] = array( ... 'permission' => array( 'admin_subscriptions', 'create', 'edit', '…
Yes to both. Form_builder has a "submit_value" property that you can assign to it. If it is a string value that does not begin with a " $fields['__FORM_BUILDER__']['submit_value'] = 'MY Button';
If you use the $has_many property, FUEL will automatically save it to the fuel_relationships table. I'd recommend reading this area if you haven't already to get a better understanding of how the relationships work:
http://docs.getfuelcms.com/genera…
If it is a container for perhaps an AJAX callback. An alternative would be to use a custom field type and use a function parameter like so:
$fields['some_value'] = array('type' => 'custom', 'value' => '');
There's a method Form_builder::simple_field_value() that is used to determine the text value for fields like 'copy', 'section' and 'fieldset'. It first looks to see if there is a non empty "value" then "label" and then "name". By using name as an op…
Perhaps you are referring to something like the $has_many property on the model which will automatically create a multi selection field:
http://docs.getfuelcms.com/general/models
http://docs.getfuelcms.com/modules/tutorial
Would you mind debugging the Fuel_form::render() and Fuel_form::render_vars() method (which is used by the Fuel_form::render()) to see what variables are getting set?
The block view should be getting both a $fields array as well as a variables with the field's name and a "_field" as a suffix (thus the 3 underscores for the $__antispam___field because the suffix starts with an underscore). The reason for both is f…
I'm sorry but I'm not sure if I'm seeing the same issue on my end. The following variable if outputted in your view file should return the code for the anti spam method. I just tested it by adding the following to the fuel/application/config/forms.p…
There are second and third options that can be passed to add_session. The second parameter is where you can specify the type of CURL request and there is a shortcut of "post" you can use:
$this->curl->add_session('http://www.getfuelcms.com', '…