TokenMismatchException in VerifyCsrfToken.php since I've updated my Box Homestead - laravel

So, I simply wanted to install the latest version of PHP GD to fix a problem of pixel.
Since then I've broken a lot of thing including mostly my vagrant/homestead box.
I remember having changed some permission and I think this is the main problem.
So do you have an idea of which folder shall have what kind of permission?

From within your project dir
sudo chgrp -R www-data storage bootstrap/cache
sudo chmod -R ug+rwx storage bootstrap/cache
Laravel framework file permission - Security
https://laracasts.com/discuss/channels/general-discussion/laravel-framework-file-permission-security
If that doesn't work try Destroying / rebuilding the homestead box.
Also, I would run:
artisan view:clear
artisan cache:clear
artisan config:clear
artisan clear-compiled
composer dump-autoload

Related

Please provide a valid cache path error in Laravel 9

I'm working with Jetstream library with Laravel 9, And I've deleted the storage folder by the wrong, and then it shows the following error.
Please provide a valid cache path.
What should I do? I tried the command composer install, and I faced the same error! So how can I return back to the storage folder?
create the following
storage/app
storage/app/public
storage/framework
storage/framework/cache
storage/framework/cache/data
storage/framework/views
storage/framework/session
storage/logs
And use git to manage your code so that accidents like this are easily recovered
Open your terminal.
Run cd YOUR_LARAVEL_PATH to navigate to the Laravel directory.
Run mkdir storage/framework/{cache,sessions,views} to create missing directories.
Run php artisan cache:clear
Run php artisan config:clear
Run php artisan view:clear
Run chmod -R 777 storage to set write permissions (depends on your system).

BindingResolutionException Target class [hash] does not exist after deploy

I wanted to deploy my laravel 8.0 project via ssh pull to production. I did composer update in ssh to my ubuntu server and after that my website is down and showing 500 error.
when I turn on debug mode in production it shows below error:
Target class [hash] does not exist.
my website worked well before pull and composer update and after that this happened.
also there is no problem in local environment and it works properly.
my .env file in production also exists and the details are set.
I have tried lots of ways for resolving the error but none of these works:
changing permisions for bootstrap and also for the whole project :
sudo chgrp -R www-data storage bootstrap/cache
sudo chmod -R ug+rwx storage bootstrap/cache
removing and reverting bootstrap folder
composer dump-autoload
php artisan config:cache
composer update and sudo composer update
I also tried these commands but none of them worked:
php artisan route:clear
php artisan view:clear
php artisan config:cache
php artisan cache:clear
php artisan config:clear
I've searched alot and tried many ways but no result.
could any one say what is wrong please? thanks alot.

Laravel showing "Failed to clear cache. Make sure you have the appropriate permissions"

Laravel was displaying to me "Access denied for user 'homestead'#'localhost' (using password: YES)". One solution for this was clearing the cache and the config cache stored, all this with these three commands:
php artisan cache:clear
php artisan config:clear
php artisan config:cache
After php artisan cache:clear, terminal says:
Failed to clear cache. Make sure you have the appropriate permissions. (with red background)
Doing the second and third code (php artisan config:clear and php artisan config:cache) works fine! But it still gives me the error when typing the first line. Can anyone explain why?
If the data directory doesn't exist under (storage/framework/cache/data), then you will have this error.
This data directory doesn't exist by default on a fresh/new installation.
Creating the data directory manually at (storage/framework/cache) should fix this issue.
Try deleting these cached files under bootstrap folder:
/bootstrap/cache/packages.php
/bootstrap/cache/services.php
/bootstrap/cache/config.php
Then run php artisan cache:clear
Calling
php artisan config:cache
before
php artisan cache:clear
fixed the issue.
Just only add folder named data in storage/framework/cache/ and try:
php artisan cache:clear
First try:
Check if there is a "data" folder inside "storage/framework/cache/".
If there is not, then create it manually. (create a new folder with name "data")
Option 2:
If there is a "data" folder inside "storage/framework/cache/".
Remove ALL existing folders inside there.
Then final, running this:
php artisan cache:clear
This should fix this issue: "Failed to clear cache. Make sure you have the appropriate permissions."
Calling the following 4 commands should fix most of the permission issues on laravel.
sudo chown -R $USER:www-data storage
sudo chown -R $USER:www-data bootstrap/cache
chmod -R 775 storage
chmod -R 775 bootstrap/cache
Basically, chown -R $USER:www-data what this does is it set current user $USER as owner and www-data as group and chmod -R 775 gives 7 to user,7 to group and 5 to other.
#PS: You need to run above command from the laravel project directory, else, you need to provide full path like /var/www/project_name/storage
In Laravel 8 I solved my issue by first running composer dump-autoload and then used php artisan config:cache
Deleting and adding back the ./storage/framework/cache/data folder worked for me.
You should update the permission using the below steps:
Check user using command "whoami" then let output is "ironman"
Run below command if "data" folder exists in the cache directory
sudo chown -R ironman:ironman storage/framework/cache/data/
This will resolve your below issue
Delete all subfolders under:
storage/framework/cache/data/
I ran my project in a docker container, then later tried accessing it via laragon, I had similar issue, this was due to compiled configurations in /bootstrap/cache/config.php.
I fixed fit by running php artisan config:clear, this deletes the /bootstrap/cache/config.php file automatically.
I had the same problem but noticed if you run php artisan config:clear it also by default runs cache:clear right after it so when you run it again there is not cache in it and gives that error. you only need to run php artisan config:clear. I am not sure why cache:clear fails when its ran alone but running the config:clear is a good alternative.
Here is a helpful alias i use to clear everything in the app.
laraclear='php artisan config:cache && php artisan config:clear && php artisan view:clear && php artisan route:clear && php artisan telescope:clear && php artisan debugbar:clear'
Remove any unwanted commands that you do not use in it.
(For MAC Users)
Sometimes, it means current user don't have sufficient permission to the storage/framework/cache/data/ folder. Run
sudo chmod -R ug+rwx storage/framework/cache/data/
then
php artisan cache:clear
Hope sometimes it work for you.
In my case the problem was I had 'CACHE_DRIVER=memcached' in .env but didn't have memcached installed. Switching to the file driver or installing memcached fixed the problem for me.
You may need to clear the autoloader with
composer dump-autoload
If that doesn't work you can manually remove the following non-tracked (usually) files to clear the autoloader and cache if they get jammed up:
/bootstrap/cache/packages.php
/bootstrap/cache/services.php
Can't this solve it?
$php artisan optimize:clear
Compiled views cleared!
Application cache cleared!
Route cache cleared!
Configuration cache cleared!
Compiled services and packages files removed!
For Laravel Homestead on Windows:
In your .env file, change your CACHE_DRIVER from file to memcached.
Run php artisan cache:clear.
Had the same problem on my vagrant/homestead VM. All the other things in this thread didn't help.
The solution was vagrant reload --provision
Giving 775 permission to the storage directory solved this problem for me.
sudo chmod -R 775 storage
I am running my project in Homestead.
My environment :
Ubuntu1~20.04+
Laravel 6.20.26
My output
display real fatal info
Edit src/Illuminate/Filesystem/Filesystem.php 598:14
original code:
if (! $preserve) {
#rmdir($directory);
}
debug code
if (! $preserve) {
rmdir($directory);
}
Then re-execute php artisan cache:clear
The output changed:
Then, I just resolve Text file busy
Ensure APP_URL is properly set on .env file. Changing http to https in the APP_URL variable on .env file solved it for me.
Solution :
update the permission :
get user name by this command : whoami
Run command if "data" folderexists in the cache directory.
sudo chown -R YourUSERName:YourUSERName storage/framework/cache/data/
In my case, there is no cache available that's why the artisan is unable to delete or reset the cache.
First browse the website and allow it to create some cache then try to clear it.
You can check whether the cache is available or not in directory storage/framework/cache/*
got the same error. try giving chmod 777 permission in the concerned folder
My guess is you have a permission/ownership problem. Either set up the permissions correctly or recursively delete the cache folder manually and re-create it:
sudo rm -Rf storage/framework/cache
mkdir storage/framework/cache
maybe you need to chmod 777 -R storage folder.
and i think it can also chown www-data:www-data
Incase non of these works for you, simply run your php artisan cache:clear command with sudo.
e.g. sudo php artisan cache:clear
Thank me later~!

Protocol error in Laravel

I am using Laravel 5.6.23
This is my error message:
UnexpectedValueException
There is no existing directory at "C:\timereg-project\Laravel\storage\logs" and its not buildable: Protocol error
The directory logs do in fact exist in my Laravel project.
I have tried this which is not working:
php artisan cache:clear
php artisan clear-compiled
I have tried this which is also not working:
composer dump-autoload
If I try this:
sudo chmod -R 777 storage
sudo chmod -R 777 storage
I get error
chmod: cannot access 'Laravel/storage/logs': no such file or directory
Commands which is not working:
composer update
What can i do about this? It feels like i am totally blocked from the logs folder.
If all is set correctly and permissions it should work. Try this command you missed:
php artisan config:clear

Laravel - Error page is blank after update from 5.3 to 5.4

I have updated Laravel from 5.3 to 5.4. Error pages are white and do not display an error after update. I am using a local server. The specifications:
OS: Ubuntu 16.04
Nginx/1.9.15
PHP 5.6.11
I read the this question (Laravel blank white screen) and I have tried solutions:
# Group Writable (Group, User Writable)
$ sudo chmod -R gu+w storage
# World-writable (Group, User, Other Writable)
$ sudo chmod -R guo+w storage
And other solutions have been proposed. But the problem persists!
Also, Application debuggin in .env and config/app.php is true.
Who can help?
After update your laravel you may clear all your cache and your compiled page. Try to do this:
php artisan view:clear
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan clear-compiled
php artisan optimize

Resources