Tagged Questions
The django-wsgi tag has no wiki summary.
8
votes
2answers
659 views
Django localeURL when WSGIScriptAlias is /PREFIX
Good morning everyone,
Introduction
I Got a question about localeURL usage.
Everything works great for me with url like this :
http://www.mysite.com/
If I type http://www.mysite.com/ in adress ...
7
votes
3answers
616 views
It is said best way to deploy django is using wsgi, I am wondering why?
We are deploying django application, I found in the documentation that it is recommended to use WSGI appoach for doing that.
Before deploying I wanted to know, why it is recommended over other two ...
7
votes
2answers
3k views
Reload django wsgi scripts without root
I have an install of django on apache using embedded wsgi. I DON'T have root on the machine.
How can I tell apache to reload the python instance when I deploy new source code?
I tried removing all ...
4
votes
3answers
108 views
Deciding to WSGI or Django for new web app
I'm in the process of setting up a new web app and deciding whether to just do it with WSGI or go the full framework route with Django.
The app's foremost requirements:
1) The app has no UI what so ...
4
votes
1answer
1k views
Share Python Interpreter in Apache Prefork / WSGI
I am attempting to run a Python application within Apache (prefork) with WSGI in such a way that a single Python interpreter will be used. This is necessary since the application uses thread ...
3
votes
1answer
131 views
django authentication for static files
I have a set of static files (that get uploaded through the application) like images, video, etc. that need to be served to authenticated users (i.e. their cookie is registered as authenticated in the ...
2
votes
1answer
66 views
what is the difference in these two configurations to run Django?
i have these two configurations. I need to know what's the difference and which is better and faster?
First conf:
#!/home/user/bin/python
import sys, os
sys.path.insert(0,"/home/user/projects/")
...
2
votes
1answer
131 views
initializing module on django+mod_wsgi+apache
My django application is running on apache+wsgi. One of the module in my django app needs to load a Java library via jpype and this Java library takes long time to initialize due to its application ...
2
votes
4answers
3k views
Django + mod_wsgi + apache: ImportError at / No module named djproj.urls
I'm trying to deploy my Django application on my linode server with apache and mod_wsgi.
file: /srv/www/site.com/djproj/django.wsgi
import os
import sys
sys.path.append('/srv/www/site.com/djproj')
...
2
votes
1answer
221 views
pdb.set_trace alternative with apache/wsgi
I have just migrated my development enviroment from manage.py to apache/wsgi, how ever when I run pdb.set_trace() I get BdbQuit. Is there a way to work with something like pdb.set_trace under ...
2
votes
1answer
127 views
Occasional 500 error
We use Apache+mod_wsgi to host our Django application.
Apache:
WSGIScriptAlias / /home/rls/django_wsgi.py
django_wsgi.py:
import os, sys
sys.path.append('data/misc/django')
...
2
votes
2answers
403 views
Redirect stdout and stderr to file in Django with wsgi
I'm trying to make django work with wsgi in a shared hosting, so I cannot access server logs,
I'm trying to redirect the output to a file in my django.wsgi script, like this:
saveout = sys.stdout
...
2
votes
2answers
450 views
Right way to have a thread in parallel to django project on wsgi
I'm writing a django project, and I need to have a parallel thread which performs certain tasks.
The project will be deployed in Apache2.2 with mod_wsgi.
Actually my implementation consists on a ...
2
votes
2answers
869 views
Django sys.path.append for project *and* app needed under WSGI
Could somebody give me a pointer on why I need to add my project root path to the python path as well as the application itself in my WSGI file?
Project base is called 'djapp', the application is ...
2
votes
1answer
337 views
admin/appname/modelname urls does not work with mod_wsgi in Django 1.1rc1
I'm using Django 1.1 rc1 and Apache 2.2.8 on Ubuntu with mod_wsgi 1.3.1 + Python 2.5.2.
Everything worked fine with Django's internal testing web server, but after migrating to Apache mod_wsgi, all ...
1
vote
1answer
649 views
The current URL, , didn't match any of these - using multiple sites
I wish to have multiple django installations. One at / (which is working fine) and one at /adam. The one at slash adam is redirected by apache correctly, until you try and visit an app. E.g. /admin ...
1
vote
0answers
175 views
Apache config to hook SSL into Django
I have a django app that requires some user credentials. I want to send login/register data over HTTPS. I've self-generated a certificate to test out and have also requested an external certificate, ...
1
vote
4answers
484 views
Django + apache & mod_wsgi: having to restart apache after changes
I configured my development server this way:
Ubuntu, Apache, mod_wsgi, Python 2.6
I work on the server from another computer connected to it.
Most of the times the changes don't affect the ...
1
vote
1answer
256 views
Problems rendering a view with tidy (Django + Apache mod_wsgi)
When running under the in-built development server, all runs fine.
However, when running under mod_wsgi in Apache, the following code (a replacement method for django.shortcuts.render_to_response) ...
1
vote
0answers
256 views
mod-deflate does not work with mod-wsgi in daemon mode
My client program is sending a gzip-ed http request, which is decompressed by the mod-deflate InputFilter in Apache. This works when I am using mod-wsgi (without any custom configurations) to serve a ...
0
votes
1answer
32 views
error: [Errno 104] Connection reset by peer - dev server IE 9
When I am testing my applications using django 1.2 and 1.3 dev server
on IE 9. Every other requests gives me:
Traceback (most recent call last):
File ...
0
votes
1answer
60 views
What is the best way to run Django on Tornado Web Server to have async + django admin + django orm posibilities?
Good evening, community. I would like to have django admin panel with tornado backends, which will process requests from online game. I dont know at the moment, is it a good idea to load django app in ...
0
votes
2answers
48 views
Syntax Error in Python Request Library when Using on My Test server
I'm using Python Request Library in one of my projects. Everything works fine on my local system where I have Python 2.6 and Django 1.2.3.
I have created the same environment for my Test ...
0
votes
1answer
28 views
Where does python get the value for path when running Django/WSGI
In brief:
views.py:
def display_path(request):
import os
return HttpResponse("The path is %s" % os.path.abspath("."))
Results in
The path is /var/www
Is it possible to change that ...
0
votes
0answers
58 views
Using pdb with code reloading on Django/Apache
I am currently developing an application with Django on Ubuntu.
Since I wanted to use Apache instead of the development server that comes with Django, I've installed Apache 2.2 on my machine.
After ...
0
votes
2answers
92 views
Problem in loading web page when using polyval, polyfit using numpy
I am using django1.3. in CentOS5. my python version is 2.6 and using the numpy 1.6.1
I used in views.py a function which calculate the regression line. a sample code:
from numpy import *
....
def ...
0
votes
1answer
171 views
Mod_wsgi syntax error: “Invalid command import”
i'm trying to setup mod_wsgi to serve my django media files (i want to use this also in a developement env)
I followed this guide to correctly setup mod_wsgi.
This is my wsgi file ("django.wsgi")
...
0
votes
1answer
108 views
Django query executed in view returns old data
I have a view which queries a model to populate a form:
class AddServerForm(forms.Form):
…snip…
# Compile and present choices for HARDWARE CONFIG
hwChoices = HardwareConfig.objects.\
...
0
votes
1answer
175 views
wsgi + Django: SOAPpy(pyXML) modules Import Error
In the command line the code works perfect,
but throw import error when use django + mod_python or wsgi +apache
The message is:
ImportError at /test2/
DLL load failed: The specified module could ...
0
votes
2answers
512 views
Baffled: Django “could not import app.views” but can import app, in WSGI?
I'm having an odd Django problem, running Django with mod_wsgi.
Django is finding urls.py, and then saying:
ViewDoesNotExist: Could not import app.views. Error was: No module named views
...
0
votes
1answer
346 views
django apache css error 500
I recently started a site using django mingus, but the problem is that the css are not showing, Im getting a server internal error 500 when serving the media files.
Im using apache, mod_wsgi.
...
0
votes
1answer
241 views
'WSGIRequest' object has no attribute 'LANGUAGE_CODE'
when i disable
cms.middleware.multilingual.MultilingualURLMiddleware
i have
Caught an exception while rendering 'WSGIRequest' object has no attribute 'LANGUAGE_CODE'
when edit pages, or use {% ...
0
votes
2answers
63 views
How i say the interpreter version for wsgi apache
In debian recently change de default version of python from 2.5 to 2.6 but i need 2.5, how i can configure apache and/or wsgi script to say it use pythons2.5 and not python default?