What's the SQL message say and can you share the how and why it's failing part? Did you add your tags table to the fuel/modules/blog/config/blog.php file (at the bottom)?
Great! The main javascript that you would probably need to alter is the fuel/modules/fuel/assets/js/fuel/controller/BaseFuelController.js file. If you do a search on "tree" in that file, you'll see where the majority of that code is. I'm using the j…
FUEL has it's own codeigniter directory which contains all the core CI files (so you don't need to keep that). The fuel/application would be the equivalent to your CI application directory and is intended for any of your site specific code. The fuel…
You could add the following routes to get you to the login page. However, currently the links within the admin get directed to fuel/....
$route['admin'] = 'fuel/login';
$route['admin/(:any)'] = 'fuel/$1';
This may change in the future though
There was a another issue in that function I noticed with regards to passing a parent value which I've fixed and posted to GitHub. I also posted a fix for the empty menu items.
If you change line 327 to the following, does it fix your problem?
$menu_items = $CI->navigation_model->find_all_array(array('group_id' => $p['group_id']));
I just realized I gave you instructions about checkboxes instead of radio buttons which I'm sure confused you (although worth noting so I'll leave the post). My apologies.
To add to Lance's comment, there is an additional parameter of 'mode' you c…
My mistake above. I originally gave you the path to the regular config file (and have since corrected it to the fuel/application/config/MY_fuel.php config file). Sorry about that. Also, I don't know if it matters or not, but I'd add the slash at the…
I'm not familiar with Nginx however, you should be able to use FUEL without the htaccess by changing the $config['index_page'] = 'index.php'; in the fuel/application/config/config.php
You of course will lose the folder protection in the .htaccess b…
Checkboxes are a little tricky because if they are not checked, they don't send any $_POST data. There are 2 ways to get around it. The first (and the what I normally do), is use an enum field with values of "yes" or "no". The second way, is to add …
I'm not quite sure what that issue is from wand would need to see your controller file to assess the problem. You can find my email address here: http://www.getfuelcms.com/forums/profile/1/admin
Also, If you are using the 0.91 branch that uses CI 2…
OK... I've pushed a fix so it will now ignore cached files if you are logged in and you should see those pencils every time now. The file updated is
.9
/fuel/modules/fuel/controllers/fuel_router.php
https://github.com/daylightstudio/FUEL-CMS
0.9…
I'm able to replicate it locally... am looking into a fix and will keep you posted. It has to do with an issue cache with the cache. If you clear the cache it will appear (saving the page clears the cache which is why you see it after saving).
What's the error message? Are you just trying to create a normal controller for your site? If so, you should just be able to extend Controller and be sure to call the parent in the constructor if you have one (e.g. parent::Controller()). If using 0.…
What I would recommend is download the latest version of FUEL off of GitHub and use that as your CodeIgniter instance to play around with. You can build your own models, views and controllers like normal, you'll just have the extra functionality tha…
The pencil icon should not show up when there are no editable fields. If the page is a static view file and has not been imported into the CMS as a page, then you may not see the pencil icon (only pages saved inside of FUEL are editable). The except…
I just posted a fix to allow you to use a controller for the homepage. So now you will see a separate route for the 404_override (to match the 0.91 branch) and one for the default_controller (as opposed to just the default_controller). You should ju…
There actually isn't a controller of home by default (see the application/controller folder), but there is a view file of home which is the default view. You can change the name of the default view file in the fuel/modules/fuel/config/fuel.php file:…