Installing PHP CLI binary:        /usr/local/bin/
Installing PHP CLI man page:      /usr/local/man/man1/
Installing PHP SAPI module
[activating module `php4' in /etc/httpd/conf/httpd.conf]
cp libs/libphp4.so /usr/lib/apache/libphp4.so
cp: cannot stat `libs/libphp4.so': No such file or directory
apxs:Break: Command failed with rc=1
make: *** [install-sapi] Error 1

HAVE YOU CHECKED TO MAKE SURE THAT --with-apxs=/usr/sbin/ IS SET
PROPERLY. IF YOU INSTALLED APACHE TO IT'S DEFAULT DIRECTORY THEN THIS
SHOULD BE --with-apxs=/www/apache/bin/apxs. YOU MAY WANT TO CHECK THAT
APXS IS PROPERLY INSTALLED WITH APACHE.

BTW, this all stems from another admin on the server wanting to upgrade
apache to 1.3.27 - when that was done, my php written in my scripts
started
failing.  It doesn't even work now.  Whenever I have a script that
passes a
value (example: a link going to somewhere.php?w=4), it does not process
at
all (nothing happens - so w doesn't do anything).  Everything worked
fine
until this started.......

THIS SOUNDS LIKE A REGISTER GLOBALS ISSUE. AS OF PHP 4.2.0 REGISTER
GLOBALS IS TURNED OFF BY DEFAULT. SO YOU CAN NO LONGER CALL A GET OR
POST VARIABLE FROM YOUR SCRIPT BY SIMPLY SPECIFYING $w YOU MUST USE
$_GET['w'] or $HTTP_GET_VARS['w'], IF DOING A FORM POST YOU MUST USE
$_POST['w'] or $HTTP_POST_VARS['w'] (read:
http://www.php.net/variables.predefined). IF YOU CANNOT MODIFY YOUR
SCRIPT AT THE TIME, YOU CAN TURN REGISTER GLOBALS BACK TO ON BY EDITING
YOUR PHP.INI FILE, AND SET REGISTER_GLOBALS = ON. BUT JUST KEEP IN MIND
THAT TURNING REGISTER GLOBALS ON PRESENTS SECURITY RISKS. Read:
http://www.php.net/manual/en/security.registerglobals.php


--with-config-file-path=/usr/local/
DO YOU WANT TO PLACE PHP.INI FILE IN /usr/local/apache? BY DEFAULT THIS
GOES IN /usr/local/lib/php.ini, IF YOU MUST CHANGE THIS I THINK IT WOULD
BE MORE APPROPRIATE TO PUT IT IN YOUR /etc/ directory.








-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to