> Steff Watkins wrote: > > I'm guessing that the directory indexing mechanism of Apache is getting > >confused. > > > >The line > > > > ScriptAlias /pipermail "/usr/local/mailman/archives/public" > > > >tells apache that anything with a URI starting with /pipermail is a > >script, so Apache will take any call to that URI as a call for an > >exectuable. > > Good catch! I missed that. It should be > > Alias /pipermail "/usr/local/mailman/archives/public" > > not ScriptAlias. > OK guys -- thank you everyone BUT BUT
still no success I changed the entries in httpd.conf and restarted the server but still get the same result. As a matter of curiosity I tried http://www.vizion2000.net/pipermail which simply gave me a page Index of /pipermail . Parent Directory Following the link > Parent Directory took me to http://www.vizion2000.net/ So we know the Alias pipermail line in httpd.conf is being read but we still get no further. It seems there must be something wrong with the httpd.conf so I am reposting it as it now stands: Options Indexes FollowSymLinks # # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: # Options FileInfo AuthConfig Limit # AllowOverride None # # Controls who can get stuff from this server. # Order allow,deny Allow from all </Directory> ScriptAlias /mailman " /usr/local/mailman/cgi-bin" <Directory "/usr/local/mailman"> Options FollowSymLinks ExecCGI AllowOverride None Order allow,deny Allow from all </Directory> Alias /pipermail "/usr/local/mailman/archives/public" <Directory "/usr/local/mailman/archives/public/"> Options FollowSymLinks ExecCGI AllowOverride None Order allow,deny Allow from all Options Indexes MultiViews AddDefaultCharset Off DirectoryIndex index.html </Directory> ------------------------------------------------------ Mailman-Users mailing list Mailman-Users@python.org http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org