[Mediawiki-l] Excessive page requests and poor performance with Firefox

David J. Biesack David.Biesack at sas.com
Tue Apr 5 13:47:15 UTC 2005


I have MediaWiki 1.4.0 on Red Hat 9, with PHP 4.3.10, mysql  Ver 12.22 Distrib 4.0.23 and Apache 2.
MediaWiki is functioning fine on my intranet, but we have performance problems with Firefox users.
Page requests in Firefox are taking very long, whereas they are much faster with IE 6.

I looked at the httpd access_log file and have included some access requests below. For accessing my Main_Page
with the default Monobook skin, IE 6 renders the page after 19 HTTP requests, about 3 seconds real time.
For Firefox, the same page requires ~75 requests and 8 seconds real time. Also, there are many duplicate
requests: 20 for

  "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1"

(my logged in userid on this MediaWiki is "Djb") and 20 each for

  "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1"
  "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1"

whereas IE only requests each of these one time. Further, when Firefox is fetching the page,
the progress meter moves but retreats a few times. See below for log excerpts.


Does anyone know the cause of this, and if it is a defect, is it a Firefox defect or a MediaWiki defect?
(I noticed the same problem with MediaWiki 1.3.11.)  Also, I have disabled http network.http.pipelining
and network.http.proxy.pipelining in Firefox.

I do *not* see similar delays accessing wikipedia or other wikimedia sites with Firefox 
(I don't have access to their httpd access logs, of course.)

Here is my /etc/httpd/conf.d/mediawiki.conf file for Apache 2 httpd:

ServerAdmin David.Biesack at sas.com
ServerName saspedia.unx.sas.com
DocumentRoot /usr/local/mediawiki/mediawiki-1.4.0
DirectoryIndex index.php index.cgi index.html index.htm

# Allow rewriting URLs
RewriteEngine on

# Don't rewrite requests for files in MediaWiki subdirectories,
# MediaWiki PHP files, HTTP error documents, favicon.ico, or robots.txt
RewriteCond %{REQUEST_URI} !^/(stylesheets|images|skins)/
RewriteCond %{REQUEST_URI} !^/(redirect|texvc|index).php
RewriteCond %{REQUEST_URI} !^/error/(40(1|3|4)|500).html
RewriteCond %{REQUEST_URI} !^/favicon.ico
RewriteCond %{REQUEST_URI} !^/robots.txt

# Rewrite http://saspedia.unx.sas.com/article properly, this is the main rule
# this will fail for URLs with ampersands but handles titles with question marks (%3F) in them:
RewriteRule ^/(.*)$ /index.php?title=$1 [L,QSA]

# Alias /wiki/ /usr/local/mediawiki/mediawiki-1.4.0/index.php/
# Alias /wiki /usr/local/mediawiki/mediawiki-1.4.0/index.php/

 <Directory /usr/local/mediawiki/mediawiki-1.4.0>
      Options MultiViews
      Options FollowSymLinks
      AllowOverride None
      Order allow,deny
      Allow from all
      # From http://meta.wikimedia.org/wiki/Rewrite_Rules
      # Allow wiki articles to start with a period

      <Files .*>
        Order Deny,Allow
        Allow From All
      </Files>
</Directory>

<Directory /usr/local/mediawiki/mediawiki-1.4.0/images>
     Options MultiViews
     AllowOverride None
     Order allow,deny
     Allow from all
     # avoid execution of PHP scripts in upload directory
     AddType text/plain .php
     AddType text/plain .phps
</Directory>

and here is an excerpt from my LocalSettings.php:

    $wgSitename         = "saspedia";

    $wgScriptPath           = "";
    # default: $wgScript           = "$wgScriptPath/index.php";
    $wgScript           = "$wgScriptPath";
    $wgRedirectScript   = "$wgScriptPath/redirect.php";

    ## If using PHP as a CGI module, use the ugly URLs
    # was: $wgArticlePath      = "$wgScript?title=$1";
    # see http://meta.wikimedia.org/wiki/Rewrite_Rules
    $wgArticlePath      = "/$1";

    $wgStylePath        = "$wgScriptPath/skins";
    $wgStyleDirectory   = "$IP/skins";
    # original site logo:
    # $wgLogo             = "$wgStylePath/images/wiki.png";
    $wgLogo             = "$wgStylePath/common/images/saspedia.gif";

    $wgUploadPath       = "$wgScriptPath/images";
    $wgUploadDirectory  = "$IP/images";

Here is my http access_log for an IE 6 request:

10.26.11.241 - - [05/Apr/2005:09:25:34 -0400] "GET /Main_Page HTTP/1.1" 304 26 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:34 -0400] "GET /skins/common/commonPrint.css HTTP/1.1" 304 - "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:34 -0400] "GET /skins/common/IEFixes.js HTTP/1.1" 304 - "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:34 -0400] "GET /skins/monobook/main.css HTTP/1.1" 304 - "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:34 -0400] "GET /skins/monobook/IE60Fixes.css HTTP/1.1" 304 - "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:34 -0400] "GET /Main_Page?title=-&action=raw&gen=js HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:34 -0400] "GET /?title=-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:34 -0400] "GET /skins/common/wikibits.js HTTP/1.1" 304 - "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:34 -0400] "GET /?title=-&action=raw&gen=css HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:34 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text/css&smaxage=18000 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:35 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:35 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:35 -0400] "GET /skins/monobook/headbg.jpg HTTP/1.1" 304 - "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:35 -0400] "GET /skins/monobook/bullet.gif HTTP/1.1" 304 - "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:35 -0400] "GET /skins/monobook/user.gif HTTP/1.1" 304 - "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:35 -0400] "GET /skins/common/images/saspedia.gif HTTP/1.1" 304 - "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:35 -0400] "GET /skins/common/images/poweredby_mediawiki_88x31.png HTTP/1.1" 304 - "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
10.26.11.241 - - [05/Apr/2005:09:25:35 -0400] "GET /skins/monobook/external.png HTTP/1.1" 304 - "http://saspedia.unx.sas.com/Main_Page" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"

Here is my http access_log for a Firefox 1.0.2 request:

10.26.11.241 - - [05/Apr/2005:09:31:33 -0400] "GET /Main_Page HTTP/1.1" 200 3799 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:33 -0400] "GET /favicon.ico HTTP/1.1" 404 298 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:33 -0400] "GET /skins/monobook/main.css HTTP/1.1" 200 18851 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:33 -0400] "GET /skins/common/commonPrint.css HTTP/1.1" 200 5150 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:33 -0400] "GET /Main_Page?title=User:Djb/-&action=raw&gen=js&maxage=18000 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:33 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:33 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:33 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:33 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:34 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:34 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:34 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:34 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:34 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:34 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:34 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:34 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:34 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:35 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:35 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:35 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:35 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:35 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:35 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:35 -0400] "GET /?title=User:Djb/-&action=raw&ctype=text%2Fjavascript&smaxage=18000&maxage=18000&gen=js&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:35 -0400] "GET /skins/common/wikibits.js HTTP/1.1" 200 14421 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:35 -0400] "GET /Main_Page?title=MediaWiki:Monobook.css&action=raw&ctype=text/css&smaxage=18000 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:35 -0400] "GET /Main_Page?title=-&action=raw&gen=css HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:36 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:36 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:36 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:36 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:36 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:36 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:36 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:36 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:36 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:36 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:37 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:37 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:37 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:37 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:37 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:37 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:37 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:37 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:37 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:37 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:38 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:38 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:38 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:38 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:38 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:38 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:38 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:38 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:38 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:38 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:39 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:39 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:39 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:39 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:39 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:39 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:39 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:39 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:39 -0400] "GET /?title=MediaWiki:Monobook.css&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:39 -0400] "GET /?title=-&action=raw&ctype=text%2Fcss&smaxage=18000&maxage=18000&gen=css&oldid=0 HTTP/1.1" 302 26 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:40 -0400] "GET /skins/monobook/headbg.jpg HTTP/1.1" 200 7881 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:40 -0400] "GET /skins/monobook/external.png HTTP/1.1" 200 165 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:40 -0400] "GET /skins/monobook/bullet.gif HTTP/1.1" 200 50 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:40 -0400] "GET /skins/monobook/user.gif HTTP/1.1" 200 932 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:40 -0400] "GET /skins/common/images/saspedia.gif HTTP/1.1" 200 5906 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:40 -0400] "GET /skins/common/images/poweredby_mediawiki_88x31.png HTTP/1.1" 200 1933 "http://saspedia.unx.sas.com/Main_Page" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"
10.26.11.241 - - [05/Apr/2005:09:31:41 -0400] "GET /favicon.ico HTTP/1.1" 404 298 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2"

-- 
David J. Biesack     SAS Institute Inc.
(919) 531-7771       SAS Campus Drive
http://www.sas.com   Cary, NC 27513




More information about the MediaWiki-l mailing list