Quote:
Ruth, what doesn't work exactly?
|
Test 1
when i use that code without show_nopermission code, it only shows the login box in my index.php (non vB), when i try to login using the box, and it redirects me to the same page (index.php) it doesnt show the welcome screen, it shows the login box again (like if i'm not using cookies or not looged in)
Test 2
when i change number 0 to 1 in
Quote:
if ($bbuserinfo['userid']!=0) {
$username=$bbuserinfo['username'];
echo"Welcome Back, <b>$username</b>";
|
i get the welcome screen only "Welcome Back" and not $username
but when i logout and come back it doesnt show the login box at all.
Test 3
when i add this to the code
PHP Code:
if (!$bbuserinfo[userid] || $bbuserinfo[usergroupid]==3 || $bbuserinfo[usergroupid]==4) {
show_nopermission();
eval("dooutput(\"".gettemplate("error_wrongpassword")."\");");
}
i get error in show_nopermission(); line
Quote:
Make sure the script is in the same directory as your global.php file. This code works perfectly on my site
|
the path to global.php works fine, and didnt have problem with it, however it is not in the same directory as the global.php, because i am trying to put this code in every non-vB page to protect it.
Quote:
What version of PHP are you running?
|
PHP4 with Zend Optimizer
Quote:
Is the main index page of your site an HTML document on PHP?
|
it is *.php
thanks for your help