Navigation: Appendix > Apache 1.3x & PHP 5.x |
When running the MySQL database then you might also want to run the Apache web server using PHP as a scripting interpreter.
Apache Download the latest version of the 1.3 series of Apache from http://httpd.apache.org/download.cgi. Note that the 2.x series of Apache is preferrable, however PHP does not officially support the 2.x release of Apache at the time of writing - though we did not experience any problems.
When installing Apache make sure that you select the option
for All Users, on Port 80, as a Service -- Recommneded.
Also make sure that the Internet Information Server (IIS), if installed, is either reconfigured for a port other than 80 or not running to avoid conflicts with the Apache web server.
PHP You can download the latest version of PHP from http://www.php.net/downloads.php. Please note that the PHP pages included with EventSentry were tested with the 5.x release of PHP.
After installing the software you will need to make changes to both the Apache configuration file httpd.conf (usually found in the c:\program files\apache group\apache\conf directory) and the PHP configuration file php.ini (located in %systemroot%).
LoadModule php5_module c:/php/php5apache.dll
AddModule mod_php5.c
<IfModule mod_php5.c> AddType application/x-httpd-php .php SetEnv PHPRC c:/php </IfModule>
|