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).
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~!
I have a Laravel 5 project that I copied from my friend with FTP to work on it in locally. I ran composer install to install the vendor.
The server is up, but when I enter localhost:8000, it shows me this error:
file_put_contents(/homepages/17/d595652778/htdocs/oneQ/storage/framework/views/c8d540ced881ee3d14baa6e1259a7deab143b7fa.php): failed to open stream: No such file or directory
try this code
php artisan config:cache
It hasn't worked for me:
php artisan config:cache
However this one has worked:
php artisan view:cache
in my case i try to file config.php "delete file bootstrap/cahce/config.php" and its working.
I had a similar issue and i managed to fix it by running:
composer install
from within the project directory or the container if you a using Docker-based development tool such as ddev.
I created a new Laravel 5.5 project with this command:
laravel new crud-angular
After then, run this command inside the project folder:
php artisan key:generate
At that moment, I got such error:
Warning: require(F:\Study\Laravel\crud-angular/vendor/autoload.php):
failed to open stream: No such file or directory in
F:\Study\Laravel\crud-angular\artisan on line 18
Fatal error: require(): Failed opening required
'F:\Study\Laravel\crud-angular/vendor/autoload.php'
(include_path='.;C:\php\pear') in
F:\Study\Laravel\crud-angular\artisan on line 18
I used wampserver 3.0.6 for this project.
Hope to help me.
Thanks
Make sure you have run:
composer install
Now it seems packages are not installed. If they are, try running:
composer dump-autoload
Try to to give permission for that vendor folder
sudo chmod -R 777 vendor
update your composer also
composer update
this will fix your issue
Most likely you forgot to Install composer just run composer install
I try to install Laravel 4.2, i have ubuntu 14.04 and php 5.5.16 with apache2.4.10. The install works..., but i have a message with composer install:
Script php artisan optimize handling the post-install-cmd event returned with an error
When i change a permission to storage (chmod 777 -R app/storage) directory and i put debug at true into config file app.php, the command php artisan optimize works whell.
Do you think, i have something wrong with my PHP configuration or permission directory ?
Tony, thank
Most likely its permissions. Check to make sure your www-data has the right permissions