|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-26 14:55 UTC] sniper@php.net
[2002-06-26 15:15 UTC] cindy dot hall at baycare dot org
[2002-07-27 01:00 UTC] php-bugs at lists dot php dot net
[2002-08-06 02:41 UTC] tolga at kadikoy-bld dot gov dot tr
[2002-08-06 02:43 UTC] tolga at kadikoy-bld dot gov dot tr
[2004-07-13 14:15 UTC] yann dot kloniecki at sncf dot fr
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 02:00:01 2025 UTC |
I am trying to install PHP as an Apache module. I am following the instructions from the PHP on-line manual, "Example 2-4. Quick Installation Instructions for PHP 4 (Apache Module Version)". I have Bison and Flex installed, along with the gcc compiler, which I've already tested. The steps for the PHP install are as follows: 1. gunzip apache_1.3.x.tar.gz 2. tar xvf apache_1.3.x.tar 3. gunzip php-x.x.x.tar.gz 4. tar xvf php-x.x.x.tar 5. cd apache_1.3.x 6. ./configure --prefix=/www 7. cd ../php-x.x.x 8. ./configure --with-mysql --with-apache=../apache_1.3.x --enable-track-vars 9. make 10. make install 11. cd ../apache_1.3.x 12. ./configure --activate-module=src/modules/php4/libphp4.a 13. make 14. make install 15. cd ../php-x.x.x 16. cp php.ini-dist /usr/local/lib/php.ini 17. Edit your httpd.conf or srm.conf file and add: AddType application/x-httpd-php .php 18. Use your normal procedure for restarting the Apache server. (You must stop and restart the server, not just cause the server to reload by use a HUP or USR1 signal.) ------ I got as far as step 13. The "make" command produces these errors: /usr/include/sys/proc.h:203: parse error before "crid_t" /usr/include/sys/proc.h:212: parse error before "p_class" /usr/include/sys/proc.h:355: parse error before '}' token make: 1254-004 The error code from the last command is 1. ------ Any help would be greatly appreciated. Thank you. Cindy Hall