The magic_quotes_gpc PHP INI directive must be set to ‘OFF’ in order for OWA domstreams to operate correctly
Para solventar este problema debemos crear el archivo php.ini y poner este código:
; Magic quotes
;
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off
; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off
una vez creado lo guardamos en el directorio principal de OWA (open web analytics) y continuamos con la instalación
English
If we want to solve this problem, we can create the php.ini archive. We introduce the next code
; Magic quotes
;
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off
; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off
We save the archive into the main owa (open web analytics) directory and we can continue with the installation
Comentarios
Publicar un comentario