I don't mean to sound stupid here ,,, but ...
Additional step 1
================================================== =============
Addition for showing Statistics only for Admins and Moderators
================================================== =============
open statistik.php and find:
=============================
// ######################### CHECK PERMISSIONS ###########################
// uncomment the following 4 lines if you want provide statistics only for Admins and Moderators
// if (!($permissions['adminpermissions'] & CANCONTROLPANEL) AND !can_moderate())
// {
// print_no_permission();
// }
================================================== =================
uncomment the lines as written in the code above to look like:
================================================== =================
// ######################### CHECK PERMISSIONS ###########################
// uncomment the following 4 lines if you want provide statistics only for Admins and Moderators
if (!($permissions['adminpermissions'] & CANCONTROLPANEL) AND !can_moderate())
{
print_no_permission();
}
I don't understand step 1, what do you mean by uncomment?!
|