12-06-2018, 12:20 AM
I will shoot you an email. Error 500 is a generic message that the server posts when PHP error reporting is turned off.
I don't know much about your server, but if it's some sort of vps or something that happens when the files you copied to the server are not "owned" by the apache user (usually www-data).
So you would SSH in and do something like
sudo chown -R www-data:www-data /var/www
If you created a file like I said above with just those two lines, then the ownership is almost certainly the problem. If not, then turning on error reporting in php.ini will give you more of a clue.
Like I said, I'll email you.
I don't know much about your server, but if it's some sort of vps or something that happens when the files you copied to the server are not "owned" by the apache user (usually www-data).
So you would SSH in and do something like
sudo chown -R www-data:www-data /var/www
If you created a file like I said above with just those two lines, then the ownership is almost certainly the problem. If not, then turning on error reporting in php.ini will give you more of a clue.
Like I said, I'll email you.