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.

I have included image formhelper for uploading an image file, Where i am getting only 'name' attribute but not 'tmp_name', 'size', 'type', 'error' attributes.. Please give me the solution..

share|improve this question

2 Answers

up vote 1 down vote accepted

Check your form allows uploads:

<?php echo $this->Form->create('Model', array('type'=>'file')); ?>

adds an enctype of "multipart/form-data", allowing file uploads.

share|improve this answer
Ya i included that.. But still not getting attributes.. – Sanganabasu Apr 25 '12 at 3:52

To add a file upload field to a form, you must first make sure that the form enctype is set to "multipart/form-data", so start off with a create function such as the following.

echo $this->Form->create('Document', array('enctype' => 'multipart/form-data') );
// OR
echo $this->Form->create('Document', array('type' => 'file'));

read more http://book.cakephp.org/1.3/view/1411/File-Fields

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.