Tema: FAQ's de PHP
Ver Mensaje Individual
  #41 (permalink)  
Antiguo 17/01/2003, 16:06
Cluster
O_O
 
Fecha de Ingreso: enero-2002
Ubicación: Santiago - Chile
Mensajes: 34.417
Antigüedad: 22 años, 10 meses
Puntos: 129
Tema: Errores / configuración

Pregunta: Al intentar ejecutar PHP me da este error: "Security Alert! The PHP CGI cannot be accessed directly."

Respuesta:

En instalaciones de PHP como CGI, caso de PHP bajo PWS, IIS, OmniHTTPd y varios mas incluido Apache si es como CGI .. Suele presentar este error de configuración:

Security Alert! The PHP CGI cannot be accessed directly.
This PHP CGI binary was compiled with force-cgi-redirect enabled. This means that a page will only be served up if the REDIRECT_STATUS CGI variable is set, e.g. via an Apache Action directive.


La solución está en configurar php.ini con la siguiente directiva:

Directiva php.ini:
; cgi.force_redirect = 1

dejarlo a:
cgi.force_redirect = 0

Reiniciar el servidor HTTP q se use y listo.

Un saludo,