5
I'm having the same problem as mentioned above.
The module works great and it's really something i would like to use on the site, but my visitors can't select any content (movie/audiofile).
I tried to figure out what is causing this problem by checking every php file in the module for permission settings.
The only file i found is admin_header.php.
###########################################################
if ( $xoopsUser ) {
$xoopsModule = XoopsModule::getByDirname("mediashow");
if ( !$xoopsUser->isAdmin($xoopsModule->mid()) ) {
redirect_header($xoopsConfig['xoops_url']." / ",3,_NOPERM);
exit();
}
} else {
redirect_header($xoopsConfig['xoops_url']." / ",3,_NOPERM);
exit();
}
if ( file_exists("../language/".$xoopsConfig['language']."/admin.php") ) {
include_once("../language/".$xoopsConfig['language']."/admin.php");
} else {
include_once("../language/english/admin.php");
}
?>
###########################################################
When i change this nothing changes in the module.
Can anybody help me with this problem?
Kind regards
Mozes