evet yerinde, dosya izninide ayarladım ama değişiklik olmadı sanırım..
modüle ait php dosyasında şöyle bir kod yapısı var;
//set active menu link
$urlBase = JURI::base();
$sliderID = $params->get("sliderid");
$document = JFactory::getDocument();
$include_jquery = $params->get("include_jquery","true");
if($include_jquery == "true"){
if(UniteFunctionJoomlaRev::isJqueryIncluded() == false){
$jsPrefix = "http";
if(JURI::getInstance()->isSSL() == true)
$jsPrefix = "https";
$document->addScript("http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js?app=revolution_slider");
}
}
$loadType = $params->get("js_load_type","head");
$isJSInBody = ($loadType == "body")?true:false;
$noConflictMode = ($params->get("no_conflict_mode") == "true")?true:false;
HelperUniteRev::outputSlider($sliderID,$isJSInBody,$noConflictMode);