Of those browsers, Opera is the only one that implements proper
100-continue feature of HTTP/1.1. That may in part be the reason. I
would have to do some testing to say more.

BTW, please use the mod_wsgi mailing list of Google Groups, to which I
have cc'd this for any followups.

Graham

2009/6/20 Robin <[email protected]>:
> Hello,
>
> Will you be so kind in helping me with some file limit problem in Django?
>
> I'm using apache2.2 with WSGI as you seem to recommend so much on the net.
>
> I tried to use:
>  LimitRequestBody 2100000
>  ErrorDocument 413 http://www.autoritel.com/413/
>
> In order to give my own custom FILE_TOO_LARGE error page.
>
> My custom error page only shows correctly for Opera only though.
>
> Firefox 3 gives:
>  Connection Interrupted
>  The document contains no data.
>  The network link was interrupted while negotiating a connection. Please try
> again.
>
> Internet Explorer 6 gives:
>  The page cannot be displayed
>  The page you are looking for is currently unavailable. The Web site might
> be experiencing technical difficulties, or you may need to adjust your
> browser settings.
>
>  Please try the following:
>  ...
>
> Attached in this email are screenshots of these 2 error pages.
>
> Thank you if you have time to help. I couldn't find anything on it on
> Google.
>
> Below are my apache configuration files.
>
> Robin
>
>
> ------/etc/apache2/httpd.conf-----------------------------------------
> LoadModule wsgi_module modules/mod_wsgi.so
>
> Include "/var/www/autoritel/apache/apache_django_wsgi.conf"
>
>
> ------/var/www/autoritel/apache/apache_django_wsgi.conf---------------
>
> WSGIDaemonProcess site-1 user=www-data group=www-data threads=25
> WSGIProcessGroup site-1
>
> <Directory "/var/www/autoritel/media">
>  Order allow,deny
>  Options Indexes
>  Allow from all
>  IndexOptions FancyIndexing
> </Directory>
>
> <Directory "/var/www/autoritel/apache">
>  Order deny,allow
>  Allow from all
> </Directory>
>
>
> <VirtualHost *:80>
>  #about 2mb
>  LimitRequestBody 2100000
>  ErrorDocument 413 http://www.autoritel.com/413/
>
>  ErrorLog /var/log/apache2/error.autoritel.log
>  CustomLog /var/log/apache2/access.autoritel.log combined
>
>  Alias /media/ "/var/www/autoritel/media/"
>
>  WSGIScriptAlias / "/var/www/autoritel/apache/autoritel.wsgi"
> </VirtualHost>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/modwsgi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to