We don't have a timeline yet but are actively working... sorry... I know that doesn't help. We aren't trying to be secretive, we just need to work it in among other projects.
You can set FALSE, to any location value in the nav if you don't want it to link anywhere. With regards to having the menu shoot out to the right, I'm assuming you need some sort of way to style your menu and are looking for different ways to do tha…
If you set the a location parameter in the array to FALSE, it will render the menu item without a link. So for the first menu item you could do:
$nav['other'] = array('location' => FALSE, 'label' => 'Other', 'parent_id' => NULL);
It's a configuration setting of "default_home_view " you can set in your MY_fuel.php file. The 404_override controller (set in the routes config), helps map it to the proper view file.
Hmm... I'm not sure. If it gets to that point and has the proper variable information right before it is sent to the Dwoo parser, I would think it would work. If you echo out the output from line 255 right after, does it still show {$catName}? Also…
There is a property on any model that extends base_module_model called upload_data that you can access in an on_after_post model hook. That information will tell you the actual uploaded file name which you can use to resave it with the proper name. …
On line 249 of the fuel/modules/fuel/libraries/Fuel_page.php file, there is a $vars variable that is passed to the Template parsing on line 255. If you do a print_r on the $vars['catName'], does anything show up?
What if you change the file upload two actually to fields. One being the text field that captures the name of the file uploaded and the other being the field that uploads the file like below:
'pats_image' => array('label' => 'Pats Image', 'ty…
How is it being set? Are you doing something like this:
$page_init = array('location' => 'my_page'); $this->load->module_library(FUEL_FOLDER, 'fuel_page', $page_init); $this->fuel_page->add_variables($vars); $this->fuel_page->re…
Unfortunately, FUEL doesn't really support multiple sites. Each site needs it's own application folder because it contains the site specific configurations, models, views, database config etc. The assets directory would also need to be different bet…
FUEL CMS uses MySQL for the backend. However, if you are needing a library to use with your custom code, you could try something like this and place it in your application libraries folder just like any other CodeIgniter application:
http://stackov…
With regards to minimizing say the CSS and JQuery files for the backend of FUEL CMS, their is a fuel configuration parameter you can set in fuel/applications/config/MY_fuel.php of "$config['fuel_assets_output']" that can have the options of "TRUE, …
The list area is AJAXed in which is why you see the error displayed in that way (as opposed to the whole page). We've had problems with Network Solutions in the past, regarding .htaccess, but don't remember anything quite like what you have. Regardl…
Hmm... I'm not exactly sure what the issue is. I will say that editing a module's data inline involves ajaxing in content and calling a different method on the controller ("inline_edit" as opposed to the "edit" method on fuel/modules/fuel/controller…
Can you first verify that the following permissions are checked for the user? That will help narrow down the issue:
Manage pages
Ability to Publish Pages
Ability to Delete Pages