When I used apache 1.3 I could call a file with an extension of .phps and
it would display formatted source.
In apache 2.0 it does not do this
Here is my config from apache 2.0
LoadModule php4_module modules/libphp4.so
#
# Cause the PHP interpreter handle files with a .php extension.
#
<Files *.php>
SetOutputFilter PHP
SetInputFilter PHP
LimitRequestBody 524288
</Files>
I have tried doing:
<Files *.phps>
SetOutputFilter PHPS
SetInputFilter PHPS
LimitRequestBody 524288
</Files>
However, that does not work!
Any ideas?
Michael
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php