On Sat, Sep 10, 2011 at 9:05 PM, Brian Myers <tarkawebf...@gmail.com> wrote:
> It seems I am getting an error from the WSGI server after all. As a reminder, 
> my uwsgi process is started from upstart like this:
>
> exec python /var/www/NurseTriage/triagedb/manage.py runfcgi protocol=scgi 
> method=threaded host=127.0.0.1 port = 3033
>
> When I use Firefox to browse to 127.0.0.1:3033, I get this error message:
>
> XML Parsing Error: undefined entity
> Location: 
> jar:file:///usr/lib/firefox-3.6.21/chrome/toolkit.jar!/content/global/netError.xhtml
> Line Number 60, Column 12:    <title>&loadError.label;</title>
> -----------^
>
> Any ideas what this means? I get the same error with uWSGI. Is this a Firefox 
> error?
>
> Thanx,
>
> Brian
>

I'm not entirely experienced with scgi or uWSGI, but I'm almost
certain that neither of them talk HTTP, which is what Firefox uses to
talk to servers. You need to connect your WSGI/SCGI server to a HTTP
server like Apache, lighttpd, Cherokee or similar. See the extensive
docs:

https://docs.djangoproject.com/en/1.3/howto/deployment/modwsgi/
https://docs.djangoproject.com/en/1.3/howto/deployment/fastcgi/

Cheers

Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to