Some things I found in this theme: After validation, cms pages have an Edit button which is over "Valid". At assets I can only see one page, there's a pagination missing. The table's a bit too wide
But why? Is there any way to fix this? If I have a view to be used with a controller, I don't want it to be accessible without controller! It gets wo many variables from it, without it was a page full with errors!
Thanks but there seems to be a bug in it. If I'm using
$this->load->module_library(FUEL_FOLDER, 'fuel_page', array('location' => '_folder/file')); I get an 404-Error. Using
$this->load->module_library(FUEL_FOLDER, 'fuel_page', array…
Maybe there are just some problems including the helpers, if I open a page with a controller I get "Unable to load the requested file: helpers/fuel/fuel_helper.php".
And base_url() is from a helper, too?! Sorry for posting that much, I just want to …
Okay, it really seems to be an 404 error. It's caused by _validate_request() in fuel/Router.php on line 144. In my 404 file I include a header.php from _blocks (which is correctly included), then it doesn't find the base_path() function. Acutally it…
I made some tests, it seems to be a problem right here:
// CodeIgniter.php - line 157 $RTR =& load_class('Router', 'core'); echo 'test'; // works $RTR->_set_routing(); echo 'test2'; // doesn't work
// Router.php - line 332 // If we got this…
I made some changes right now:
fuel_constants.php
define('FUEL_VERSION', '0.9.3'); define('MODULES_FOLDER', 'fuel/modules'); define('FUEL_FOLDER', 'fuel'); define('MODULES_PATH', MODULES_FOLDER.'/'); define('FUEL_PATH', MODULES_PATH.FUEL_FOLDER.'/')…