vote up 0 vote down star

Hi guys, I have a problem with php file upload, so..when I try to uploads some songs, they work, but some song don't work..so the problems is that php doesn't see my upload filed, if i try:

if (isset($_FILES['song'])) {
//lala
}else{
 echo 'no song';

I receive an echo with "No song",so here you have a firebug screenshot http://screencast.com/t/prCixoAn

I have change the file size in php.ini to 30M, and i also set the max_file_size input, any solutions?

flag

70% accept rate

3 Answers

vote up 5 vote down check

Check the post_max_size option in php.ini. That must be larger than the value of max_file_input.

link|flag
thx bro,worked like a charm.. – Uffo Aug 12 at 23:04
vote up 1 vote down

I don't know if you are doing this already, but you also want to set set_time_limit($amountOfTime) to something so the script doesn't time out.

link|flag
vote up 0 vote down

These are good things to check for problems like this: Common Pitfalls and the general Handling File Uploads

link|flag

Your Answer

Get an OpenID
or

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