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

  • SEARCH
  • Home
  • 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 7809167
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T03:20:32+00:00 2026-06-02T03:20:32+00:00

I have an Upload model – contains images uploaded by the user. Within the

  • 0

I have an Upload model – contains images uploaded by the user.

Within the controller, I’m calling:

$this->Upload->delete($id);

Which works just fine to delete the record from the database, but I’d also like to delete the corresponding image file.

I’ve tried a lot of different things with different variables..etc, and found this link to a similar question, but – nothing seems to work – I can’t even get it to delete with any of these attempts:

//at the bottom of my Upload model
function afterDelete() {
    //NONE OF THESE WORK - is this even being called?
    unlink('/img/uploads/rest_logo.jpg');
    unlink('app/webroot/img/uploads/rest_logo.jpg');
    unlink('/app/webroot/img/uploads/rest_logo.jpg');
    unlink('img/uploads/rest_logo.jpg');
    unlink(WWW_ROOT . 'img/uploads/rest_logo.jpg');
    unlink(WWW_ROOT . '/img/uploads/rest_logo.jpg');
    return true;
}

Obviously I’ll want to change it to be a dynamic filename, but for now, I can’t even get it to delete the file when hard-coding all the different possible paths I can think of.

Is there a way to test what’s going on in this? Like an echo or… anything?

Any help or direction is greatly appreciated.

  • 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-02T03:20:34+00:00Added an answer on June 2, 2026 at 3:20 am
    App::uses('File', 'Utility');
    
    // new File(string $path, boolean $create = false, integer $mode = 493) 
    // $mode  = 493 default
    
    $file = new File(WWW_ROOT . 'img/uploads/rest_logo.jpg', false, 0777);
    if($file->delete()) {
       echo 'image deleted.....';
    }
    

    Detail about File Utility

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

Sidebar

Related Questions

I have this model which has Image field to be uploaded. It has a
I have a form which binds a model and a file upload using the
I have a pretty basic Paperclip Upload model that is attached to a User
I have this model: class UserProfile(models.Model): (UserProfile description) user = models.ForeignKey(User) image = models.ImageField(upload_to=upload_to)
Hay, i have a model which saves 2 images class Picture(models.Model): picture = models.ImageField(upload_to=make_filename)
I currently have a model that the user can upload a thumbnail to the
I have this photo model class Photo(models.Model): photo = ImageField(_('photo'), upload_to='upload/products') created = models.DateTimeField(auto_now_add=True)
I have an upload form with a file to be uploaded. The issue I
I have to upload a file to an FTP server. The filename contains special
I have an upload form that takes a user about 30 min. to complete.

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.