file_put_contents无法打开流:没有这样的文件或目录,安装

i cloned a laravel project from bitbuket . also run all necessary command to get all vendors files like :

composer dump-autoload
composer install
php artisan cache:clear
php artisan clear-compiled

also deleted the file /public_html/bootstrap/cache/config.php

but i am getting the below error when i try to launch the project :

file_put_contents(C:\xampp\htdocs\laravelstart\storage\framework/sessions/sRPb1A6BKrshhH8HPAR2fXVEcCH4daYCLxgo4b8M): failed to open stream: No such file or directory

Try the command: php artisan config:cache it clear the configuration cache of your project. The problem may be that you cloned it, and the configuration is not prepared for your new server :)

rm -rf bootstrap/cache/config.php (delete)

php artisan config:cache