php-install Digest 10 Jun 2003 12:59:36 -0000 Issue 1416

Topics (messages 11041 through 11048):

PHP and IIS 6
        11041 by: Bob Rathke Jr.

4.3.2 on HP-UX...
        11042 by: NIPP, SCOTT V (SBCSI)

Another PHP Build problem on HP...
        11043 by: NIPP, SCOTT V (SBCSI)
        11044 by: Jim Thome

PHP not parsing, and strange errors (Apache/1.3.27; WinXP;  PHP/4.3.2)
        11045 by: Emily Wrenholt
        11047 by: Jim Thome

Probs with IIS w2k
        11046 by: Marcelo

Help! Installation error
        11048 by: AnhHuy.Ha.sjsu.edu

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]


----------------------------------------------------------------------
--- Begin Message ---
Hi all! 
Having issues getting PHP (latest) working on my new IIS6 server. 
 
I have it installed and working with limited functionality. I can call
the base exe and run scripts. I have not been able to get the ISAPI
filter loaded and my lead developer is having trouble making calls to
several functions. Here is an error example!
 
Fatal error: Call to undefined function: w32api_register_function() in
c:\websites\development.ofa.com\uptime.php on line 19
 
Have not been able to find much on installing on IIS 6 any help would be
appreciated!
 

--- End Message ---
--- Begin Message ---
        I am attempting to upgrade a couple of webservers from previous
versions of PHP to the latest and "greatest" version.  The biggest problem I
am running into currently is that the make fails to build anything in the
libs directory.  I am running the configure script as follows:
        ./configure --with-mysql=/usr/local/mysql
--with-oci8=/usr/local/oracle/8.0.6.3 --with-apxs=/usr/local/apache/bin/apxs

        The configure script completes without any errors.  The make script
seems to also complete without any errors, but nothing is in the libs
directory.  Upon running the 'make install' this errors out complaining
about not being able to find anything in the libs directory.  Any help would
also be greatly appreciated.

Scott Nipp
Phone:  (214) 858-1289
E-mail:  [EMAIL PROTECTED]
Web:  http:\\ldsa.sbcld.sbc.com



--- End Message ---
--- Begin Message ---
        I am attempting to build either 4.2.3 or 4.3.2 PHP on a pair of
HP-UX 11.00 servers.  This is already built successfully as a static module
on one of the servers.  Unfortunately, attempting to build it as a dynamic
module on this same server provides me an empty 'libs' directory.  This
problem is referenced in a different thread.  The problem that I am looking
for help with is for some reason the other server keeps being detected as
having a cross-compiler.  This is something I am very unfamiliar with.  The
same HP ANSI C compiler is in use on both servers, although the working
server has version B.11.01.01 while the other servers has version
B.11.01.20.  Any help on this would be most appreciated.

Scott Nipp
Phone:  (214) 858-1289
E-mail:  [EMAIL PROTECTED]
Web:  http:\\ldsa.sbcld.sbc.com



--- End Message ---
--- Begin Message ---
Scott,

I use GNU gcc (gcc-3.1-sd-11.00.depot) on HPUX.  It seems to create
fewer build errors than HP's ANSI C compiler.  It can be downloaded at
the HPUX porting archive: http://hpux.cs.utah.edu/

Also, make sure you hack your apxs script and replace any references to
DSO extensions of .so to .sl

--
Jim

>>> "NIPP, SCOTT V (SBCSI)" <[EMAIL PROTECTED]> 06/09/03 10:59AM >>>
        I am attempting to build either 4.2.3 or 4.3.2 PHP on a pair of
HP-UX 11.00 servers.  This is already built successfully as a static
module
on one of the servers.  Unfortunately, attempting to build it as a
dynamic
module on this same server provides me an empty 'libs' directory. 
This
problem is referenced in a different thread.  The problem that I am
looking
for help with is for some reason the other server keeps being detected
as
having a cross-compiler.  This is something I am very unfamiliar with. 
The
same HP ANSI C compiler is in use on both servers, although the
working
server has version B.11.01.01 while the other servers has version
B.11.01.20.  Any help on this would be most appreciated.

Scott Nipp
Phone:  (214) 858-1289
E-mail:  [EMAIL PROTECTED] 
Web:  http:\\ldsa.sbcld.sbc.com



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



--- End Message ---
--- Begin Message ---
I have tried *Numerous* times to set up PHP. Each time
I get the same results.

Here is what I've been doing.

1. Install Apache. It works fine.

2. Unzip PHP files into C:/PHP

3. From here, I copy the php4apache.dll and php4ts.dll
files to the all of the recommended places 
   (C:/apache, Windows, Windows/System,
Windows/System32)

5. Then I modify the php.ini:
   doc_root = "C:\Apache\htdocs"
   user_dir = "C:\Documents and Settings\*\My
Documents\website"
   extension_dir = "C:\PHP\extensions"

4. I copy the php.ini file to the recommended
places(C:/windows, c:/windows32)

6. I add these Apache httpd settings, each in the
appropriate place in the document:
    (already set: DocumentRoot "C:/Apache/htdocs")
    UserDir "C:/Documents and Settings/*/My
Documents/website"
    LoadModule php4_module c:/php/sapi/php4apache.dll
    AddModule mod_php4.c
    AddType application/x-httpd-php .php 

I'm pretty sure I've followed all the instructions. 
But PHP never parses. It only prints the php code in
the browser as test. 
I know i'm doing something right, because when I start
php from the apache application
in C:/apache, it prints "Apache/1.3.27 <win32>
PHP/4.3.2 running.." 
(it doesn't print this when I use the 'start' short
cuts)

I also get these warnings in the apache error log 
(I have no idea why.. thought maybe it was the QOS
driver, but I disabled it):
 [error] [client 127.0.0.1] File does not exist:
c:/apache/htdocs/_vti_bin/owssvr.dll
 [error] [client 127.0.0.1] File does not exist:
c:/apache/htdocs/msoffice/cltreq.asp

Has anybody ever had this problem before? Can anybody
help me?


Thanks!

Emily



=====






__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com

--- End Message ---
--- Begin Message ---
Are you using the PHP delimiters (i.e., <?php echo "Hello World!";?>)

>>> Emily Wrenholt <[EMAIL PROTECTED]> 06/09/03 04:17PM >>>
I have tried *Numerous* times to set up PHP. Each time
I get the same results.

Here is what I've been doing.

1. Install Apache. It works fine.

2. Unzip PHP files into C:/PHP

3. From here, I copy the php4apache.dll and php4ts.dll
files to the all of the recommended places 
   (C:/apache, Windows, Windows/System,
Windows/System32)

5. Then I modify the php.ini:
   doc_root = "C:\Apache\htdocs"
   user_dir = "C:\Documents and Settings\*\My
Documents\website"
   extension_dir = "C:\PHP\extensions"

4. I copy the php.ini file to the recommended
places(C:/windows, c:/windows32)

6. I add these Apache httpd settings, each in the
appropriate place in the document:
    (already set: DocumentRoot "C:/Apache/htdocs")
    UserDir "C:/Documents and Settings/*/My
Documents/website"
    LoadModule php4_module c:/php/sapi/php4apache.dll
    AddModule mod_php4.c
    AddType application/x-httpd-php .php 

I'm pretty sure I've followed all the instructions. 
But PHP never parses. It only prints the php code in
the browser as test. 
I know i'm doing something right, because when I start
php from the apache application
in C:/apache, it prints "Apache/1.3.27 <win32>
PHP/4.3.2 running.." 
(it doesn't print this when I use the 'start' short
cuts)

I also get these warnings in the apache error log 
(I have no idea why.. thought maybe it was the QOS
driver, but I disabled it):
 [error] [client 127.0.0.1] File does not exist:
c:/apache/htdocs/_vti_bin/owssvr.dll
 [error] [client 127.0.0.1] File does not exist:
c:/apache/htdocs/msoffice/cltreq.asp

Has anybody ever had this problem before? Can anybody
help me?


Thanks!

Emily



=====






__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com 

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



--- End Message ---
--- Begin Message ---
Hello,
I manually installed PHP 4.3.2, ISAPI version on a windows 2000 SP3
server with IIS.

I thought I did everything acording to the manual but I must have missed
something, becuase when I try to load a info.php page which contains <?
Phpinfo(); ?> I get:

        The specified module could not be found. 

Everyone has RWX permisions on C:\PHP and its sub-directories.

extension_dir = "C:\PHP\extensions\" (but so far none are being loaded)

Configured the .php extension under ISAPI applications for
"C:\PHP\sapi\php4isapi.dll"
Restarted IIS and it sub-apps.

What did I miss?

Thanks.




--- End Message ---
--- Begin Message ---
See installation log file...
Any ideas are greatly appreciated.


_/_/_/_/_/_/_/_/_/_/_/
Anhhuy Ha
IT Consultant
Academic Services
[EMAIL PROTECTED]
(408) 924-2597
_/_/_/_/_/_/_/_/_/_/

--- End Message ---

Reply via email to