php-install Digest 20 Jun 2001 13:50:48 -0000 Issue 327
Topics (messages 3299 through 3300):
Problems getting php to load of of apache 1.3.20 under Windows Me
3299 by: anopheles
Error Starting PHP4 Under NES 3.6 SP3
3300 by: Daryl DuLong
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
PLEASE HELP!,
I'm running windows Me, I installed Apache 1.3.20 first, I tested it
with a html file, it works just fine. Then I installed PHP4, using the
windows installer version, then I followed the instructions and unzipped the
.zip version into the folder c:\php, I then added the following commands to
the http.conf :
#for the cgi binary (you can use that one compiled with force cgi redirect
too)
ScriptAlias /php4/ "C:/php/"
Action application/x-httpd-php4 "/php4/php.exe"
AddType application/x-httpd-php4 .php
#I put this in
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php .php .phtml
Action application/x-httpd-php "/php/php.exe"
#I put this in
LoadModule php4_module c:/php/sapi/php4apache.dll
AddType application/x-httpd-php .php .phtml
After this I reloaded the apache server, it says this when it loads :
"Apache/1.3.20 <Win32> PHP/4.0.5 running..."
so it seems as if I should be able to view php files off of the apache web
server, but NOOOO, it doesn't work, when I go to a test page with a VERY
simple php script :
"<html>
<head>
<title>Hello World</title>
</head>
<body>
<?php echo "Hello World<p>"; ?>
</body>
</html>"
the page loads nothing but blank white, perhaps I am an idiot and there's
something wrong with the script but I got it from the php.net tutorial. All
I really NEED from this apache server is the ability to test .php files as I
learn PHP.
ANY help would be much appreciated.
Thanks in advance,
//anopheles
Hi All,
I've searched through the archives for an answer to this error and I
can't seem to come up with one. I am trying to run PHP4 under Netscape
Enterprise Server 3.6 SP3 on an IRIX box. It compiled correctly, and,
yes, I did remember to include "--enable-libgcc" to the configuration
process. :-)
I have the following lines in obj.conf:
Init fn="load-modules"
funcs="php4_init,php4_close,php4_execute,php4_auth_trans"
shlib="/var/netscape/suitespot/bin/https/libphp4.so"
Init fn="php4_init" LateInit="yes" errorString="Failed to initialize
PHP!"
Yet, when the server starts up, I get the following error:
Starting Netscape Enterprise Server(s)
/var/netscape/suitespot/https-holodec
conf_init: Error running init function load-modules: dlopen of
/var/netscape/suitespot/bin/https/libphp4.so failed (207132:ns-httpd:
rld: Fatal Error: Cannot Successfully map soname
'/var/netscape/suitespot/bin/https/libphp4.so' under any of the
filenames /var/netscape/suitespot/bin/https/libphp4.so )
Cannot start /var/netscape/suitespot/https-holodec.
I have seen fixes for invalid symbol errors but I can't seem to find
anything for a "Cannot Successfully map soname" error. Can anyone offer
any suggestions?
Thanks a Million,
Daryl D.