You can't that way (it is actually intended to be used with a single category. You can always target the model specifically like so:
$CI->load->module_model(BLOG_FOLDER, 'blog_posts_model'); $CI->blog_posts_model->db()->where('blog_ca…
A couple questions first.
1. Is the form located where a normal module form is (e.g. fuel/my_module/edit/1)?
2. If so, what are you using to trigger the save for this AJAX form?
Does your list view (the view that has the button to export the data) have filters on it to just display people between that date? If not, you can try adding the following to your module's config in MY_fuel_modules.php:
$modules['my_module']['filte…
That error is coming from the Google compiler (http://closure-compiler.appspot.com/compile) and they do meter the compiling. If you pass an array of parameters in the third parameter of your js() function call of array('js_minify' => FALSE), it w…
The CSS in subfolders may be an issue because it is putting it into one file and the relative path may be breaking. Are you able to do them one at a time to see how which file(s) may be causing the issue (remember to clear the cached files).
I would first start by trying to isolate if there is one or more files that are causing the problem. Perhaps just start with the main.css file and then add more. You'll need to clear out the cached files probably each time. A few more questions:
1.…
Basically, you can approach it like you would a normal CodeIgniter site where you need to create a controller that can perform the upload action you need. You can create this in your main fuel/application folder. I mentioned the pages and navigation…
To update the develop branch, I'd recommend using GIT. You can set up the FUEL GitHub repo as a remote source (https://github.com/daylightstudio/FUEL-CMS.git) and merge in the develop branch into a branch of your site. There may be a few conflicts t…
Can you try updating using the develop branch of FUEL. There was a bug fix made to help with the CKEditor configuration and will be rolled out in the next release:
https://github.com/daylightstudio/FUEL-CMS/tree/develop
The user guide may be the most helpful as well as downloading other modules to see how they work:
http://docs.getfuelcms.com/
http://www.getfuelcms.com/developers
Also, knowing CodeIgniter is important.
Are you logged into the CMS when viewing the page? If not, I would try logging into the CMS and clearing the pages cache in case the page was viewed at some point when there were errors and it was compiled and cached.
If that doesn't work, are ther…
The FUEL_MARKER code usually stays on the screen if there is some sort of PHP error that stop execution of the page. Are you seeing any PHP errors? Those markers get cleaned up in the Fuel_pages.php file upon rendering unless there is an error.
You'll need to create a controller that extends the module controller and create a route for it (potentially). The pages.php and navigation.php controllers in the fuel/modules/fuel/controllers/ folder do this. You can place this controller in your …
If you don't need to create an order from the admin, you could do something like the following on your orders module config (in MY_fuel_modules.php):
'table_actions' => array('DETAILS' => fuel_url('order_details/edit/{id}'), 'DELETE'), 'displa…
I'm curious why you have a unique key for ID when the primary key is already unique. Also, is the route_name you are saving different between the records (if left empty then it probably isn't)? FUEL's save command's default behavior is to try an ins…
If you are using a controller of "account" in your fuel/application/controllers/ folder, do you have a route setup like so:
$route['es/account/(:any)'] = 'account/$1';
I see. Yes, those can be commented out if you are not configuring it under the Settings area of the CMS. I've pushed a change to have that commented out by default to avoid that confusion going forward.
1. You can specify a model in your configuration like so:
http://docs.getfuelcms.com/general/forms#select
2. There isn't a great section in the documentation yet about filtering but this area in the tutorial talks some about it:
http://docs.getfuelc…
So to confirm, you copied the config to fuel/application/config/search.php, copied over the search view file to fuel/application/views/search.php and changed the delimiters in fuel/application/config/search.php and it worked correctly?
Normally if nothing gets indexed, it has to do with the delimiter values set in the config. I will normally copy the config/search.php files to fuel/application/config/search.php which allows me to make configuration changes outside of the fuel/modu…
There is a parameter you can add to your module's configuration of "list_actions" that will accept a key value array with the key being the link to the button and the value being the label. If you want to add Javascript to the page, there is some do…
When you are on the junior_courses page, set the active value to 'junior_courses'. There is a parameter of 'cascade_selected' you can set to TRUE which will also make the juniors menu item active:
echo $this->fuel->navigation->render( $para…
Does the "company/[name]210101" page actually exist in the CMS as a page and you can verify that the $redirect_to variable set is "company/[name]210101" (e.g. you can just put a debug exit($redirect_to); in the 301_redirect.php layout.
Also, there …