Thread Update neues Board (82 answers)
Opened by Strat at 2004-03-25 16:29

esskar
 2006-01-03 00:13
#86856 #86856
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
ich hab mal die beigelegt server.conf abgeändert, so dass sie auf mein System passt

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
54
55
<VirtualHost 127.0.0.1:80>
# ServerName develop.perl-community.de
# ServerAlias develop.perlcommunity.de
DocumentRoot D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/html/
User web6
Group ftponly
ScriptAlias /cgi-bin/ D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/html/cgi-bin/
ErrorLog D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/log/error.log
CustomLog D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/log/access.log combined

DirectoryIndex /overview/

<IfModule mod_perl.c>

PerlSetEnv PERL5LIB "D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/html/perl-bin/"
PerlModule Apache::Registry

<Files board.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>

<Files download.pl>
SetHandler perl-script
PerlHandler Apache::Registry
Options ExecCGI
PerlSendHeader On
PerlModule Apache::DBI
</Files>

PerlInitHandler Apache::StatINC
PerlRequire D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/html/perl-bin/mod_perl_startup.pl
</IfModule>

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteLog D:/Eigene Dateien/Entwicklung/projekte/perl-community/pboard/log/rewrite.log
RewriteRule /overview/(.*) /perl-bin/board.pl?action=overview;$2
RewriteRule /board/([0-9]+)/(.*) /perl-bin/board.pl?action=viewboard;boardid=$1;$2
RewriteRule /thread/([0-9]+)/(.*) /perl-bin/board.pl?action=viewThread;threadid=$1;$2
RewriteRule /download/(.+)/(.*) /perl-bin/download.pl?file=$1;$2
</IfModule>

</VirtualHost>


und jetzt? ich hab keine ahnung von apache... muss ich dass ding jetzt in die httpd.conf kopieren ?

View full thread Update neues Board