-1
By doing the deploy
of my application on a Linux machine returns an error stating that the view
was not found
"View [auth.login] not found."
But the view
is in the folder, and then the page reloads and another error is informing including the path
(path) old machine
file_put_contents(C:\xampp\htdocs\usebit_admin\storage\framework/sessions/71d4ahDlA4Di04lO03Zgri7g3RqUYl4yxfh1bi2M): failed to open stream: No such file or directory
In my local machine works perfectly, what are these mistakes and how I repair them ?
How this procedure was done?
– Bulfaitelo
Try renaming the "vendor" folder to "vendor.bkp" and then run the following command at the project root
composer update --no-scripts
, and test the project again.– Wictor Chaves
I followed the following procedure to deploy https://udemy-assets-on-demand2.udemy.com/2018-12-15_10-48-34-5d2debde0d335ad517a666b3b5843b64/original.pdf?nva=20190208023010&download=True&filename=deploylinux.pdftoken&=02e40aa1e0e2786d0829f
– Estudante PHP
Try running the following commands at the project root,
composer dump-autoload
andphp arsisan cache:clean
and see if the mistake will continue– Bulfaitelo
I still can’t solve are the same mistakes
– Estudante PHP
are you using git? Maybe you forgot to add the files?
git add .
– Eduardo Stuart