I found out that my previous server didnt have GD 2.0 to run Lazy-Gallery. So I made a few adjustments in the lazy-img.php file, and it worked great.
This is what was done in the file:
On Lines 42 and 44, I changed the command:
imagecreatetruecolor
to
imagecreate
On line 46, I changed the command:
imagecopyresampled
to
imagecopyresized
It worked fine. I didn’t get errors […]