| n0fx |
|
|---|---|
|
I did reinstall, its working now, thank you :) actually I didnt expect its related reinstall :) Added 5 hours later: Some of plugins are not working with 0.9.19. I made list and I will update this list. I also wrote comment why its not working.
If you want to optimize images expect thumb images. you should add these codes:
$info = getimagesize($filename);
if ($info['mime'] == 'image/jpeg') {$image = imagecreatefromjpeg($filename);
imagejpeg($image, $filename, 85);
}
elseif ($info['mime'] == 'image/gif') {$image = imagecreatefromgif($filename);
imagegif($image, $filename, 85);
}
elseif ($info['mime'] == 'image/png') {$image = imagecreatefrompng($filename);
imagepng($image, $filename, 85);
}
Added 1 day later: Hi, I need to use </div> 1 time in the PAGE_ROW. How can i get data how many times loop in the PAGE_ROW like while $i variable ? I hope I could explain myself. I found {PAGE_ROW_NUM} Added 4 days later: how i can change pagination html tags ? https://www.ultima-strike.com
Bu gönderi n0fx tarafından düzenlendi (2016-11-05 00:59, 9 yıllar önce)
|