Is it any way to run django site on virtualenv without administration rights? How can I do it? Virtualenv is already installed.
Asked
Active
Viewed 287 times
1 Answers
0
Yes, but not with mod_python.

Ignacio Vazquez-Abrams
- 776,304
- 153
- 1,341
- 1,358
-
Does it make any diferrence with working Django applications writed on mod_python? And, need I administrator righst to install mod_wsgi? – Pajtong Jan 29 '10 at 18:47
-
Not really, and yes, respectively. – Ignacio Vazquez-Abrams Jan 29 '10 at 23:59
-
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 Jan 31 '10 at 16:15
-
It seems as though the truly important mod_wsgi directives do require access to the server config files. – Ignacio Vazquez-Abrams Jan 31 '10 at 17:14
-
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 Jan 31 '10 at 23:24