0
I have XAMPP installed on my Mac for local server hosting.
Whenever, I want to run my code on localhost I am required to change the permission of my application code.
I do
sudo chmod -R 777 /Applications/XAMPP/htdocs/my-project
Only then does the project work.
How can I run the application code without changing the permission?
1For future reference: Any manual which involves
chmod -R 777
is wrong. – Hennes – 2017-01-25T15:04:13.907Try using MAMP it works in the same way as XAMPP. It could solve the issue.
– alljamin – 2017-02-02T11:37:48.780