Posted on : 2020-06-11 05:21:50 View Type: public
thread-details
Admins can access all pages no matter which user level that page relates to. If you are having problem share your teamviwer logins i will check it for you.
When you want to make a page accessible for all type of users but logged in then you put this code in top of that page.
<?php
include('system_load.php');
//This loads system.
authenticate_user('all');
?>
When you want to show a page accessible only to admin users then use
<?php
include('system_load.php');
//This loads system.
authenticate_user('admin');
?>
When you want to a page only accessible to Subscriber User levels then you use this
<?php
include('system_load.php');
//This loads system.
authenticate_user('subscriber');
?>