Glad you are finding FUEL CMS useful and thanks for the insight.
I've just pushed some changes to allow for javascript files to be loaded that way so test it out and let me know if it fixes your problem:
https://github.com/daylightstudio/FUEL-CMS/c…
If you use the index.php file in the URL I can at least get a 404 error.
http://www.secodein.com/fuel_cms/index.php/fuel/
Do you have the admin enabled in the fuel/application/config/MY_fuel.php ?
Also what happens if you change the uri_protocol? T…
What happens if you use the .htaccess file that came with the download and just change the RewriteBase on line 4 to the subdirectory you installed it in (e.g. RewriteBase /my_fuel_site/?
I'm assuming you've been able to use .htaccess before on Code…
When you login to the FUEL admin 2 cookies get set. One is for your user session in FUEL and the other is for triggering inline editing on your pages outside of the FUEL admin (is_fuelified()). That basically checks to make sure both are set and if …
Unfortunately, the basic form layout doesn't have the normal tag groupings required to break them out into tabs. However, you could possibly manipulate the DOM of the rendered form to create what you need. What if you create sections in your model's…
If your block is a static block file that exists in the views/_blocks folder, you can use something like the following inside your block:
$CI =& get_instance(); $method_result = $CI->_my_controller_method(); ...
Using $this->_my_controlle…
Is there anything that you can see that may be wrong with this query like perhaps. What happens if you run this query outside of PHP (in phpMyAdmin or other MySQL management app):
INSERT IGNORE INTO categories (id, name, description, published, orde…
It's highly possible. Your normal controllers, views and models should still work. You should be able to convert your existing models into simple module models so that it can be managed in the admin. Would be interested to hear how it goes for you.
Change the type of the field to a "select". The enum type with the "select" mode changes the labels and values to be equal. This has to do with building form fields based off of "enum" table column types whose.
No worries.. If you are needing your own special controllers and views to create parts of your admin area, I'd recommend using an "advanced module". The FUEL main module and blog are nothing more then an "advanced module" (think of it as it's own ap…
FUEL CMS does not currently officially have that functionality, but there are a few folks that have gotten it working if you follow this thread.
http://www.getfuelcms.com/forums/discussion/155
Does it happen in a different browser? Is it perhaps because you don't have a permission set for that module and you don't have access to that module (if you are a "super admin" then you should).
Can try changing lines 1764 to line 1781 in MY_Model to the following? For the key value use a slash syntax like so 'my_module/categories' :
if (!empty($related)) { $key_field = $this->key_field(); if (is_string($key_field)) { foreach($relat…
I tend to use $CI but that was because I originally didn't realize the other way was possible way back when. Either should work though and the other way is actually cleaner.
That error message appears when it can't connect to the Database. If you are certain that the info in your fuel/application/config/database.php file is correct, then I would make sure to check that your MySQL server is properly running and that PHP …
Are you able to create a normal CI controller and browse to it OK (for more on that you can go here, if not familiar with CI):
http://codeigniter.com/user_guide/general/controllers.html
<?php class Test extends CI_Controller { public function i…
If you are wanting the javascript to pull from a certain module folder then you can use an associative array with the key being the module name to pull from. The additional parameters aren't supported though at this point.