-2

im getting this error when sending a form with uploaded file.

i already put upload_max_filesize and post_max_size to 1000M in my php.ini without any result.

halfelf
  • 9,737
  • 13
  • 54
  • 63
sofien ouni
  • 15
  • 1
  • 3

1 Answers1

0

If you did setting php.ini file and then restart Apache daemon or Server.

Please check your php source files and .htaccess file.

First.

Maybe contain ini_set('upload_max_filesize', '8M') or ini_set('post_max_size', '8M').

They can be in index.php file.

Second.

They can be in .htaccessfile.

php_value upload_max_filesize 10M
php_value post_max_size 10M
kbin0505
  • 170
  • 1
  • 11