Re: [PHP] file uploads grief on linux, but okay on BSD

2001-09-06 Thread Rasmus Lerdorf
Are you using move_uploaded_file() to move the file into place? On Thu, 6 Sep 2001, Justin French wrote: Hi all, My understanding of the whole file uploading thing is not fantastic, and i'm unsure where to go next with this one. I have a file-upload script which works fine on my test

[PHP] file uploads grief

2001-07-20 Thread Justin French
Hi all, I know this topic get's covered all the time, but i've copied this code direct from the online manual, and it still fails to work!! My environment is PHP4.0.1, under FreeBSD. To my knowledge, NONE of the php.ini file has been changed at all, and the rest of PHP has been working finr

Re: [PHP] file uploads grief

2001-07-20 Thread Saquib Farooq
the 5000 represent byter try making it 500 i.e 5 megabytes i think the file you are trying to upload might be bigger than 5k and 5M is safe you can keep the fileseize fixed to a large value to be safe. and instead all the fancy code just try the move_uploaded_file() command to see if it works