Re: [PHP-INST] warning php_hostconnect: connect failed

2001-06-22 Thread Joris Van Droogenbroeck
| >Hi, | > | >I'm trying to read some webpage in a file. | >I've got some code from de php.net website: | > | >// get a web page into an array and print it out | >$fcontents = file ('http://www.php.net'); | >while (list ($line_num, $line) = each ($fcontents)) { | >echo "Line $line_num: " . ht

RE: [PHP-INST] PHP install on to Apache problem.

2001-06-22 Thread Srimoungchanh, Kou
Thanks.. Kou -Original Message- From: Jani Taskinen [mailto:[EMAIL PROTECTED]] Sent: Friday, June 22, 2001 11:43 AM To: Srimoungchanh, Kou Cc: '[EMAIL PROTECTED]' Subject: Re: [PHP-INST] PHP install on to Apache problem. Do not use 'apachectl restart' use 'apachectl stop ; apachectl s

Re: [PHP-INST] php 4.05 and ldap support migraine

2001-06-22 Thread Jani Taskinen
You have obviously ldap libs that are linked with openssl. Try adding --with-openssl to your configure line. # rm config.cache ; ./configure # make clean ; make ; make install --Jani On Thu, 21 Jun 2001, King, John (Greg) (OAO-HOU) wrote: >OS : Solaris 2.7 (Sparc Architecture) >PHP : 4.05 >O

Re: [PHP-INST] warning php_hostconnect: connect failed

2001-06-22 Thread Jani Taskinen
There is no support for redirected urls yet. Use the 'direct' url instead: $fcontents = file ('http://www.php.net/'); That works. (note the trailing / ?) --Jani On Fri, 22 Jun 2001, Joris Van Droogenbroeck wrote: >Hi, > >I'm trying to read some webpage in a file. >I've got some code from de

Re: [PHP-INST] PHP install on to Apache problem.

2001-06-22 Thread Jani Taskinen
Do not use 'apachectl restart' use 'apachectl stop ; apachectl start' instead. --Jani On Thu, 21 Jun 2001, Srimoungchanh, Kou wrote: >Hello all, > >I tried to install Mysql, which installed fine. Then I tried to install >PHP4, but when I tried to restart the apache server, it fails. > >I am

Re: [PHP-INST] Error Starting PHP4 Under NES 3.6 SP3

2001-06-22 Thread Daryl DuLong
Thank you for the suggestion! I apparently forgot that step. However, I added LD_LIBRARY_PATH=/usr/lib to my start script and I got the same error. Is it correct that I want to map to libstdc++.so.. ? Should I, instead, try to map to the libraries only relevant to Netscape Enterprise (/va

php-install Digest 22 Jun 2001 11:16:53 -0000 Issue 330

2001-06-22 Thread php-install-digest-help
php-install Digest 22 Jun 2001 11:16:53 - Issue 330 Topics (messages 3309 through 3311): starting Apache: unable to find OpenLDAP library path 3309 by: Charlie Hileman PHP install on to Apache problem. 3310 by: Srimoungchanh, Kou warning php_hostconnect: connect failed

[PHP-INST] warning php_hostconnect: connect failed

2001-06-22 Thread Joris Van Droogenbroeck
Hi, I'm trying to read some webpage in a file. I've got some code from de php.net website: http://www.php.net'); while (list ($line_num, $line) = each ($fcontents)) { echo "Line $line_num: " . htmlspecialchars ($line) . "\n"; } // get a web page into a string $fcontents = join ('', file ('ht