laravel application moved to another pc

configuration, laravel

Solution

I got this error, because some folders in /app/storage were missing

To fix the error, I manually created the following folders:

app/storage/
app/storage/cache/
app/storage/logs/
app/storage/meta/
app/storage/sessions/
app/storage/views/

then delete the contents of my vendor folder and run composer update again

Problem

I have just transferred my laravel application to another pc and I have installed composer. I am running composer install at the root of the project but it shows the following error: ``` {"error":{"type":"ErrorException","message":"file_put_contents(\/meta\/services. json): failed to open stream: No such file or directory","file":"C:\\national-fl eet\\vendor\\laravel\\framework\\src\\Illuminate\\Filesystem\\Filesystem.php","l ine":71}} ``` I tried CACLS -R 755 app/storage (as admin) and then composer update but the same error. bootstrap/compiled.php doesn't exists in my project. What should I do?

Original source