user8207090
user8207090

Reputation: 39

Unable to upload big files through form

I am using codeigniter and I have set the limit for unlimited file size also my server is showing max_file_size of 20MB in phpinfo() but I am unable to upload file > 200KB. I am on 000webhost my code igniter code is

$config['max_size']     = 0;

https://i.sstatic.net/9uLvg.png also When I upload the file without using codeigniter it is uploaded without showing any error

Upvotes: 0

Views: 56

Answers (1)

BudwiseЯ
BudwiseЯ

Reputation: 1826

Along with the post_max_size you need also adjust the upload_max_filesize parameter in the php.ini.

Upvotes: 2

Related Questions