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
PHP Contact Form filesize() [function.filesize] error
Moderator: General Moderators
-
jaiminrajani
- Forum Newbie
- Posts: 2
- Joined: Fri Dec 11, 2009 10:26 pm
PHP Contact Form filesize() [function.filesize] error
- Attachments
-
- This is the error message above my form that is shown after a message is sent.
- Untitled.jpg (61.58 KiB) Viewed 91 times
-
- This is how the line 127 looks like.
- line 127.jpg (6.7 KiB) Viewed 91 times
Re: PHP Contact Form filesize() [function.filesize] error
Code: Select all
filesize($_FILES[$i]['tmp_name']/1024)-
jaiminrajani
- Forum Newbie
- Posts: 2
- Joined: Fri Dec 11, 2009 10:26 pm
Re: PHP Contact Form filesize() [function.filesize] error
^ Thank You for your reply. That's lot in fact, But my problem has been solved already in another forum 