|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-09-25 07:05 UTC] sterling@php.net
[2000-09-25 07:07 UTC] sterling@php.net
[2000-10-28 23:19 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 15:00:02 2025 UTC |
Originally linked with cURL SSL 7.1 if it is linked with 7.2.1 apache crashes on startup, with: Cannot load /etc/httpd/modules/libphp4.so into server: /usr/lib/libcurl.so.0: undefined symbol: RAND_status I have a simple script like this: <html> <body> starting curl...<br> <?php $ch=curl_init ("http://192.168.0.42/"); $fp=fopen ("/tmp/curl_test.txt","w"); curl_setopt($ch, CURLOPT_INFILE, $fp); curl_setopt($ch, CURLOPT_HEADER, 1); curl_exec($ch); curl_close($ch); fclose($fp); ?> curl completed<br> </body> </html> I have PHP4 compiled with the following options: --with-apxs=/usr/bin/apxs --with-mysql=/usr/local/mysql --with-curl=/usr --enable-sysvsem --enable-sysvshm --enable-versioning