|< 1 ... 8 9 10 11 12 13 14 ... 18 >| | 173 entries, 18 pages |
1
2
3
4
5
6
7
8
9
10
11
12
13
...
#use CGI::Compress::Gzip; # for compressing content
...
# try to find out if browser can handle gzipped data
# if yes, compress the http-body
my $cgi;
#if (exists $ENV{HTTP_ACCEPT_ENCODING} and
# $ENV{HTTP_ACCEPT_ENCODING} =~ /gzip/i) { # added by havi - fuer GZIP
# $cgi = CGI::Compress::Gzip->new();
#} # if
#else { # if not, just send plain text
$cgi = CGI->new();
#} # else
[E|B
1
2
3
4
5
6
7
8
my $cgi;
if (eval { require CGI::Compress::Gzip; 1 } and
exists $ENV{HTTP_ACCEPT_ENCODING} and
$ENV{HTTP_ACCEPT_ENCODING} =~ /gzip/i) {
$cgi = CGI::Compress::Gzip->new();
}else {
$cgi = CGI->new();
}
QuoteD:\wampp1>apache_start
D:\wampp1>ECHO OFF
Diese Eingabeforderung nicht waehrend des Running beenden
Bitte erst bei einem gewollten Shutdown schliessen
Please close Window only for Shutdown
Apache 1.3.xx is starting with
D:\wampp1>apache\apache.exe -k start
[Fri Feb 27 20:17:33 2004] [warn] Loaded DSO /wampp1/apache/php4apache.dll uses
plain Apache 1.3 API, this module might crash under EAPI! (please recompile it w
ith -DEAPI)
[Fri Feb 27 20:17:33 2004] [error] Can't locate PBoard/Config.pm in @INC (@INC c
ontains: /sc/develop/html/perl-bin D:/wampp1/perl/lib D:/wampp1/perl/site/lib .
/wampp1/apache/ /wampp1/apache/lib/perl) at e:/apacheweb/8084_develop.perl-commu
nity.de/html/perl-bin/mod_perl_startup.pl line 22.
Compilation failed in require at (eval 13) line 1.
Syntax error on line 1381 of d:/wampp1/apache/conf/httpd.conf:
Can't locate PBoard/Config.pm in @INC (@INC contains: /sc/develop/html/perl-bin
D:/wampp1/perl/lib D:/wampp1/perl/site/lib . /wampp1/apache/ /wampp1/apache/lib/
perl) at e:/apacheweb/8084_develop.perl-community.de/html/perl-bin/mod_perl_star
tup.pl line 22.
Compilation failed in require at (eval 13) line 1.
Quote[/quote]Fehler
MySQL meldet:
Access denied for user: 'root@127.0.0.1' (Using password: YES)
LoadModule php4_module "c:/ApachePfad/modules/php4apache.dll"
|< 1 ... 8 9 10 11 12 13 14 ... 18 >| | 173 entries, 18 pages |