Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

when uploading an image to the server using cakephp

$this->Model->Behaviors->attach('ImageUpload', Configure::read('photo.files'));

photo uploaded successfully, and the database fields also

but shows following error instead of returning to index page.


Notice (8): Undefined index: class [CORE\cake\libs\model\behaviors\upload.php, line 104]

Notice (8): Undefined index: class [CORE\cake\libs\model\behaviors\upload.php, line 107]

Warning (2): Cannot modify header information - headers already sent by (output started at E:\umoorthy_105act10\projects\dev1base\core\cake\basics.php:111) [CORE\cake\libs\controller\controller.php, line 614]


wat to do?

share|improve this question
What behaviour are you actually using? If it is MeioUpload this link might help: mail-archive.com/cake-php@googlegroups.com/msg76460.html – harpax Feb 9 '10 at 15:28
im using image upload behaviour.. – udhaya Feb 9 '10 at 15:42
Any links to that specific behavior? A cursory Google search didn't bring up anything useful. – deceze Feb 10 '10 at 1:08

1 Answer

Cake has already wrote where to look for a problem

Configure::read('photo.files')

do following to check if everything is ok

pr(Configure::read('photo.files'))
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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