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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.