Thursday, March 17, 2022

[FIXED] How can I configure my Laravel application to load using MAMP?

Issue

Environment

I use Mac OS X Yosemite, MAMP Version (3.0.7.3).

Document Root

I already set the document root to point to my laravel/public folder.

Permission

Some people recommend me to chmod my laravel folder entirely, I also did that as well by running chmod -R 777 laravel/.

Testing

Go to : http://localhost:8888/ , all I get is white space

enter image description here

How do I get this to work ?


Solution

I solve this problem by running:

composer update until I see:

enter image description here

The last thing is to go in to my /laravel folder and run :

chmod -R 777 /app/storage

Then Viola ! I see my site.



Answered By - code-8

No comments:

Post a Comment

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