Jump to content

Curl Upload problem


prashcom

Recommended Posts

Hi All,

 

I want to upload my txt file using curl file upload. Its not working properly. I used Mozilla Live Http header but i was no luck. Seems all fine.. i need the solution very urgently..

 

My porblem is ...

 

How to upload file using culr.. this is code i am using:

 

$httpheaders[]="Authorization: Basic $auth";

$httpheaders[]="Content-Type: text/xml";

$httpheaders[] = "FileFormat: TabDelimited";

$filePath = 'TOOLS.TXT';

$postParams = "@$filePath";

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url); // set URL

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch,CURLOPT_POSTFIELDS,$postParams);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // return result in a variable

curl_setopt($ch, CURLOPT_HEADER, 1); // include headers in result

curl_setopt($ch, CURLOPT_HTTPHEADER, $httpheaders); // send my headers

$postResult = curl_exec($ch);

 

if (curl_errno($ch))

{

print curl_error($ch);

print "<br>Unable to upload file.";

exit();

}

curl_close($ch);

echo "<pre>$postResult</pre>";

 

This script is not working fine..

 

Please help me out :)

Link to comment
https://forums.phpfreaks.com/topic/75186-curl-upload-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.