2
我一直在四處尋找並試驗這個小時,沒有成功。vBulletin 4.x外部頁面登錄和變量
我試圖從外部頁面登錄到vBulletin。我設法讓這個工作。然而,我無法工作的是顯示用戶名和任何$ vbulletin變量。
我已經包括global.php chdir()論壇等等,但我不能讓它工作。
有誰知道如何去做這件事?
我一直在四處尋找並試驗這個小時,沒有成功。vBulletin 4.x外部頁面登錄和變量
我試圖從外部頁面登錄到vBulletin。我設法讓這個工作。然而,我無法工作的是顯示用戶名和任何$ vbulletin變量。
我已經包括global.php chdir()論壇等等,但我不能讓它工作。
有誰知道如何去做這件事?
這是我正在使用它的工作示例。它的工作正常。它在外部頁面上顯示用戶名和註銷按鈕。
我不知道爲什麼 - 投它。
<?php
$curdir = getcwd();
#Add your root dir below where it says "ADD ROOT" Example: /home/server/public_html/mainsite/forums
#Do not end with a "/" leave it open like above example.
chdir('ADD ROOT');
require_once('ADD ROOT/global.php');
chdir($curdir);
if ($vbulletin->userinfo['userid'] == 0) {
#Form Display Code, You can edit the way the Form is layed out here.
echo "<form id=\"login\" action=\"/forums/login.php?do=login\" method=\"post\" onsubmit=\"md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, 0)\">
<script type=\"text/javascript\" src=\"clientscript/vbulletin_md5.js?v=364\"></script>
<a href=\"/forums/register.php\">Register</a>
<label for=\"navbar_username\">Username</label>
<input type=\"text\" class=\"bginput\" style=\"font-size: 11px\" name=\"vb_login_username\" id=\"navbar_username\" size=\"10\" accesskey=\"u\" tabindex=\"101\" onfocus=\"if (this.value == 'User Name') this.value = '';\" />
<label for=\"navbar_password\">Password</label>
<input type=\"password\" class=\"bginput\" style=\"font-size: 11px\" name=\"vb_login_password\" id=\"navbar_password\" size=\"10\" tabindex=\"102\" />
<label for=\"cb_cookieuser_navbar\"><input type=\"checkbox\" name=\"cookieuser\" value=\"1\" tabindex=\"103\" id=\"cb_cookieuser_navbar\" accesskey=\"c\" />Remember Me?</label>
<input type=\"submit\" class=\"button\" value=\"Login\" tabindex=\"104\" title=\"Enter your username and password in the boxes provided to login, or click the 'register' button to create a profile for yourself.\" accesskey=\"s\" />
<input type=\"hidden\" name=\"s\" value=\"\" />
<input type=\"hidden\" name=\"do\" value=\"login\" />
<input type=\"hidden\" name=\"vb_login_md5password\" />
<input type=\"hidden\" name=\"vb_login_md5password_utf\" />
</form>";
#End Form Display Code
} else {
#Display after login completed
echo "Welcome Back, <b>".$vbulletin->userinfo['username']."</b>";
if ($vbulletin->userinfo['usergroupid'] == '6') {
echo " | <a href=\"/forums/member.php?1-".$vbulletin->userinfo['username']."\">My Profile</a>";
echo " | <a href=\"/forums/egncadmincp/index.php\">AdminCP</a>";
echo " | <a href=\"/forums/egncmodcp/index.php\">ModCP</a>";
}
}
?>