Tema: Safe Mode
Ver Mensaje Individual
  #8 (permalink)  
Antiguo 19/08/2009, 16:28
wencs
 
Fecha de Ingreso: junio-2007
Mensajes: 7
Antigüedad: 17 años, 4 meses
Puntos: 1
Respuesta: Safe Mode

bueno yo tenia el mismo problema en lo que vi este articulo yo uso xampp bajo windows
y solo coloque en el directorio .htaccess con lo siguiente y me trabaja perfecto:

php_value safe_mode 0
php_value register_globals 0
php_value display_errors 0
php_value zend.ze1_compatibility_mode Off
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule ^(.*)$ index.php [F,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]