RupamDotInfo
RupamDotInfo

Reputation: 57

Laravel 5.5 "UnexpectedValueException" on Mac, installation error

I am a web developer. Previously I used to code in Windows, I'm new to Mac. I used Laravel previously many times on Windows, never had this problem. I checked the File Permission on Mac very carefully, both Read/Write permissions are enabled for all along with Enclosed Items.

I Googled it, no luck. CodeIgniter and WordPress are working very well.

Is it possible to fix? I carefully installed Lavael with Composer, the same file are smoothly working on Windows.

I'm using XAMPP.

enter image description here

Upvotes: 0

Views: 343

Answers (1)

erashdan
erashdan

Reputation: 152

Follow these steps to change permissions

  • Open terminal.
  • sudo chmod -R 777 /opt/lampp/htdocs/laravel/storage
  • sudo chmod -R 777 /opt/lampp/htdocs/laravel/bootstrap

But for me I prefer to use Vagrant/Homestead, everything is set and ready to go, check this out Homestead/Vagrant

Upvotes: 1

Related Questions