Can I configure this so that the user has to be logged in to see this? I have pages with content I don't want readily available to guests.
I'm using 3.7.0 and I want 'ONLY' registered users to see my vbpowered pages. I don't want them available to unregistered guests.
I checked
herebut what template or folder page gets edited?
--------------- Added [DATE]1213282180[/DATE] at [TIME]1213282180[/TIME] ---------------
Quote:
Originally Posted by edgecutioner
thanks for the code guys!
EDIT: Works perfectly!
|
Here is what mine looks like. I can't get the permissions to work.
Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'downloads'); // change this depending on your filename
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array(
);
// get special data templates from the datastore
$specialtemplates = array(
);
// pre-cache templates used by all actions
$globaltemplates = array(
'downloads',
);
// pre-cache templates used by specific actions
$actiontemplates = array(
);
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
if ($vbulletin->userinfo->userid==0)
{
print_no_permission();
}
$navbits = array();
$navbits[$parent] = 'downloads';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('downloads') . '");');
?>