Page 1 of 1

PHP Contact Form filesize() [function.filesize] error

Posted: Fri Dec 11, 2009 10:50 pm
by jaiminrajani
I have a contact form in my website with the option to attach a file. I want to set the attachment limit as 10mb. But currently, after attaching a file to the contact form and clicking on 'submit', after the message is sent, the following error message is shown:

Warning: filesize() [function.filesize]: stat failed for 0 in /webcorp1/www/corpusers/j/a/jaimin.me/contact-form/contact-form/contact-form.php on line 127

The line 127 of my form is as follows:

filesize($_FILES[$i]['tmp_name']/1024) <= $x['maxsize'])

I would appreciate if anyone could help me out get rid of this error message and tell me how to set my attachment limit to 10mb.

Thank You.
Jaimin Rajani

Re: PHP Contact Form filesize() [function.filesize] error

Posted: Fri Dec 11, 2009 11:28 pm
by requinix

Code: Select all

filesize($_FILES[$i]['tmp_name']/1024)
Think about that.

Re: PHP Contact Form filesize() [function.filesize] error

Posted: Fri Dec 11, 2009 11:34 pm
by jaiminrajani
^ Thank You for your reply. That's lot in fact, But my problem has been solved already in another forum ;)