Undefined index: HTTP_MOD_REWRITE

Iniciado por Chazy Chaz, 13 Mayo 2012, 18:17 PM

0 Miembros y 1 Visitante están viendo este tema.

Chazy Chaz

Hola, no se a que se puede deber, si la configuracion del archivo .htacces o el script del index.

Cuando entro a la web me da este error:

CitarNotice
Message: Undefined index: HTTP_MOD_REWRITE

Reporting File: application/core/Frostbite.php
Line: 53

Debugging:

Backtrace Level 1:
File: /home/website/public_html/index.php
Line: 39
Class: Application\Core\Frostbite
Function: Init
Function Args:

ARGS => Array (0)
(
)

No consigo encontrar el problema. El servidor web tiene mod_rewrite on x10.mx
Con Xampp me funciona perfectamente :S :S

Gracias

salu2
dew ;)

Chazy Chaz

fixed :P

if( !isset($_SERVER['HTTP_MOD_REWRITE']) ) $_SERVER['HTTP_MOD_REWRITE'] == 'Off';

to

if( !array_key_exists('HTTP_MOD_REWRITE', $_SERVER) ) $_SERVER['HTTP_MOD_REWRITE'] == 'Off';