CodeIgniter Forums
The image you are attempting to upload exceedes the maximum height or width - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: The image you are attempting to upload exceedes the maximum height or width (/showthread.php?tid=39581)



The image you are attempting to upload exceedes the maximum height or width - El Forum - 03-15-2011

[eluser]Unknown[/eluser]
Hi, Please help me in this case,

An error is there!

Error:The image you are attempting to upload exceedes the maximum height or width.

My code is :

$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '50000';
$config["encrypt_name"]=FALSE;
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);



and my image file size is 1.4 MB.

Thanks in Advance
Punit Tripathi
http://www.punittripathi.com :-)


The image you are attempting to upload exceedes the maximum height or width - El Forum - 03-15-2011

[eluser]raenk[/eluser]
What are your image dimensions (pixels) ?

Make sure they're not beyond the limits you set.