why login twice
why login twice
why do i have to login and then login again when i get to the forums? it just seems kinda pointless to me, but maybe rollie has some reason for it and yes i know theres an "automatically login" option but i spend alot of time on shared computers so i don't realistically have that option.
<img src='http://www.mysigspace.com/wrsig/22852977.jpg'>
The fix involves setting the phpBB cookie to be site-wide so that all pages receive the cookie. Then, you add the following code to your site-wide initialization script:
Optionally, add a function to determine if a user is logged in.
But Rollie already knew that. 
Code: Select all
// http://www.phpbb.com/kb/article.php?article_id=143
define('IN_PHPBB', true);
$phpbb_root_path = '/path/to/phpBB/';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
Code: Select all
function logged_in() {
global $userdata;
if($userdata['session_logged_in']) return true;
return false;
}

i hate to be picky
but could yall say that in normal english

<img src='http://www.mysigspace.com/wrsig/22852977.jpg'>
ahh thank you
as i am more computer litterate than most i don't quite get all the code stuff

<img src='http://www.mysigspace.com/wrsig/22852977.jpg'>
Hybuir wrote:We could fix it, but the pizza's here...
mmmmm... now I'm hungry.
<img src='http://www.mysigspace.com/11139.jpg'> <img src='http://www.mysigspace.com/32568.jpg'>
<img src='http://www.mysigspace.com/32825.jpg'> <img src='http://www.mysigspace.com/32566.jpg'>
<img src='http://www.mysigspace.com/32825.jpg'> <img src='http://www.mysigspace.com/32566.jpg'>