Hallo, ich wünsche die eine gute Woche,
Ich habe natürlich am Tag deiner Antwort die Mail gelesen. Ich war durch meine Gedanken ziemlich oft von der Familienarbeit abgelenkt und konnte mich erst heute meinem Problem widmen. Ich habe das empfohlene FCGI Paket installiert und als Modul aktiviert. Muß ich eigentlich das zuvor aktivierte FastCGI Modul deaktivieren und wenn ja, wie lautet der Befehl?
Nichtsdestotrotz habe ich nach der Änderung in der default Datei keine andere Meldung,als die Benachrichtigung, das Fast CGI immer noch nicht vom Checker-Script als funktionierend abgehakt wird.
Ich bin mal so frei und kopiere den Inhalt meiner default Datei in meine Antwort.
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
<IfModule mod_fcgi.c>
AddHandler php5-fcgi .php
Action php5-fcgi /php5-fcgi
Alias /php5-fcgi /usr/lib/cgi-bin/php5-fcgi
FastCgiExternalServer /usr/lib/cgi-bin/php5-fcgi -host 127.0.0.1:9000 -pass-header Authorization
</IfModule>
AddHandler fcgid-script .fpl
# AddHandler fastcgi-script .fpl
AliasMatch ^/localhost/lx-erp/[^/]+\.pl /var/www/lx-erp/dispatcher.fpl
Alias /localhost/lx-erp/ /var/www/lx-erp/
FcgidMaxRequestLen 10485760
# fastcgiMaxRequestLen 10485760
<Directory /var/www/lx-erp>
AllowOverride All
Options ExecCGI Includes FollowSymlinks
Order Allow,Deny
Allow from All
</Directory>
<DirectoryMatch /var/www/path/lx-erp/users>
Order Deny,Allow
Deny from All
</DirectoryMatch>
# Zugriff über CGI
Alias /localhost/lx-erp /var/www/lx-erp
# Zugriff mit mod_fcgid:
AliasMatch ^/localhost/lx-erp-fcgi/[^/]+\.pl /var/www/lx-erp/dispatcher.fpl
Alias /localhost/lx-erp-fcgi/ /var/www/lx-office-erp/
Was sagt dir der Inhalt, und welch blöder Fehler unterlief mir? Sei für deine Mühe vielmals bedankt.
Michael