Can any one suggest me the best way to write code for uploading a file in CakePHP?

  • I need to upload a file and save its name in table.
  • If the record saving fails it should not upload the file.
  • If the uploading fails then the record should be rollbacked.
  • The code should be reusable
  • I need to upload the file in afterSave callback
link|improve this question

1  
FYI, when you process in PHP, the file upload already has been finished, the file is in a temporary directory. You only have to mode this file to a final location and insert the corresponding row into the DB. (And handle possible failures.) – sibidiba Jun 30 '10 at 11:57
feedback

2 Answers

up vote 5 down vote accepted

You might consider using the Media plugin that was talked about at the last CakeFest. It is fairly comprehensive, containing features such as creating file variations (ie. thumbnails of images or video), helpers for outputting different types of files, and elements to help create multiple-file upload forms more quickly; and also had a strong focus on security from the outset as I can gather from the slides. I use it in production and find it works well, plus it seems to be under more active development than other options I have seen if that's anything to go by (eg. MeioUpload behavior, Uploader plugin, FileUpload plugin and various Bakery/blog posts on the topic).

link|improve this answer
1  
Let me shamelessly add Upload Pack to the list – MichaƂ Szajbe Feb 16 at 11:59
feedback

Take a look at the File fields section in the Cookbook.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.