Hello to everyone,
I want to install magento, I bought a server for magento. I don't know why but I can't run magento.I'm uploading and extracting magento files. My website is returned http 500 error (internal server error) I am new to magento. Can you help me for this?
My Website is: redreamcollection.com
Thanks!
Solved! Go to Solution.
Hello again guys,
I found the solution.
Here; sh ./fix.sh -v -a username
Working for me, thanks!
Hi,
A Permissions Error. In most cases, a 500 Internal Server Error is due to an incorrect permission on one or more files or folders. In most of those cases, an incorrect permission on a PHP and CGI script is to blame. These should usually be set at 0775 (-rwxr-xr-x).
Check the following link, for more details,
Thanks!
Hello @emre_onural,
There is look like a permission issue, Please run below command in Magento 2 root directory using terminal
find . -type f -exec chmod 644 {} \; find . -type d -exec chmod 755 {} \; find ./var -type d -exec chmod 777 {} \; find ./pub/media -type d -exec chmod 777 {} \; find ./pub/static -type d -exec chmod 777 {} \; chmod 777 ./app/etc chmod 644 ./app/etc/*.xml
If you still get an issue then let us know.
--
If my answer is useful, please Accept as Solution & give Kudos