please modify the value for post_max_size within your php.ini file.
Correct me if I'm wrong but isn't it upload_max_filesize ? post_max_size is the maximum amount of data php scripts can accept thru POST. Even though files are uploaded with POST the two directives are little bit different.
Posts: 2,252
Thanks: 208
Thanked 642 Times in 291 Posts
`upload_max_filesize` is the sum of all the files, which you upload at once. `post_max_size` is the upload_max_filesize + the sum of the length of all other fields within the form you use (incl. mime headers, which the encoder probably contains). So you can increase the value for both.
You can edit this flag with ini_set() function from php or you can use an .htaccess file. This will help if you have an webhosting account and you can't edit you php.ini file.
Recent comments
16 hours 14 min ago
1 day 1 hour ago
1 day 2 hours ago
1 day 6 hours ago
1 day 10 hours ago
1 day 10 hours ago
1 day 13 hours ago
1 day 23 hours ago
2 days 4 hours ago
2 days 5 hours ago