Love Fuel?
Donate
About
Forums
Discussions
Login
FuelPHP Forums
Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
Installation & Setup
Logs permissions problem on debian
TheAnonim72
August 2013
Hello i have problem with my installation.
If i type "oil refine install" it receives error:
Error - Uncaught exception 'Fuel\Core\FuelException' with message 'Unable to create or write to the log file. Please check the permissions on /var/www/fuel/fuel/app/logs/' in /var/www/fuel/fuel/core/classes/log.php:77
Stack trace:
#0 [internal function]: Fuel\Core\Log::_init()
#1 /var/www/fuel/fuel/core/classes/autoloader.php(364): call_user_func('Log::_init')
#2 /var/www/fuel/fuel/core/classes/autoloader.php(247): Fuel\Core\Autoloader::init_class('Log')
#3 [internal function]: Fuel\Core\Autoloader::load('Log')
#4 /var/www/fuel/fuel/core/base.php(91): spl_autoload_call('Log')
#5 /var/www/fuel/fuel/core/classes/error.php(117): logger(400, 'Notice - date_d...')
#6 /var/www/fuel/fuel/core/bootstrap.php(71): Fuel\Core\Error::exception_handler(Object(Fuel\Core\PhpErrorException))
#7 [internal function]: {closure}(Object(Fuel\Core\PhpErrorException))
#8 {main}
thrown in COREPATH/classes/log.php on line 77
i set chmod 0777 for logs and it's still not working.
Help
:)
Harro
August 2013
Problem is that this exception "hides" the original error.
Go into fuel/core/classes/log.php, and before the "throw" on line 77 add:
var_dump($e->getMessage()); die();
which will give you the error that caused the exception.
We need to fix this...
TheAnonim72
August 2013
Okay, I fixed it
:)
There was a problem with date.timezone =]
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
5,088
General
↳ General
3,364
↳ Job Board
13
↳ Installation & Setup
214
Packages
↳ Oil
213
↳ Orm
700
↳ Auth
260
Development
↳ Tips and Tutorials
126
↳ Code share
145
↳ Applications
52
In this Discussion
Harro
August 2013
TheAnonim72
August 2013