Quote:
Originally Posted by morphistation
For those that where looking for the script to redirect you to the forums after login:
PHP Code:
<?php
chdir("forum/");
require('./global.php');
chdir("../");
if ($bbuserinfo['userid']!=0) {
$username=$bbuserinfo['username'];
header("Location: http://www.exmaple.com/forum/index.php");
} else {
?>
<html>
<head>
</head>
<body>
<form action='/forum/login.php' method='post' onsubmit='md5hash(vb_login_password,vb_login_md5password)'>
<script type='text/javascript' src='/forum/clientscript/vbulletin_md5.js'></script>
<span class="sectionheader">Username:</span>
<input type='text' class='button' name='vb_login_username' id='navbar_username' size='15' accesskey='u' tabindex='1' value='' onfocus='if (this.value == 'username') this.value = '';' /><br>
<span class="sectionheader">Password: </span>
<input type='password' class='button' name='vb_login_password' size='15' accesskey='p' tabindex='2' /><br>
<input type='checkbox' name='cookieuser' value='1' tabindex='3' id='cb_cookieuser_navbar' accesskey='c' checked='checked' /><span class='sectionheader'>Remember Me</span><br>
<input name="submit" type='submit' class='button' accesskey='s' tabindex='4' title='Log In' value='Log In' />
<input type='hidden' name='do' value='login' />
<input type='hidden' name='forceredirect' value='1' />
<input type='hidden' name='vb_login_md5password' />
<input type="hidden" name="url" value="http://localhost/vb2"/>
</form>
<?
}
?>
</body>
</html>
|
only add
<input type='hidden' name='do' value='login' />
<input type='hidden' name='forceredirect' value='1' />
<input type='hidden' name='vb_login_md5password' />
<input type="hidden" name="url" value="http://localhost/vb2"/>