Jump to content

Recommended Posts

Posted

Hi, I am trying to get django to work, but no success. I followed the guide from Heliohost site, but I keep getting this error:

 

Internal Server Error

 

The server encountered an internal error or misconfiguration and was unable to complete your request.

 

Please contact the server administrator, webmaster@thedevelop.heliohost.org and inform them of the time the error occurred, and anything you might have done that may have caused the error.

 

More information about this error may be available in the server error log.

 

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.

 

 

There is the URL to my site: CLICK

Guest Geoff
Posted

It appears to be working on his site.

 

Posted
It appears to be working on his site.

 

Yea, this test app works fine, but I stil couldn't get to work mine. Hope I will find the solution.

  • 11 months later...
Posted

Upload this zip file to your public_html directory and unzip it..

 

http://byrondallas.heliohost.org/djangtest.zip

 

Then correct the paths in your dispatch.wsgi file:

 

import os, sys
sys.path.append("/home/dallas/public_html/djangotest");
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
os.environ['PYTHON_EGG_CACHE'] = '/home/dallas/.python-egg-cache'
## you need to create the directory above ##

 

Create and chmod .python-egg-cache to 755 and it should work.

Posted

Yes, thank you byron. Your project is working. That means django is all right.

 

Mine unfortunatelly not. Still internal server error. I need to take a closer look at it in that case.

 

Thank you for your help again. :)

Guest
This topic is now closed to further replies.
×
×
  • Create New...