En Windows 7 professional he instalado Apache 2.2.14 y PHP 5.3.2 en base a unos videotutoriales http://www.youtube.com/watch?v=zUucSEORgbg
Todo marcha bien, pero cuando creo un archivo de prueba por ejemplo el
Código PHP:
<?php phpinfo(); ?>
He intentado solucionarlo con este videotutorial: http://www.youtube.com/watch?v=YMZT5AmYl1M
Pero el problema persiste, creo que el problema esta en el archivo httpd.conf
Estas han sido las modificaciones en este archivo
Cita:
Estare atento a las respuesta de antemano gracias por su tiempo.LoadModule php5_module "c:/servidor/php/php5apache2_2.dll"
DocumentRoot "C:/servidor/web"
<Directory "C:/servidor/php">
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
</Directory>
<Directory "C:/servidor/web">
<IfModule dir_module>
DirectoryIndex index.html index.htm index.php index.php3 index.php4 index.php5 index.phtml
AddType application/x-httpd-php .php .php3 .php4 .php5 .phtml
AddType application/x-httpd-php-source .phps
</IfModule>
AddType application/x-gzip .gz .tgz
AddType application/x-http-php .php .php3 .php4 .php5 .phtml
AddType application/x-http-php-source .phps
DocumentRoot "C:/servidor/web"
<Directory "C:/servidor/php">
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
</Directory>
<Directory "C:/servidor/web">
<IfModule dir_module>
DirectoryIndex index.html index.htm index.php index.php3 index.php4 index.php5 index.phtml
AddType application/x-httpd-php .php .php3 .php4 .php5 .phtml
AddType application/x-httpd-php-source .phps
</IfModule>
AddType application/x-gzip .gz .tgz
AddType application/x-http-php .php .php3 .php4 .php5 .phtml
AddType application/x-http-php-source .phps
Atte.
El_Aprendiz