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 6212999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:36:59+00:00 2026-05-24T06:36:59+00:00

I want to edit a record in CakePhp without deleting the saved path of

  • 0

I want to edit a record in CakePhp without deleting the saved path of an uploaded jpg file. Right now when I edit the record it deletes the saved file path.

The approach I think would work is to do a logic check in the form to check if the field is empty or not. Display the saved file path if it’s not empty or show an empty path if it is. Would this be the best way to update the record?

I’m using Miles Johnson’s uploader plugin for uploading files.

Here’s the code within the form:

 <?php           
 if (!empty ($slider ['Slider']['bgImg']));
   echo $slider ['bgImg'];  
 else            
   echo $form->input('file', array('type' => 'file'));              
 ?>
  • 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-05-24T06:37:00+00:00Added an answer on May 24, 2026 at 6:37 am

    This logic should be in the controller, strictly speaking.

    In my apps with files and edit capabilities, I will show a file field and a link/thumbnail of the image in question on the edit form.

    my approach uses my own uploader, so your results may vary, but essentially:

    if (!empty($this->data)) {
        $file_object = $this->data['Listing']['featured_image'];
    
        $image_data=$this->Upload->do_upload($file_object, 'img/uploads/');
    
        if($image_data){
            $this->data['Listing']['featured_image'] = $image_data['name'];
        } else {
            unset($this->data['Listing']['featured_image']);
        }
    
    $this->Listing->save($this->data)
    

    and in my upload component, I have this:

    public function do_upload($file_object, $location='img/uploads/') {
        /**
         * No file was uploaded
         */
        if($file_object['error']==4) {
            return false;
        }
        // carry on uploading
    

    So essentially; I pass my upload component the $file_object, which is from the form. I then do a simple test, using the default set of error codes to see if the file is empty (4). If it’s empty, I return false. (you could return errors etc, but this was my approach).

    after the upload call, I check the return value, and if the file was uploaded successfully, I can then set the field in my model. (the file name, in my case) – you may want to store the path as well, for instance.

    If it’s false – it means there was no file; so I unset the value from the array.

    Because the field does not exist in the array, cake will not attempt to overwrite existing data – it simply ignores it; allowing the old value to stay untouched.

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

Sidebar

Related Questions

I want to edit .vimrc file from Vim and apply them without restarting Vim.
Dynamically I want to edit/update hosts(etc/hosts) file to add domain. To edit hosts(etc/hosts) file
I have a text file that I want to edit using Java. It has
I want to call a .php file from the OnClick event. <input id=Edit name=Edit
For a web app I want to let users review and edit a record
Want to do this: (EDIT: bad sample code, ignore and skip below) struct RECORD
I want edit multiple strings at once by selection the list of strings needs
I have this html code that i want to edit with jQuery. Here is
My problem: I have Ido-mode enabled and I want to edit (for example) a
I am a Cake PHP novice. I want to edit the table Issue. This

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.