Thread Update neues Board: Design und ein paar Bugs (172 answers)
Opened by esskar at 2004-02-21 14:40

format_c
 2004-04-05 15:38
#39793 #39793
User since
2003-08-04
1706 Artikel
HausmeisterIn
[Homepage] [default_avatar]
Hab jetzt man die Fehler auskommentiert die Probleme machen:
Mit der folgenden Konfig startet der Apache 1.3

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Listen 8082
<VirtualHost 192.168.0.251:8082>
ServerName server.lan.de
ServerAlias koeppe.homelinux.org
User format_c
Group htmlsmb
DocumentRoot "/srv/www/htdocs/ext_8082/html/"
TransferLog /srv/www/htdocs/ext_8082/access_log
ErrorLog /srv/www/htdocs/ext_8082/error_log
ScriptAlias /cgi-bin/ "/srv/www/htdocs/ext_8082/html/cgi-bin/"
<Location /cgi-bin/>
SetHandler cgi-script
Options +ExecCGI -FollowSymLinks
</Location>

# Included for PBoard Installation
DirectoryIndex /perl-bin/pboard.pl
Alias /perl-bin/ "/srv/www/htdocs/ext_8082/html/perl-bin/"
PerlModule Apache::Registry
<Files board.pl>
SetHandler perl-script
PerlHandler Apache::Registry
Options ExecCGI
PerlSendHeader On
# PerlModule Apache::DBI
</Files>
<Files download.pl>
SetHandler perl-script
PerlHandler Apache::Registry
Options ExecCGI
PerlSendHeader On
# PerlModule Apache::DBI
</Files>
<Files upload.pl>
SetHandler perl-script
PerlHandler Apache::Registry
Options ExecCGI
PerlSendHeader On
# PerlModule Apache::DBI
</Files>
PerlInitHandler Apache::StatINC

#PerlRequire /srv/www/htdocs/ext_8082/html/perl-bin/mod_perl_startup.pl

RewriteEngine On
RewriteLog /srv/www/htdocs/ext_8082/rewrite_log

RewriteRule /overview/ /perl-bin/pboard.pl?action=overview
RewriteRule /board/(.*)/(.*)/ /perl-bin/pboard.pl?action=viewboard;boardid=$1;$2
RewriteRule /thread/(.*)/(.*)/ /perl-bin/pboard.pl?acton=viewThread;threadid=$1;$2
RewriteRule /download/(.+)/(.*)/ /perl-bin/download.pl?file=$1;$2

</VirtualHost>


Weis jemand was ich falsch mache?
Also das Script mod_perl_startup.pl ist an der angegebenen Stelle. Das Modul Apache::DBI ist auch installiert.
Außerdem stellt sich noch mir die Frage ob man mit PerlModule Apache::DBI das Modul laden muss wenn es in mod_perl_startup.pl auch mit use geladen wird.

Gruß Alex

View full thread Update neues Board: Design und ein paar Bugs