
I tweeted about it and got a reply from Microsoft Support Team asking me to run system check.
Practical tips and troubleshooting tricks for computer, gadget, Internet and programming issues and fixes!
I upload few image and want to loop through each one of them and resize them differently based on their original size. So I put the resize function in the loop. However, the dimension is based on the previous image.
For example. the first image is resized to 100x200. The second image should be resize to 50x100, but is resized to 100x200. The third one should be resized to 400x300, but is resized to 100x75.
In other words, the second image was resized using the dimension from the previous resized image based on the second image's longer side (W or H). The first image was resized to 100x200, so the second image was resized to 100x200 because the original dimension of the second image was 50x100 (Height is larger than width). So it take the first image's height to resize the second images. Crap!
In the image_lib in CodeIgniter, there is a function to clean the setting ($config). However, there is missing parameters in the function.
$this->width = '';Add the above two lines before closing the function.
$this->height = '';
SELECT * FROM (`store`) WHERE `publisher_id` = 1006 ORDER BY `store_id` descIn the query, store_id is the primary key in the innodb.