Hello,
There is an interesting problem with installation of com_rsgallery2_legacy_1.14.2 on Joomla 1.0.13
The following construct:
JRoute::_("index.php?option=com_rsgallery2&page=inline&id=".$row->id);
returns
http://www.mysite.eu/index.php/index.php?option=com_rsgallery2&Itemid=90&page=inline&gid=1&limit=1&limitstart=2
Notice double index.php resulting in not working links.
I spend 3 hours digging in your code and found that problem rised in
\components\com_rsgallery2\lib\j15backport\includes\router.php line 104
$uri->setPath(JURI::base(true).'/'.$route);
$route is already equal to 'index.php' and JURI::base(true) returns '/index.php'
I think this is not connected with SEF (same when on or off). So I copmmented the line off
Could you explain me what was the purpose of this line, and why it's not working.
Many thanks.