PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, January 24, 2022

[FIXED] Laravel 5.0 - Error by running composer install

 January 24, 2022     composer-php, git, laravel, laravel-5, php     No comments   

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
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

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

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing