Is it any way to run django site on virtualenv without administration rights? How can I do it? Virtualenv is already installed.
Does it make any diferrence with working Django applications writed on mod_python? And, need I administrator righst to install mod_wsgi?
Pajtong
2010-01-29 18:47:39
Not really, and yes, respectively.
Ignacio Vazquez-Abrams
2010-01-29 23:59:30
So, how can I run my Django website on virtualenv and mod_wsgi without administration rights? Virtualenv and mod_wsgi are installed, but I've got no access to apache config files.
Pajtong
2010-01-31 16:15:00
It seems as though the truly important mod_wsgi directives do require access to the server config files.
Ignacio Vazquez-Abrams
2010-01-31 17:14:34
Can't be done with .htaccess files?
Pajtong
2010-01-31 19:06:00
It can be done with mod_wsgi from .htaccess if you are allowed FileInfo override. Read 'http://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines' to start with. Specifically look at AddHandler method for configuring mod_wsgi.
Graham Dumpleton
2010-01-31 23:24:43