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 used CakeDC users plugin. I need to upload/add a profile picture for an user.

How can i do this?

Can anyone post the code to have upload image?

http://book.cakephp.org/2.0/en/core-libraries/helpers/form.html

I added this but i got only a button.

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

How can i set/get the path of uploaded file?

share|improve this question
1  
What is your specific question? What have you tried so far? – Dave Apr 9 '12 at 13:05
I updated the original question. – guru Apr 9 '12 at 13:46

closed as not a real question by jprofitt, Dave, dhofstet, JoseK, Graviton May 1 '12 at 1:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

No matter the framework you use, this will works to PHP.

http://www.w3schools.com/php/php_file_upload.asp

PD: I suggest that next time, try to be more specific in your questions.

share|improve this answer
Two things: 1) w3fools.com 2) Posting links to tutorials is not answering a question. If that link goes down, your answer is now utterly useless. Please copy over relevant information from the pages to which you link. – MetalFrog Apr 9 '12 at 13:16
I put the link, not the contents, because that page contains much information that I think may be of interest to @prime – Lobo Apr 9 '12 at 13:20
Furthermore @MetalFrog, the question is too general (although everyone deserves this one) and a specific response would be very extensive. Also, if you do not like w3schools.com not have to dislike others. With all this I mean that your comment is somewhat unfortunate. – Lobo Apr 9 '12 at 13:31
In that case, you should reply with a comment and not an answer. – MetalFrog Apr 9 '12 at 13:37
@MetalFrog At that point I agree with you ;) – Lobo Apr 9 '12 at 13:42

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