Apache Configuration for Unix and LinuxPlace the php_ctsql.so module into your PHP extensions installation directory. For example, a typical location on Linux might be: /usr/local/modules/php_ctsql.so Apache Setup In your httpd.conf file you will need to specify the PHP module (libphp4.so or libphp5.so) to be loaded in the Dynamic Shared Object (DSO) Support section: LoadModule php4_module modules/libphp4.so or LoadModule php5_module modules/libphp5.so You may add a type to allow for specific file types in the AddType Section: AddType application/x-httpd-php .php .phtml AddType application/x-httpd-php-source .phps |
|||