I have a fake member for that is the security guard of the site, that is what the members think! lol
But how do I make it so he is on 24/7 and never logs out?
Thanks
But how do I make it so he is on 24/7 and never logs out?
Thanks
This section is an archive with no posting allowed. The software represented in this forum is no longer supported or updated. If you need help upgrading to a newer version of vBulletin please open a support ticket. You can also post in the section supporting the upgrade version you're planning to use.
We are sorry for any inconvenience this may cause.
Welcome to the vBulletin support forums! In our community forums you can receive professional support and assistance with any issues you might have with your vBulletin Products.
Useful Links for Guests:
If you are having problems posting in the relevant areas for your software, please see this topic.
<if condition="(++$loggedinusercount!=1)||($bbuserinfo['userid']==0)"><if condition="!$alwaysactiveadded&&($loggedin['username']>='Max'?$alwaysactiveadded=1:0)"><a href="member.php?$session[sessionurl]u=1234">Max</a><if condition="$loggedin['username']!='Max'">, </if></if></if><if condition="$loggedin['username']!='Max'"><a href="member.php?$session[sessionurl]u=$loggedin[userid]">$loggedin[musername]</a>$loggedin[invisiblemark]$loggedin[buddymark]</if>
<?php
$fp = fsockopen ('www.yourwebsite.com', 80, $errno, $errstr, 30); // live forum url
$header = "POST /forum/login.php HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$postdata .= "$do=login";
$postdata .= "$username=botname"; // replace botname with your username
$postdata .= "$password=botpass"; // replace botpass with your password
$header .= "Content-Length: " . strlen($postdata) . "\r\n\r\n";
fputs ($fp, $header . $req);
fclose ($fp);
?>
<?php
$fp = fsockopen ('www.yourwebsite.com', 80, $errno, $errstr, 30); // live forum url
$header = "POST /forum/login.php HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$postdata .= "$do=login";
$postdata .= "$username=botname"; // replace botname with your username
$postdata .= "$password=botpass"; // replace botpass with your password
$header .= "Content-Length: " . strlen($postdata) . "\r\n\r\n";
fputs ($fp, $header . $req);
fclose ($fp);
?>
Comment