| >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
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
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
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
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
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 - 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
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