Hi,
I have problem two problems:
1) in backend with user's permissions..
I give permissions (to a users group) for delete items but they cannot do this.
The error is "You don't have enough rights to delete this item."
2) Another problem is with FlexiContent module..
For example the url for the image for one item is:
Code:
/components/com_flexicontent/librairies/phpthumb/phpThumb.php?src=/components/com_flexicontent/uploads/image.jpg&w=156&h=174&aoe=1&q=95
This url is working good:
Code:
/components/com_flexicontent/uploads/image.jpg
but the image cannot be found..
I use this in my template:
Code:
<?php if ($mod_use_image_feat && $item->image) : ?>
<a href="<?php echo $item->link; ?>">
<img <?php echo $force_height_feat." ".$force_width_feat; ?> src="<?php echo $item->image; ?>" alt="<?php echo flexicontent_html::striptagsandcut($item->fulltitle, 60); ?>" />
<?php endif; ?>
There was something wrong in my code?
[I use Joomla 1.7 and flexicontent preRC3 r1151]