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

Thursday, March 17, 2022

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

 March 17, 2022     apache, laravel, laravel-4, mamp, nginx     No comments   

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
  • 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