My queue task is like below
$message = "message";
Queue::push(function($job) use ($message)
{
echo "user of queue runnur : ".get_current_user();
Log::info($data,$message.get_current_user());
$job->delete();
});
However,I got
user of queue runnur : webapp
The stream or file "/var/app/current/app/storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied
The logs directory is changed to 775 by myself.And I have test the writing in non-queue method and it can write successfully.
The file permission
-rwxrwxrwx 1 webapp webapp 1269117 Jun 24 07:59 laravel.log
Why this is happening?
There is two situation will cause laravel 4 queue failed to open stream exception,
1.Permission problem,queue runner don't have the file/directory permission to read or write.Plz change the file permission is 775.
2.Wrong path.The current directory of script that is running is absolutely different between the website entry point(index.php) and queue runner.
In order to debug,please push this job and run to view related information
In my case ,it was caused by situation 2,the current directory of website is /rootOfProject/public and the queue runner is /rootOfProject