Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8074799
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T14:46:26+00:00 2026-06-05T14:46:26+00:00

I am getting an error using curl to download an image to my localhost.

  • 0

I am getting an error using curl to download an image to my localhost. I’ve made sure the permissions are good and the directory exists. I’m at a loss for what to check next. This is the error I’m getting

Warning: unlink(images/) [function.unlink]: Operation not permitted in /Applications/MAMP/htdocs/test/image/instapaper.php on line 47

Here is my code:

 $saveto = 'images/';

if ( !file_exists($saveto) ) {
 mkdir ($saveto, 0777, true);
}

    $url = 'http://img.ffffound.com/static-data/assets/6/4dea2e91338b67cd926140acde1962403c3bf4c2_m.jpg';

echo getcwd() . "\n";

$ch = curl_init ($url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
$raw=curl_exec($ch);
curl_close ($ch);
if(file_exists($saveto) && is_writable($saveto)){
    unlink($saveto);
}
$fp = fopen($saveto,'x');


if(fwrite($fp, $raw)==false){
  echo 'no dice';
  return;
}
fclose($fp);

**SOLVED

Below is the working code. It basically looks like I was trying to save the image as the directory location I had specified. That’s been cleared up and I’ve got an image name provided to save the file to. In the final script the image name will be taken from the url.

    $url = 'http://img.ffffound.com/static-data/assets/6/4dea2e91338b67cd926140acde1962403c3bf4c2_m.jpg';
$saveto = 'images/';
$image_name = 'image.jpg';
$full_path = $saveto .  $image_name;

if ( !file_exists($saveto) ) {
 mkdir ($saveto, 0777, true);
}

$ch = curl_init ($url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
$raw=curl_exec($ch);
curl_close ($ch);
if(file_exists($full_path) && is_writable($full_path)){
    unlink($full_path);
}
$fp = fopen($full_path,'x');


if(fwrite($fp, $raw)==false){
  echo 'no dice';
  return;
}
fclose($fp);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T14:46:28+00:00Added an answer on June 5, 2026 at 2:46 pm

    $saveto is a directory – you can’t unlink() it, you must rmdir() it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using CURL and I am getting a 500 internal server error. I
I'm getting error while using replace in an update statement in sql server 2008.
I keep getting this error when using django templates in Google App Engine: TemplateSyntaxError:
I'm getting an error when using callproc() to call a stored procedure with parameters.
I am getting a strange error using jQuery 1.3.2 and Firefox. I have created
I have installed the android SDK but I’m getting an error when using a
I am getting following error message when using Doctrine ORM in Codeigniter. ( !
I am getting Error in submitting the form using AJAX and Jquery, following is
I'm totally new to flex. I'm getting a build error when using flex. That
I am getting an error when trying to play a file in cakephp using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.