I use Python 2.7.3
The problem manifests in all browsers. In FF its really rare. In Opera with
"Max Connections To Server" > 2 its almost every time you load a page. In
Opera with "Max Connections To Server" < 2 its 1 in 30-50 hits, or every
time if you reload a page with CTRL+F5. In Chrome its similar to Opera if
you press CTRL+F5.
Site crashed with another problem right now. I hope I will get it running
in an hour. You can open it by yourself if you want. Its www.autosim.ru
I think that all static files are served by Apache. But I`m not sure.
Here is part of my httpd.conf:
*NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot "d:/web2py/applications"
ServerName autosim.ru
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.autosim\.ru [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^/?(.*) http://www.autosim.ru/$1 [L,R,NE]
<Directory "d:/web2py">
AllowOverride None
Order allow,deny
Deny from all
</Directory>
<Location "/">
Order deny,allow
Allow from all
</Location>
<LocationMatch "^(/[\w_]*/static/.*)">
Order Allow,Deny
Allow from all
</LocationMatch>
WSGIScriptAlias / "d:/web2py/wsgihandler.py"
</VirtualHost>*
Here is my routes.py:
*routers = dict(
BASE = dict(
default_application = 'mad'
)
)
routes_onerror = [('*/404', '/mad/default/error_404')]*
--
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.