I have an article model with an image field(I don't want to create
another model).
This is the code for admin_add


function admin_add() {
if (!empty($this->data)) {
        $this->cleanUpFields();
            $this->Article->create();
        if ($this->Article->save($this->data)) {
                if (!empty($this->data['Article']['image']))
                        {
                        $fileup=$this->data['Article']['image'];
                            $this->Upload->upload('$fileup','../webroot/img/
uploads/');
                         }
                        $this->Session->setFlash('Article
saved');                                                        $this-
>redirect(array('action'=>'index'), null, true);        */
                        } else {
                                $this->Session->setFlash('Article not saved');
                        }
                }
        }

The folder uploads is 777.
Where is the problem?
Thank you.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to