Configuration needed for the Zend-based aspectPHP on Linux

PHP 4.3.10 for Linux

$HOME/php-4.3.10

	cd
	tar xvfz php-4.3.10.tar.gz
	cd php-4.3.10
	./configure
	make
	cd php-4.3.10/Zend
	tar xvfz patch.tar.gz
	make
	make install

php.ini

register_globals = ON  

Apache 1.3.33 for Linux

/usr/local/apache/conf/httpd.conf

LoadModule rewrite_module modules/mod_rewrite.so
LoadModule php_module modules/mod_php.so
AddModule mod_rewrite.c
AddModule mod_php4.c

AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps

<IfModule mod_dir.c>
    DirectoryIndex index.html index.php
</IfModule>
Restart the apache service after the above changes.