DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=43514>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=43514





------- Additional Comments From [EMAIL PROTECTED]  2007-09-30 07:36 -------
Here are the requested files (just skipped the comments):

------------ httpd.conf -------------------
ThreadsPerChild 250
MaxRequestsPerChild  0
ServerRoot "C:/Programme/Apache2"
Listen 80

LoadFile "C:/Perl/bin/perl58.dll"
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
LoadModule imagemap_module modules/mod_imagemap.so
LoadModule include_module modules/mod_include.so
LoadModule isapi_module modules/mod_isapi.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule perl_module modules/mod_perl.so

PerlSetEnv PERL5LIB D:/Workspace/Gondolin
PerlModule Apache2::Reload
PerlInitHandler Apache2::Reload

ServerAdmin [EMAIL PROTECTED]

ServerName localhost:80

DocumentRoot "D:/Workspace/Gondolin"

<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>

<FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
</FilesMatch>

ErrorLog logs/error.log

LogLevel warn

<IfModule log_config_module>
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\""
combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I
%O" combinedio
    </IfModule>
    CustomLog logs/access.log common
</IfModule>

<IfModule alias_module>

</IfModule>

<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>


DefaultType text/plain

<IfModule mime_module>
    TypesConfig conf/mime.types
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
</IfModule>

<Files *.pl>
  SetHandler perl-script
  PerlResponseHandler ModPerl::Registry
  Options +ExecCGI
  PerlOptions +ParseHeaders
</Files>

<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

NameVirtualHost 127.0.0.1
<VirtualHost bretschneider.name.local>
ServerName bretschneider.name.local
DocumentRoot "D:/Workspace/Gondolin/"
ServerAdmin [EMAIL PROTECTED]>
</VirtualHost>

-------------- .htaccess -------------------

Options +FollowSymLinks
RewriteEngine On
RewriteBase /

RewriteCond %{SERVER_NAME} ^bretschneider.name$ [OR]
RewriteCond %{SERVER_NAME} ^www.bretschneider.name$ [OR]
RewriteCond %{SERVER_NAME} ^bretschneider.name.local$
RewriteRule ^$|(.*).(xhtml|html|xml) /modules/core/lib/entrance/dispatcher.pl
[E=Test:Test]
RewriteRule ^view/(.*)$ /clientview/002/bretschneider.name/$1 [L]

-------------- dispatcher.pl -------------------

use CGI;
use strict;

my $query = CGI->new();
print $query->header();
foreach (keys(%ENV)) {
  print $_,": ",$ENV{$_},"<br/>";
}


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to