blob: 2ed4891d833ae073f2f30199988c5df053178d4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Htscanner allows one to use htaccess-like files to configure PHP
on a per-directory basis, just like Apache's htaccess. It is
especially useful with fastcgi.
Please read the "Description" part of /usr/doc/htscanner-<version>/README
after installation. An example [htscanner] block for php.ini is included
in /usr/doc/htscanner-<version>/htscanner.ini this can be appended to
/etc/httpd/php.ini (after editing to ones preferences).
Currently, for example, something like:
cat << EOF > /var/www/htdocs/.htaccess
<IfModule mod_php.c>
php_value register_globals On
</IfModule>
EOF
cat /usr/doc/htscanner-0.8.1/htscanner.ini >> /etc/httpd/php.ini
sh /etc/rc.d/rc.httpd stop
sh /etc/rc.d/rc.httpd start
|