Der Server ist entweder überlastet oder ein Fehler in einem CGI-Skript ist aufgetreten.
Eingetragen von Matthias_Henzler (40)
am 30.03.2009 - 18:19 Uhr in
am 30.03.2009 - 18:19 Uhr in
Hallo,
wenn ich die .htacess auf meinen Server lade dann funktioniert meine Seite nicht mehr. Folgende Fehlermeldung wird gesendet.
"Der Server ist entweder überlastet oder ein Fehler in einem CGI-Skript ist aufgetreten"
Ohne .htccess funkt die Seite, bis auf die clear URls. das Mode Rewirte habe ich aktiviert.
Kann mir jemand ein Tip geben was u tun ist.
Grüße
Matthias
- Anmelden oder Registrieren um Kommentare zu schreiben
Den Fehler hatte ich auch
am 30.03.2009 - 18:34 Uhr
Den Fehler hatte ich auch schon. Geholfen hat das Auskommentieren und nach und nach wieder freischalten der Einträge in .htaccess. Bei mir läuft es so:
#
# Apache/PHP/Drupal settings:
#
# Protect files and directories from prying eyes.
<FilesMatch "\.(engine|inc|info|install|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format)$">
Order allow,deny
</FilesMatch>
# Don't show directory listings for URLs which map to a directory.
#Options -Indexes
# Follow symbolic links in this directory.
#Options +FollowSymLinks
# Make Drupal handle any 404 errors.
ErrorDocument 404 /index.php
# Force simple error message for requests for non-existent favicon.ico.
#<Files favicon.ico>
# There is no end quote below, for compatibility with Apache 1.3.
# ErrorDocument 404 "The requested file favicon.ico was not found.
#</Files>
# Set the default handler.
DirectoryIndex index.php
# Override PHP settings. More in sites/default/settings.php
# but the following cannot be changed at runtime.
# PHP 4, Apache 1.
#<IfModule mod_php4.c>
# php_value magic_quotes_gpc 0
# php_value register_globals 0
# php_value session.auto_start 0
# php_value mbstring.http_input pass
# php_value mbstring.http_output pass
# php_value mbstring.encoding_translation 0
#</IfModule>
# PHP 4, Apache 2.
#<IfModule sapi_apache2.c>
# php_value magic_quotes_gpc 0
# php_value register_globals 0
# php_value session.auto_start 0
# php_value mbstring.http_input pass
# php_value mbstring.http_output pass
# php_value mbstring.encoding_translation 0
#</IfModule>
(Rest ungeändert)
Gruß
ShenLung
DANKE, es hat geklappt!
am 30.03.2009 - 19:11 Uhr
Ja, endlich - dankeschön - nun hab ich es hinbekommen.
Aber äh die Clean URLS klappen noch nicht - hmmmm
erst mal weiterprobieren.
yourworldvisions.de
yourworldvisions.de
komm nicht weiter?
am 30.03.2009 - 19:24 Uhr
Wenn ich nun Deinen .htacces Code einfach rauskopiere und hochlade, so funktioniert mein Drupal wieder.
Wenn ich dann die clean URLs teste werde ich auf: "http://verpetzen.eu/admin/settings/clean-urls" weitergeleitet.
Also wenigstens keine Fehlermeldung, allerding lassen sich die Clean URLs nach dem Test noch immer nicht aktivieren.
???
Grüße Matthias
yourworldvisions.de
Du hast aber schon gesehen,
am 30.03.2009 - 19:30 Uhr
Du hast aber schon gesehen, dass ich nicht die komplette .htaccess gepostet habe sondern nur den Teil bis #PHP5...? Nicht das deswegen Missverständnisse aufkommen.
komm nicht weiter?
am 30.03.2009 - 19:56 Uhr
Wenn ich nun Deinen .htacces Code einfach rauskopiere und hochlade, so funktioniert mein Drupal wieder.
Wenn ich dann die clean URLs teste werde ich auf: "http://verpetzen.eu/admin/settings/clean-urls" weitergeleitet.
Also wenigstens keine Fehlermeldung, allerding lassen sich die Clean URLs nach dem Test noch immer nicht aktivieren.
???
Grüße Matthias
yourworldvisions.de
Ach mist, ja hab ich zwar
am 30.03.2009 - 20:02 Uhr
Ach mist, ja hab ich zwar gesehen aber dachte es müsse so sein.
Kannst Du mir das mit dem auskommentieren erklären, weil es klappt einfach nicht irgendwo fehlt mir da ein Grundlegendes Wissen
oder ich stehe komplett auf dem Schlauch?
Bin für einen weiterführenden Tip echt dankbar.
yourworldvisions.de
OK, hier mal die
am 30.03.2009 - 20:15 Uhr
OK, hier mal die komplette:
#
# Apache/PHP/Drupal settings:
#
# Protect files and directories from prying eyes.
<FilesMatch "\.(engine|inc|info|install|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format)$">
Order allow,deny
</FilesMatch>
# Don't show directory listings for URLs which map to a directory.
#Options -Indexes
# Follow symbolic links in this directory.
#Options +FollowSymLinks
# Make Drupal handle any 404 errors.
ErrorDocument 404 /index.php
# Force simple error message for requests for non-existent favicon.ico.
#<Files favicon.ico>
# There is no end quote below, for compatibility with Apache 1.3.
# ErrorDocument 404 "The requested file favicon.ico was not found.
#</Files>
# Set the default handler.
DirectoryIndex index.php
# Override PHP settings. More in sites/default/settings.php
# but the following cannot be changed at runtime.
# PHP 4, Apache 1.
#<IfModule mod_php4.c>
# php_value magic_quotes_gpc 0
# php_value register_globals 0
# php_value session.auto_start 0
# php_value mbstring.http_input pass
# php_value mbstring.http_output pass
# php_value mbstring.encoding_translation 0
#</IfModule>
# PHP 4, Apache 2.
#<IfModule sapi_apache2.c>
# php_value magic_quotes_gpc 0
# php_value register_globals 0
# php_value session.auto_start 0
# php_value mbstring.http_input pass
# php_value mbstring.http_output pass
# php_value mbstring.encoding_translation 0
#</IfModule>
# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
</IfModule>
# Requires mod_expires to be enabled.
<IfModule mod_expires.c>
# Enable expirations.
ExpiresActive On
# Cache all files for 2 weeks after access (A).
ExpiresDefault A1209600
# Do not cache dynamically generated pages.
ExpiresByType text/html A1
</IfModule>
# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on
# If your site can be accessed both with and without the 'www.' prefix, you
# can use one of the following settings to redirect users to your preferred
# URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
#
# To redirect all users to access the site WITH the 'www.' prefix,
# (http://example.com/... will be redirected to http://www.example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^fischfarm-ww\.de$ [NC]
# RewriteRule ^(.*)$ http://www.fischfarm-ww.de/$1 [L,R=301]
#
# To redirect all users to access the site WITHOUT the 'www.' prefix,
# (http://www.example.com/... will be redirected to http://example.com/...)
# uncomment and adapt the following:
# RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
# RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
# Modify the RewriteBase if you are using Drupal in a subdirectory or in a
# VirtualDocumentRoot and the rewrite rules are not working properly.
# For example if your site is at http://example.com/drupal uncomment and
# modify the following line:
# RewriteBase /drupal
#
# If your site is running in a VirtualDocumentRoot at http://example.com/,
# uncomment the following line:
# RewriteBase /
# Rewrite URLs of the form 'x' to the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
# $Id: .htaccess,v 1.90.2.3 2008/12/10 20:04:08 goba Exp $
Auskommentieren meint in diesem Fall, ein
#
vor die Zeile zu setzen, die nicht ausgeführt werden soll. Da dein Server mit manchen 'Befehlen' in der .htaccess nicht klar kommt, setzt man eben ein # vor die entsprechenden Zeilen. Auskommentieren deswegen, weil das#
eigentlich einen Kommentar einleitet.Wenn du nach und nach vor den Zeilen bzw. zusammenhängenden Codeblöcken das Kommentarzeichen entfernst, stößt du irgendwann auf die Zeile die Probleme macht.
Gruß
ShenLung
suuper vielen Dank
am 30.03.2009 - 20:20 Uhr
Komme mir ja schon ein wenig .... vor
aber nun weiß ich erst mal was ich zu tun habe. Jetzt ist Pfadfinernase gefordert.
Noch mal lieben Dank suuper Nett Deine hilfe
yourworldvisions.de
yourworldvisions.de
Jeder Befehl führt zum ausfall
am 30.03.2009 - 20:42 Uhr
es wird überhaupt gar keine Anweisung der .htaccess Datei akzeptiert immer das selbe.
"Der Server ist entweder überlastet oder ein Fehler in einem CGI-Skript ist aufgetreten."
brauch ich die .htaccess unbedingt um clear url zu aktivieren?
yourworldvisions.de
Wie? Ich dachte eben mit
am 30.03.2009 - 20:44 Uhr
Wie? Ich dachte eben mit meiner 'halben' .htaccess-Datei wären keine Fehler gekommen? Hast du jetzt die komplette getestet und es kommen wieder Fehler?
Die auskommentierte Datei
am 30.03.2009 - 20:52 Uhr
Die auskommentierte Datei klappt.
Wenn ich aber bloclweise # entferne klappt nichts mehr. Z.B schon bei:
Apache/PHP/Drupal settings:
(dann Rest auskommentiert)
klappt nichts mehr.
yourworldvisions.de
'Apache/PHP/Drupal
am 30.03.2009 - 21:02 Uhr
'Apache/PHP/Drupal settings:' ist ja auch ein Kommentar und kein Befehl, darf also nicht auskommentiert werden ;-)
Vorschlag: schau dir die original .htaccess an und vergleich sie mit der hier von mir geposteten (kompletten) .htaccess. Teste die von mir hier gepostete (komplette) .htaccess auf deinem Server. Wenn alles funktioniert, lass es einfach so ;-) Wenn du weitere Kommentare entfernen möchtest entferne nur die, die in der original .htacces auch nicht da sind.
ES GEHT!!!!!
am 31.03.2009 - 08:23 Uhr
VIELEN DANK ES GEHT !!!
ECHT SUUPER ERSTE ERFAHRUNGEN IN DIESES SCHÖNEN COMMUNITY
VIELEN DANK SHENLUNG
#
# Apache/PHP/Drupal settings:
#
# Protect files and directories from prying eyes.
<FilesMatch "\.(engine|inc|info|install|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format)$">
Order allow,deny
</FilesMatch>
# Don't show directory listings for URLs which map to a directory.
# Options -Indexes
# Follow symbolic links in this directory.
# Options +FollowSymLinks
# Customized error messages.
ErrorDocument 404 /index.php
# Set the default handler.
DirectoryIndex index.php
# Override PHP settings. More in sites/default/settings.php
# but the following cannot be changed at runtime.
# PHP 4, Apache 1.
<IfModule mod_php4.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
</IfModule>
# PHP 4, Apache 2.
<IfModule sapi_apache2.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
</IfModule>
# PHP 5, Apache 1 and 2.
# <IfModule mod_php5.c>
# php_value magic_quotes_gpc 0
# php_value register_globals 0
# php_value session.auto_start 0
# php_value mbstring.http_input pass
# php_value mbstring.http_output pass
# php_value mbstring.encoding_translation 0
# </IfModule>
# Requires mod_expires to be enabled.
<IfModule mod_expires.c>
# Enable expirations.
ExpiresActive On
# Cache all files for 2 weeks after access (A).
ExpiresDefault A1209600
# Do not cache dynamically generated pages.
ExpiresByType text/html A1
</IfModule>
# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on
# If your site can be accessed both with and without the 'www.' prefix, you
# can use one of the following settings to redirect users to your preferred
# URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
#
# To redirect all users to access the site WITH the 'www.' prefix,
# (http://example.com/... will be redirected to http://www.example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
# RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
#
# To redirect all users to access the site WITHOUT the 'www.' prefix,
# (http://www.example.com/... will be redirected to http://example.com/...)
# uncomment and adapt the following:
# RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
# RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
# Modify the RewriteBase if you are using Drupal in a subdirectory or in a
# VirtualDocumentRoot and the rewrite rules are not working properly.
# For example if your site is at http://example.com/drupal uncomment and
# modify the following line:
# RewriteBase /drupal
#
# If your site is running in a VirtualDocumentRoot at http://example.com/,
# uncomment the following line:
# RewriteBase /
# Rewrite old-style URLs of the form 'node.php?id=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^id=([^&]+)$
#RewriteRule node.php index.php?q=node/view/%1 [L]
# Rewrite old-style URLs of the form 'module.php?mod=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^mod=([^&]+)$
#RewriteRule module.php index.php?q=%1 [L]
# Rewrite current-style URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
# $Id: .htaccess,v 1.81.2.5 2008/12/10 20:12:26 drumm Exp $
yourworldvisions.de
yourworldvisions.de