das memory limit versucht via .htaccess zuerhöhen -> 404Fehler
am 15.05.2009 - 09:35 Uhr in
Hilfe!!! Nichts geht mehr.
Habe versucht, inder .htaccess das memory limit zu erhöhen. Ich weiß nicht, was ich
da gemacht habe, auf jeden Fall kommt jetzt, folgende Meldung, wenn ich auf die Profil-Seite
gehe:
Objekt nicht gefunden!
Der angeforderte URL konnte auf dem Server nicht gefunden werden. Der Link auf der verweisenden Seite scheint falsch oder nicht mehr aktuell zu sein. Bitte informieren Sie den Autor dieser Seite über den Fehler.
Sofern Sie dies für eine Fehlfunktion des Servers halten, informieren Sie bitte den Webmaster hierüber.
Error 404
localhost
05/15/09 10:26:21
Apache/2.2.11 (Win32) DAV/2 mod_ssl/2.2.11 OpenSSL/0.9.8i PHP/5.2.9
Wie kann ich die .htaccess wieder herstellen?
Danke!
- Anmelden oder Registrieren um Kommentare zu schreiben

poste doch mal die .htaccess
am 15.05.2009 - 09:36 Uhr
poste doch mal die .htaccess
.ht.access
am 15.05.2009 - 09:57 Uhr
alles klar:
#
# 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} ^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 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 $
Kann mir jemand sagen, was daran falsch ist? Danke!
Lade dir Drupal neurunter
am 15.05.2009 - 10:11 Uhr
Lade dir Drupal neurunter und überschreib die Datei, fertig.
----------------------------------------
http://tobiasbaehr.de/
Gelöste Forenbeiträge mit [gelöst] im Titel ergänzen
Ein Forum ist kein Ersatz für das www (Google.de).
Warum soll er das tun? Das wird nix bringen.
am 15.05.2009 - 10:25 Uhr
Lade dir Drupal neurunter und überschreib die Datei, fertig.
Warum soll er das tun? Das wird nix bringen.
Die gepostete .htaccess enspricht Drupals .htaccess exakt. Die Ursache des Problemes muss an anderer Stelle liegen. HAbe allerdings keine Idee dazu.
Edit
@ropfaff,
Du schreibst Du hast in der .htaccess versucht das Memorylimit zu erhoehen.
Davon kann man in der geposteten .htaccess nix erkennen. Wuerdest Du also bitte die .htaccess posten in der Du diese Aenderung versucht hast.
Aber eigentlich kannst Du das vergessen. Bringe die .htaccess in den Originalzustand. Dann aendere das Memorylimit in der Datei "settings.php":
/*** PHP settings:
*
* To see what PHP settings are possible, including whether they can
* be set at runtime (ie., when ini_set() occurs), read the PHP
* documentation at http://www.php.net/manual/en/ini.php#ini.list
* and take a look at the .htaccess file to see which non-runtime
* settings are used there. Settings defined here should not be
* duplicated there so as to avoid conflict issues.
*/
ini_set('arg_separator.output', '&');
ini_set('magic_quotes_runtime', 0);
ini_set('magic_quotes_sybase', 0);
ini_set('session.cache_expire', 200000);
ini_set('session.cache_limiter', 'none');
ini_set('session.cookie_lifetime', 2000000);
ini_set('session.gc_maxlifetime', 200000);
ini_set('session.save_handler', 'user');
ini_set('session.use_only_cookies', 1);
ini_set('session.use_trans_sid', 0);
ini_set('url_rewriter.tags', '');
ini_set('memory_limit', '96M');
------------------------
Quiptime Group
Ich habe die Datei nicht
am 15.05.2009 - 10:21 Uhr
Ich habe die Datei nicht verglichen. Ist ja auch nicht meine Aufgabe :D.
Sondern die Antwort auf
Wie kann ich die .htaccess wieder herstellen?
----------------------------------------
http://tobiasbaehr.de/
Gelöste Forenbeiträge mit [gelöst] im Titel ergänzen
Ein Forum ist kein Ersatz für das www (Google.de).
geht wieder
am 15.05.2009 - 10:23 Uhr
habe einfach mit "strg z" die htaccess-datei wieder in den Urzustand gebracht. Jetzt geht es wieder...
bleibt trotzdem das Probel, wie ich PHP mehr Arbeitsspeicher zuweisen kann. Was muss ich genau an der
htaccess-datei verändern?
@ropfaff, bitte das hier noch mal lesen
am 15.05.2009 - 10:27 Uhr
@ropfaff, bitte noch mal lesen. Gibt ein Edit von mir: Warum soll er das tun? Das wird nix bringen.
------------------------
Quiptime Group
ropfaff schrieb bleibt
am 15.05.2009 - 10:32 Uhr
bleibt trotzdem das Probel, wie ich PHP mehr Arbeitsspeicher zuweisen kann. Was muss ich genau an der
htaccess-datei verändern?
Am besten kontaktierst Du dazu mal Deinen Provider. Der kann Dir a) mitteilen, ob es bei ihm uberhaupt erlaubt ist, den Speicher per .htaccess-Datei zu erhöhen und b) wie genau man das dann anstellt.
--
"Jeder Mensch ist lieb." Peter Ludolf