kruptein Posted February 1, 2010 Posted February 1, 2010 Okay, so I followed the steps on heliohost about django, but somehow it keeps giving me a 500 error if I go to http://ninv.heliohost.org/ninv (ninv is the name of my project) The cpanel error log does not contain an error, so I hope you guys might be able to help me? Kruptein (host=ninv.heliohost.org) (username=ninv)
kruptein Posted February 2, 2010 Author Posted February 2, 2010 huh? I can't find django in fantastico if you mean that... Kruptein
simbairk Posted February 2, 2010 Posted February 2, 2010 the same problem, need help (host = vcards.heliohost.org) (un = simbairk) set up on this article read forum, tried different boards best of what has made it view.index at http://vcards.heliohost.org/dispatch.wsgi. Links give an error 404 http://vcards.heliohost.org/dispatch.wsgi/500.shtml my public_html/dispatch.wsgi (right 755) import os, sys sys.path.append("/home/simbairk/public_html/") os.environ['DJANGO_SETTINGS_MODULE'] = 'phonebook.settings' os.environ['PYTHON_EGG_CACHE'] = '/home/simbairk/.python_egg_cache' #right 775 import django.core.handlers.wsgi _application = django.core.handlers.wsgi.WSGIHandler() def application(environ, start_response): environ['PATH_INFO'] = environ['SCRIPT_NAME'] + environ['PATH_INFO'] return _application(environ, start_response) my public_html/.htaccess (right 644) RewriteEngine On RewriteBase / RewriteRule ^(dispatch\.wsgi/.*)$ - [L] RewriteRule ^(.*)$ dispatch.wsgi/$1 [QSA,PT,L]
simbairk Posted February 3, 2010 Posted February 3, 2010 I found my mistake my view.index not use database but login use... I need to do syncdb
rapture Posted February 3, 2010 Posted February 3, 2010 If any of you is successful to run your site please let me know.Look at this topic:is There Anyone Who is Running a Django Powered Website? Look at the following topic too please.You may be able to help me:How to Deploy a Django Powered Blog(in a specific example)? Thank You
kruptein Posted February 3, 2010 Author Posted February 3, 2010 Nevermind, I just read that post from simbairk
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now