1
I have created an html file using the instructions
HERE but when I click the link in Anonymous mode, it comes up with "Sorry, you don't have permission to vew this area."
How can I make it so this is viewable by anonymous users? My code is below:
index.php file:
Quote:
include("../../mainfile.php");
include(XOOPS_ROOT_PATH."/header.php");
$xoopsOption['show_rblock'] = 1;
?>
The only personal information that is required to register and create your account is your username, email address and password.
include(XOOPS_ROOT_PATH."/footer.php");
?>
and my xoops_version.php file:
Quote:
$modversion['name'] = "privacy";
$modversion['version'] = 1.01;
$modversion['description'] = "Privacy";
$modversion['author'] = "";
$modversion['credits'] = "";
$modversion['help'] = "";
$modversion['license'] = "GPL see LICENSE";
$modversion['official'] = 0;
$modversion['image'] = "whatever.gif";
$modversion['dirname'] = "privacy"; server
?>
There isn't a listing of "Privacy" in the Groups permissions area to put a check next to.
Any idea how to correct this?
Thanks.