Hello.
The images are stored in directories uploads/sexy/original and thumbnails but not displayed. It generates the following links:
http://mydomain.de/modules/sexy/image,resample,88d08d30c00befc2d548842d1283641e,gallery_thumb,70,6.gifhttp://mydomain.de/modules/sexy/image,default,thumbnail,8a65d0b1dc91f0d4b3e21cbb09196505,1.jpgWhat do I need to make the images appear?
Best regards, Maffy
Sexy 1.34 and 1.35 (same error)
Xoops 2.5.1
File sexy.forms.php:
function sexyPicturesProfile($pid) {
$pictures_handler =& xoops_getmodulehandler('pictures', 'sexy');
$criteria = new Criteria('pid', $pid);
if ($ttl = $pictures_handler->getCount($criteria)) {
$pictures = $pictures_handler->getObjects($criteria, true);
foreach($pictures as $id => $picture) {
$ii++;
$ret['images'][$ii]['id'] = md5($id);
$ret['images'][$ii]['thumbnail'] = XOOPS_URL.'/modules/sexy/image,resample,'.md5(XOOPS_LICENSE_KEY.date('Ymdhi')).',gallery_thumb,70,'.$id.'.'.$picture->getVar('extension');
$ret['images'][$ii]['orginal'] = XOOPS_URL.'/modules/sexy/image,resample,'.md5(XOOPS_LICENSE_KEY.date('Ymdhi')).',gallery_large,500,'.$id.'.'.$picture->getVar('extension');
$ret['images'][$ii]['download'] = XOOPS_URL.'/modules/sexy/image,orginal,'.md5(XOOPS_LICENSE_KEY.date('Ymdhi')).','.$id.'.'.$picture->getVar('extension');
$ret['images'][$ii]['title'] = $picture->getVar('title');
$ret['images'][$ii]['description'] = htmlspecialchars_decode($picture->getVar('description'));
}
}
return $ret;
}