Mkdir Posted January 29, 2012 Report Share Posted January 29, 2012 Estimados, hace un día estoy con este problema... instale php y apache (yum install php httpd) en fedora para hacer unas pruebas y no logra funcionar... apache anda bien, al ingresar al localhost desde el browser, pero al crear un archivo .php en /var/www/html de prueba con el texto <? php phpinfo(); ?> solo aparece un error en el navegador: Error HTTP 500 (Internal Server Error): Se encontró una situación inesperada mientras el servidor intentaba cumplir con la solicitud. al hacer click derecho sobre el archivo .php y abrirlo con un navegador, este me lo descarga. y el los logs aparece esto: PHP Fatal error: Unknown: Failed opening required '/var/www/html/prueba.php' (include_path='.:/usr/share/pear:/usr/share/php') in Unknown on line 0 si alguien pudiera ayudarme, lo agradeceria mucho... saludos. agradecería Link to comment Share on other sites More sharing options...
X_tatane_X Posted January 31, 2012 Report Share Posted January 31, 2012 Te moveré a la sección correspondiete de Servidores y Hosting. Suerte :cool: Link to comment Share on other sites More sharing options...
AshWilliams Posted January 31, 2012 Report Share Posted January 31, 2012 (edited) Puedes probar esta solución: You have to uncomment and add to the "include_path=.:/usr/share/php" line in /etc/php5/apache2/php.ini configuration file. The original line will look something like: ;;;;;;;;;;;;;;;;;;;;;;;;;; Paths and Directories ;;;;;;;;;;;;;;;;;;;;;;;;;; ; UNIX: "/path1:/path2";include_path = ".:/usr/share/php"; You need to uncomment the "include_path" line and then add the path for the directory where your pear packages reside, like this: ;;;;;;;;;;;;;;;;;;;;;;;;;; Paths and Directories ;;;;;;;;;;;;;;;;;;;;;;;;;; ; UNIX: "/path1:/path2"include_path = ".:/usr/share/php:/usr/share/pear/PEAR"; Luego dale a restart al apache y ve si corre el script. Aunque a mi me tinca que es error de sintaxis en tu script...prueba con este: <?php phpinfo(); ?> Saludos :krider: Edited January 31, 2012 by AshWilliams Link to comment Share on other sites More sharing options...
pinox¹ Posted February 1, 2012 Report Share Posted February 1, 2012 si no tienes mucho tiempo tbm puedes instalar lampp y listo Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now