Monday, January 24, 2022

[FIXED] Laravel 5.0 - Error by running composer install

Issue

On Ubuntu, when I clone my Laravel 5.0 project from GitHub and then hit "composer install", I get the following result:

enter image description here

I can't see the .env file, but I tried copying .env file from other local project and then I get one error loading blade files using @include():

enter image description here

I tried on Windows too, but is the same result, I notice when I do "git add --all" a warnning message is showed:

enter image description here


Solution

I solved the problem, when I run "chmod -R 775 project_name", I had some views errors like:

enter image description here

I fixed the problem changing view path from this "tickets\partials\status" to "tickets/partials/status". I never thought that was the problem, because on Windows run right with this: "tickets\partials\status".



Answered By - Francis Goris

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.