Search code examples
apachelaravelnginxlaravel-4mamp

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


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.