Hi, Gustavo Sigal !
> Hi , I install php 4.2.2 , apache 2.0.39 on a Windows 95 .
> When i use the explorer to see a .php file this error ocurr
> Bad request!
> <?php
> phpinfo();
> ?>
> Any idea ?

Possible problem in httpd.conf and/or php.ini files. You have to write 
in your httpd.conf the next following

ScriptAlias /php/ "C:/php/"
<Directory "C:/php">
     AllowOverride None
     Options None
</Directory>
Action application/x-httpd-php "/php/php.exe"
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .php
Action application/x-httpd-php-source "/php/php.exe"
AddType application/x-httpd-php-source .phps

After that you may enjoy and run all in php.

Best regards,
Sincerely yours,
Yuriy Rusinov.


-- 
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to