Is there any tutorial out there that is NOT a tutorial on how to use Plugin X to upload images in cakephp, specifically 2.0? I am not interested in using a plugin or behavior or component, and I'm not interested in any image resizing or thumbnail making at this point. I'm not trying to re-invent the wheel, I just want to learn HOW it's done, just how to store the url path in the DB and the file itself in the directory of my choosing (in this case it will be the file info for a particular user....file path is /uploaded_img/users/ThisUser).
The problem I've run into is that the cake manual is PATHETIC when it comes to explaining what I think is a crucial part of a web app (for a newbie that has never even dealt with file uploads at all before). I understand that what gets returned in a form field is an array but then just says "look at the section on PHP file uploads on php.net". I don't know how to translate any of what php.net says into the model, view or controller in cake.
|
|
||||
|
|
|
I came across your question while doing a search for the same. I'm going to be pulling code snippets from this tutorial http://www.tuxradar.com/content/cakephp-tutorial-build-file-sharing-application |
|||||
|
|
|
|||||
|
|
The file upload should be validated inside your model. You will have to write some code and you should write a behavior for that - except you want to copy and paste the same code everywhere and in each project that will need to validate file uploads. The file should be stored in the afterSave() callback of the model and when you wrote the file to its target destination you'll need to call another save($data, array('validates' => false, 'callbacks' => false); but include the path you saved the file to in your fields. Note that you have to use 'callbacks' => false to avoid that it will trigger afterSave and other callbacks again. There is nothing "pathetic" about the file uploads in CakePHP it is just totally up to the user how he wants to deal with them, same for the storage of the uploaded files. And thats simply because everyone wants to store files different. I would not recommend you to store the files as you want to because of file system performance issues if you get a lot directories on the same level. You should use a semi-randomized sub-folder structure like /uploads/users/51/52/71/. |
|||
|
|
Use file fields. It isn't much different in CakePHP 2.0 as it is in 1.3: |
|||
|
protected by Community♦ Dec 12 '12 at 12:09
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.