Avatar

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

FvG

About

Username
FvG
Joined
Visits
24
Last Active
Roles
Member

Comments

  • Latest on GitHub. Has there anything changed with the db? Should I re-install it?
  • Ohh, I see. It's not our fault, the hoster doesn't allow external access.
  • So I'll update everything except the application folder. Ehm, db connections never worked locally. So it's not an update issue..
  • 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!
  • Just installed it, it's great! Thank you!
  • 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…
  • Already got it, the fuel_helper works fine as it is. Just had to give it an array with file => nav and it works fine, even with a controller and 404.
  • Don't know why but right now it works without any problems.
  • No, it's not generated. I don't get any html output right there, running the code below works fine.
  • That's it Thank you so much!
  • 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 don't think it's a problem with fuel_constants.php - I just used the old index.php, moved the application folder back and it works fine!
  • Hmm, this is not a 404 error, it's a PHP error. I'm just wondering why I get this error, if it failed to include anything I'd get another one?!
  • 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.'/')…