Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Sicher, dass du nicht in deinem suexec.log nachgesehen hast?
Tu dir doch den Gefallen und poste hier die Konfiguration des VirtualHosts, die suphp.conf und die letzten Zeilen aus dem suphp.log.
################### CONFIXX APACHE VHOSTS FILE ##########################
# created at Tue Nov 7 20:56:46 2006
#
# !!! Do not make any changes in this file !!!
#
# 1. We cannot guarantee that the software will work properly, if
# the contents of this file are modified.
# 2. This file would be rewritten each time the Confixx software requires
# to update Apache configuration to bring user/domain settings in effect.
#
# If you need to have some custom content in this file, you can use
# "httpd special" function in the Confixx Control Panel or create
# an empty webX.lock file and edit webX.conf by the way you want in this
# case Confixx will not touch the configuration file.
#
##########################################################################
<Directory "/var/www/web9/html">
Options -FollowSymLinks -SymLinksIfOwnerMatch
<IfModule mod_access.c>
Allow from all
</IfModule>
suPHP_engine on
# RemoveHandler .php
# php_admin_flag engine on
</Directory>
<VirtualHost xx.xxxx.xx.xx:443>
ServerName meine-url.de
DocumentRoot /var/www/web9/html
SuexecUserGroup web9 web9
ScriptAlias /cgi-bin/ /var/www/web9/html/cgi-bin/
suPHP_ConfigPath /etc/apache2/confixx_phpini/web9/1
<IfDefine SSL>
SSLEngine on
SSLCertificateKeyFile /etc/apache2/ssl.key/mein-cert.key
SSLCertificateFile /etc/apache2/ssl.crt/mein-cert.crt
SetEnvIf User-Agent ".*MSIE.*"
nokeepalive ssl-unclean-shutdown
downgrade-1.0 force-response-1.0
<Files ~ ".(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/var/www/web9/html/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
</IfDefine>
</VirtualHost>
<VirtualHost xx.xxx.xxx.xx:80>
ServerName www.meineurl.de
ServerAlias www.meineurl.de
DocumentRoot /var/www/web9/html
SuexecUserGroup web9 web9
ScriptAlias /cgi-bin/ /var/www/web9/html/cgi-bin/
suPHP_ConfigPath /etc/apache2/confixx_phpini/web9/2
</VirtualHost>
[global]
;Path to logfile
logfile=/var/log/suphp/suphp.log
;Loglevel
loglevel=error
;User Apache is running as
webserver_user=www-data
;Path all scripts have to be in
docroot=/var/www
; Security options
allow_file_group_writeable=true
allow_file_others_writeable=false
allow_directory_group_writeable=false
allow_directory_others_writeable=false
;Check wheter script is within DOCUMENT_ROOT
check_vhost_docroot=true
;Send minor error messages to browser
errors_to_browser=false
;PATH environment variable
env_path=/bin:/usr/bin
;Umask to set, specify in octal notation
umask=0022
; Minimum UID
min_uid=100
; Minimum GID
min_gid=100
[handlers]
;Handler for php-scripts
x-httpd-php=php:/usr/bin/php-cgi
;Handler for CGI-scripts
x-suphp-cgi=execute:!self
Bedeutet "suPHP ausschalten", dass du mod_php oder PHP als CGI verwendest.
Wenn du mod_php verwendest, kann es sein, dass andere Limits gelten (ggf. Ausgabe von phpinfo() vergleichen).
Ansonsten kann ich noch empfehlen, die aktuelle Version von suPHP aus dem SVN-Repository (https://ssl.marsching.biz/subversion/suphp/trunk) zu verwenden, da in dieser Version einige Bugs behoben sind, die im letzten Release noch existieren.