[PHP-WIN] curl options constants have duplicated INTEGER values

2009-04-03 Thread Todd Keup
I'm running PHP 5.2.9-1 for Windows and am seeing something that strikes me rather odd in the curl setopt constants, collisions of sorts I guess you might call them. The sample script below says it all ... $curl = get_defined_constants(true); $curl = $curl['curl']; foreach($curl as $k => $v) {

Re: [PHP-WIN] CuRL

2008-06-17 Thread Philip Olson
On 6/17/08, Bryan <[EMAIL PROTECTED]> wrote: > > I cannot get the curl commands to work in Windows. I am using WAMP 5. Can > anyone point me in the right direction on how to get it working? You must enable the appropriate dll files (php_curl.dll) inside php.ini. See also the following for additio

[PHP-WIN] CuRL

2008-06-17 Thread Bryan
I cannot get the curl commands to work in Windows. I am using WAMP 5. Can anyone point me in the right direction on how to get it working? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] cUrl version

2005-07-01 Thread Mark Rees
Hello Win2k, Apache 2.0, PHP5 I need to make an http request from behind an ISA proxy server. I am trying to use cURL for this, as it seems to offer the most configurable options with relation to a proxy server. This is the code I am using: $ch=curl_init(); curl_setopt ($ch, CURLOPT_URL, 'http

Re: [PHP-WIN] cURL as proxy

2004-10-05 Thread Comee Qin
Dear David, try poxy version 0.3 I am using it for the time being. A very handy tools for URL redirection. Cheers, --/PW - Original Message - From: "David Hamilton" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 06, 2004 12:09 AM Subj

[PHP-WIN] cURL as proxy

2004-10-05 Thread David Hamilton
Hello all, I've run into is strange situation and I am hoping someone on the list can help. I need to use cURL to retrieve information on a remote (non-SSL) webpage. The problem: the page I need to retrieve from is dynamic and the content is determined by the user's IP address. Is there any way

RE: [PHP-WIN] cUrl

2003-12-09 Thread David Felton
December 2003 4:11 To: '[PHP-WIN]' Subject: AW: [PHP-WIN] cUrl Hi, apparently you downloaded the source - which you are supposed to compile yourself, using the MINGW toolset (http://www.mingw.org). But you might want to look for curl-7.10.8-win32-ssl.zip, if you trust your source

AW: [PHP-WIN] cUrl

2003-12-09 Thread Sven Schnitzke
with some explaining text files. -- Sven > -Ursprüngliche Nachricht- > Von: Kimberly Tully [SMTP:[EMAIL PROTECTED] > Gesendet am: Dienstag, 9. Dezember 2003 11:20 > An: [EMAIL PROTECTED] > Betreff: [PHP-WIN] cUrl > > Hello, > > I am trying to

[PHP-WIN] cUrl

2003-12-09 Thread Kimberly Tully
Hello, I am trying to use cURL with php 4.3.1. I downloaded CURL curl-7.10.8-win32-ssl-devel-mingw32 and have no idea what to do with it. I unzipped it into a CURL directory and need help getting it set up. Can anyone help or direct me to some documentation. I looked on the curl site but the docu

[PHP-WIN] cURL on WinXP, running ISAPI

2003-03-26 Thread Matt Babineau
Got a hell of a problem. I just cant seem to get CURL working properly on WinXP, IIS 5.1, PHP 4.3.1, libcurl/7.10.2 OpenSSL/0.9.6g- Running PHP as an ISAPI Plugin, NTFS Filesystem. I have enabled my extensions folder to be d:\php\extensions in the PHP.ini the DLL files do in fact exist. I

[PHP-WIN] curl

2003-03-25 Thread Diana Castillo
How can I tell if I have successfully installed curl on my windows XP machine? What is the syntax for sending a test curl command? I tried this and got a syntax error: curl http://www.netscape.com/; -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsu

Re(2): [PHP-WIN] curl dll

2002-12-09 Thread Jean-Philippe Palha
Thank you Luis, so i'm waiting for the next release (4.30) because i have the 4.23 [EMAIL PROTECTED] a écrit: >Curl has bindings to the php version... try to use another version of >php and/or make sure that the curl version that you are using is >tailored for the version of php in use. > >In a

Re: [PHP-WIN] curl dll

2002-12-09 Thread Luis Ferro
Curl has bindings to the php version... try to use another version of php and/or make sure that the curl version that you are using is tailored for the version of php in use. In a server where i needed to install curl, the downgrade of one build in php was enought for the curl dll that i had to

[PHP-WIN] curl dll

2002-12-09 Thread Jean-Philippe Palha
Hi folks, i'm trying to use the php_curl.dll but i have a "unable to load dynamic library" message! someone could help? thanks, Jean-Philippe PALHA ([EMAIL PROTECTED]) IMA'DIFF - 13, rue Damesme - 75013 Paris FRANCE Tel : 33 1 53 80 89 89 - Fax : 33 1 53 80 89 81 Web : http://www.imadiff.com -

[PHP-WIN] cURL: curl_exec returning chopped up result on a POST operation

2002-07-07 Thread John Palmer
System: BSDI 4.1 Apache 1.3.26 PHP 4.1.2 cURL 7.9.8 I have the following function in PHP: function XMLExec($command) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, http://host.name/.cgi-bin/cgiprogram); curl_setopt($ch, CURLOPT_POST

[PHP-WIN] cURL extension

2002-02-24 Thread Ignatius Teo
Hi, Has anyone been able to get cURL to work under windows? I've tried to load the cURL extension, but it causes Apache to crash on startup. What am I missing? On another extensions related issue: Has anyone been able to get GTK0.5 to work? I've followed the README for installing GTK0.5, it in

[PHP-WIN] cURL on Windows

2002-02-01 Thread Zackary Wilson
I have installed the cURL module on windows, and now I'm ready to try it out. I can get this code to work, http://www.php.net/";); $fp = fopen ("php_homepage.txt", "w"); curl_setopt ($ch, CURLOPT_FILE, $fp); curl_setopt ($ch, CURLOPT_HEADER, 0); curl_exec ($ch); curl_close ($ch); fclose

[PHP-WIN] curl

2001-12-19 Thread LaserJetter
Hi. I tried enabling the cURL extension on two machines: one running Apache 1.3.19 and PHP 4.1.0, the other Apache 1.3.19 and PHP 4.0.6 both on Win98se by uncommenting the line in php.ini and copying the php_curl.dll file to my system folder. Whenever Apache starts up with this configuation it say

Re: [PHP-WIN] Curl/php/Apache on Win32

2001-08-27 Thread hassan el forkani
hi you probably have a missing dll some where try editing php_curl.dll and search for "dll" (dlls referenced in that dll) make sure all dlls you find are in your win../sys.. directory www.php4win.de provides a full package with all the dlls you need regards; At 01:15 28/08/01, Chris wrote: >H

[PHP-WIN] Curl/php/Apache on Win32

2001-08-27 Thread Chris
Hello Does anyone know how to install and use php_curl.dll for php. I set extension=c:\phpdev2\php\extension\ and also tried copying files SSLEAY32.dll, php4ts.dll, libeay32.dll in to the winodws system directory and set extension to that but still no sucess. I always get a error message saying