I had done image upload,resized many times in CI. The same code is working in one page but not working in other page . when i display the error it says\" Your server does no
During my project I faced similar problem. This link help me to solve it.
Replace
$this->load->library('image_lib', $config);
with
$this->load->library('image_lib'); // Set your config up $this->image_lib->initialize($config); // Do your manipulation $this->image_lib->clear();