Nach Serverumzug macht index.php garnichts mehr

outsida

New Member
Hi,

ich habe neulich meinen Server umgezogen.
Ich bin am verzweifeln.

Von:
Suse 10.1 und Plesk 8.3

Auf:
Suse 10.1 und Plesk 8.1.1

7 Seiten funktionieren. Alle mit der gleichen Technik. PHP, MySQL und mod_rewrite...

Eine Seite will aber nicht.
Wenn ich die Seite öffne, sehe ich einen weißen Bildschrim, nichts. Wenn ich in Quelltext gucke, nichts.
Wenn ich eine beispiel.html auf der Domain aufrufe funktioniert es. Wenn ich andere PHP Dateien aufrufe auch.

Die index.php macht NICHTS Es passiert nichts.
Wenn ich in die index.php in die erste Zeile vor
Code:

<?

"irgendwas" reinschreibe, ist das nach dem Aufruf im Quelltext nicht zu sehen.

Was muss ich machen, in welche logs kann man schauen? In der error_log vom apache habe ich nichts gefunden.

Gruß
 
Prüf ob Du für die Domain im PLESK überhaupt PHP aktiviert hast.

Aonsonsten die enstprechenden HOST Dateien der Domain prüfen, was zum PHP Interpreter dadrin steht.
 
Hmm...

Das habe ich schon geprüft. Habe die domain in Plesk einmal komplett gelöscht und neu angelegt. Kein Erfolg.

PHP ist aktiviert.
http://www.funny-factory.de/download.php
wird ausgeführt
http://www.funny-factory.de/index.php
nicht.

In welchen Host Dateien meinst du?
das ist der auszug aus der httpd.include

Code:
<VirtualHost 85.214.65.229:80>
	ServerName   funny-factory.de:80
	ServerAlias  www.funny-factory.de
	UseCanonicalName Off
	DocumentRoot /srv/www/vhosts/funny-factory.de/httpdocs
	CustomLog  /srv/www/vhosts/funny-factory.de/statistics/logs/access_log plesklog
	ErrorLog   /srv/www/vhosts/funny-factory.de/statistics/logs/error_log
<IfModule mod_userdir.c>
	UserDir /srv/www/vhosts/funny-factory.de/web_users
</IfModule>
	<IfModule mod_ssl.c>
		SSLEngine off
	</IfModule>
	<Directory /srv/www/vhosts/funny-factory.de/httpdocs>
	<IfModule sapi_apache2.c>
		php_admin_flag engine on
		php_admin_flag safe_mode off
		php_admin_value open_basedir "/srv/www/vhosts/funny-factory.de/httpdocs:/tmp"
	</IfModule>
	<IfModule mod_php5.c>
		php_admin_flag engine on
		php_admin_flag safe_mode off
		php_admin_value open_basedir "/srv/www/vhosts/funny-factory.de/httpdocs:/tmp"
	</IfModule>
		Options -Includes -ExecCGI
	</Directory>
	<Directory /srv/www/vhosts/funny-factory.de/web_users>
	<IfModule sapi_apache2.c>
		php_admin_flag engine off
	</IfModule>
	<IfModule mod_php5.c>
		php_admin_flag engine off
	</IfModule>
	</Directory>
	Alias "/error_docs" "/srv/www/vhosts/funny-factory.de/error_docs"
	ErrorDocument 400 /error_docs/bad_request.html
	ErrorDocument 401 /error_docs/unauthorized.html
	ErrorDocument 403 /error_docs/forbidden.html
	ErrorDocument 404 /error_docs/not_found.html
	ErrorDocument 500 /error_docs/internal_server_error.html
</VirtualHost>

<VirtualHost 85.214.65.229:80>
	ServerName   pics.funny-factory.de:80
	DocumentRoot /srv/www/vhosts/funny-factory.de/subdomains/pics/httpdocs
	CustomLog  /srv/www/vhosts/funny-factory.de/statistics/logs/access_log plesklog
	ErrorLog   /srv/www/vhosts/funny-factory.de/statistics/logs/error_log
	<IfModule mod_ssl.c>
		SSLEngine off
	</IfModule>
	<Directory  /srv/www/vhosts/funny-factory.de/subdomains/pics/httpdocs>
	<IfModule sapi_apache2.c>
		php_admin_flag engine on
		php_admin_flag safe_mode off
		php_admin_value open_basedir "/srv/www/vhosts/funny-factory.de/subdomains/pics/httpdocs:/tmp"
	</IfModule>
	<IfModule mod_php5.c>
		php_admin_flag engine on
		php_admin_flag safe_mode off
		php_admin_value open_basedir "/srv/www/vhosts/funny-factory.de/subdomains/pics/httpdocs:/tmp"
	</IfModule>
		Options -Includes -ExecCGI
	</Directory>
	Alias "/error_docs" "/srv/www/vhosts/funny-factory.de/error_docs"
	ErrorDocument 400 /error_docs/bad_request.html
	ErrorDocument 401 /error_docs/unauthorized.html
	ErrorDocument 403 /error_docs/forbidden.html
	ErrorDocument 404 /error_docs/not_found.html
	ErrorDocument 500 /error_docs/internal_server_error.html
</VirtualHost>

Die /srv/www/vhosts/funny-factory.de/conf/vhost.conf
muss es ja nicht geben, wenn ich keine Extra Confs vornehmen will, oder?

Die anderen Seiten funktionieren ja auch bei gleicher Vorgehensweise.
Ich werde bekloppt dabei:mad:
 
Back
Top