Your server does not support the GD function required to process this type of image.Ci

前端 未结 4 826
有刺的猬
有刺的猬 2020-12-11 04:06

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

4条回答
  •  甜味超标
    2020-12-11 04:35

    change your first lines from:

    $original_path = './uploads/activity_images/original';
    $resized_path = './uploads/activity_images/resized';
    $thumbs_path = './uploads/activity_images/thumb';
    $this->load->library('image_lib');
    

    to:

    $config['image_library'] = 'gd2';
    $original_path = './uploads/activity_images/original';
    $resized_path = './uploads/activity_images/resized';
    $thumbs_path = './uploads/activity_images/thumb';
    $this->load->library('image_lib', $config);
    

提交回复
热议问题