You are correct.
They are mistakenly rewritten as server paths.
I will correct them and they will be part of the following Nightly Build.
If you cannot wait that long, here is the trick:
- Open up
com_rsgallery2/templates/semantic/display.class.php- Find lines 298 and 299, they look like this:
$doc->addStyleSheet(JPATH_BASE."/components/com_rsgallery2/js_highslide/highslide.css");
$doc->addScript(JPATH_BASE."/components/com_rsgallery2/js_highslide/highslide.js");
- Replace that with this:
$doc->addStyleSheet($mosConfig_live_site."/components/com_rsgallery2/js_highslide/highslide.css");
$doc->addScript($mosConfig_live_site."/components/com_rsgallery2/js_highslide/highslide.js");
(
just replace JPATH_BASE with $mosConfig_live_site)
That should do the trick.
I don't see however why this would affect commenting, so perhaps that is another error.
Let me know if that is also fixed with these changes.
Cheers,