Problem with my website

jasperwilliams

New member
Joined
Feb 9, 2014
Messages
1
I'm new and i have problems but everybody expect me can visit my website but when i wanna use it there is 500 internal server error. If You can Look at this photo, you will tell me how to solve problem. It's really important to me. Um and could you write step by step how to solve okay?
 

Attachments

  • image.jpg
    image.jpg
    42.9 KB · Views: 39
Hi,

UID of script /home/musicsoul/domains/misicsoul.eu/public_html/index.php is smaller than min_uid means that probably the permissions are wrong.
Try changing the user and group of your script to the user running the process with:
Code:
chown musicsoul:musicsoul /home/musicsoul/domains/misicsoul.eu/public_html/index.php
Or change all the files under public_html at once with:
Code:
chown -R musicsoul:musicsoul /home/musicsoul/domains/misicsoul.eu/public_html/
If after these changes yo still have issues, then your suPHP is probably working with the default min_uid = 100, but the UID of musicsoul is below this 100.
To fix this change min_uid in suPHP's config to match the UID of musicsoul:
Code:
min_uid = <UID of musicsoul>
 
Last edited:
I'm new and i have problems but everybody expect me can visit my website but when i wanna use it there is 500 internal server error. If You can Look at this photo, you will tell me how to solve problem. It's really important to me. Um and could you write step by step how to solve okay?
Do you own the server? If so, then follow the instructions given above. However, if you're a client of a hosting company, then you need to discuss this issue with your hosting provider.

Jeff
 
Back
Top