The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vBindex v3.0.0 RC5 Details »» | |||||||||||||||||||||||||
[high]vBindex v3.0.0 RC5[/high]
I happy to announce the fith release of vBindex for vBulletin 3 here at vBulletin.org and also the first Offical vB3 Hack here . This is the 9th release of vBindex for vB3 and there are few known problems currently. This release works with vB 3.0.0 Gamma, vB 3.0.0 RC1, vB 3.0.0 RC2, vB 3.0.0 RC3, vB 3.0.0 RC4 and vB 3.0.0. [high]Features[/high] The following are the features that are presently avalible in vBindex, those marked [high]*NEW*[/high] have been updated since vBindex 2.1 and those marked [high]*NEW*[/high] have been updated since Pre-RC2 was released and those marked [high]*NEW*[/high] have been added since RC2 and those marked [high]*NEW*[/high] have been added since RC3.
[high]Installation/Upgrade[/high] See the README_1ST.htm file included in the zip for more detailed install instructions and details of where to upload the files. Then point your browser to http://www.mydomain.com/forums/admin/vbiupgrade.php. Changes Since vBindex 3.0.0 RC4 vBindex 3.0.0 RC4 was released about a week ago, RC5 has just a few changes and is expected to be the last release before vBindex 3.0.0. Changes include fixing of an XHTML issue in the custom block templates; admin help system added; ability to restrict the length of shouts. [high]Support[/high] Support will be given here in this thread ONLY. [high]Support *WILL NOT* be given via PM/Email/IM.[/high] [high]************************************************[/high] vBindex is Copyright MMII - MMIV Winter Systems, you may not distribute in part or whole any portion of the source code (apart from in this thread) or any file included in the zip (Unless you are posting a language translation of vbindex_phrases.xml in this thread). Portions Copyright MM - MMIV Jelsoft Enterprises Limited. Both the Jelsoft vBulletin and the Winter Systems vBindex Copyright notice in the footer must stay in place for any page powered by vBindex. [high]************************************************[/high] [high]vBindex is *FREE*, please have the courtesy click install if you use this hack, thank you[/high] RC3 Build 7: 719 RC3 Build 8: 377 RC3 Build 10: 486 RC4 Build 5: 107 RC5 Build 5: 87 Supporters / CoAuthors Show Your Support
|
Comments |
#2362
|
|||
|
|||
this hack is supposed to be dead for years, as the project is postponed and outdated
|
#2363
|
|||
|
|||
Quote:
|
#2364
|
|||
|
|||
nexialys could you suggest something different thats still as easy to setup for a portal
|
#2365
|
||||
|
||||
Quote:
|
#2366
|
||||
|
||||
Has anyone coded a login box for this?
|
#2367
|
|||
|
|||
Try looking at the template in vBadvaced for the log-in box and see if it can be carried across.
Just open up the template.xml file with notepad and find the code there for the log-in box. I'll take a look in a minute and see if it works |
#2368
|
|||
|
|||
You can pretty much copy the login code from the navbar, with a couple of changes - it's a while since I did it, so I'll just paste what I use. I have it change to a welcome panel when the user is logged in.
The html will be slightly different, and it's lacking any indentation, but you can get the idea... screenshot(s) below. HTML Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" width="100%"><thead><tr><td class="tcat" style="text-align: center"><strong><if condition="$showmemberwelcome">Welcome, $bbuserinfo[musername]<else />Log In</if></strong></td></tr></thead> <tbody><tr><td class="alt1"> <div class="smallfont"> <if condition="$showmemberwelcome"> <script type="text/javascript"> <!-- function log_out() { ht = document.getElementsByTagName("html"); ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)"; if (confirm('$vbphrase[sure_you_want_to_log_out]')) { return true; } else { ht[0].style.filter = ""; return false; } } //--> </script> Last Visit: $pmbox[lastvisitdate] at <span class="time">$pmbox[lastvisittime]</span> <br /><phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl]">$vbphrase[private_messages_nav]</phrase> <a href="/forum/search.php?$session[sessionurl]do=getnew">New Posts</a>: $home[newposts] Posts in $home[newthreads] Threads. <br /><a href="/forum/login.php?$session[sessionurl]do=logout&u=$bbuserinfo[userid]" onclick="return log_out()" title="Log Out">Log Out</a> </div></td></tr> <else /> <div align="center"> <form action="/forum/login.php" method="post" onsubmit="md5hash(vb_login_password,vb_login_md5password,vb_login_md5password_utf)"> <script type="text/javascript" src="/forum/clientscript/vbulletin_md5.js"></script> <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0"> <tr> <td align="right" class="smallfont"><strong>$vbphrase[username]: </strong></td> <td align="left"><input type="text" class="button" name="vb_login_username" id="navbar_username" size="12" accesskey="u" tabindex="1" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td></tr> <tr><td align="right" class="smallfont"><strong>$vbphrase[password]: </strong></td><td align="left"><input type="password" class="button" name="vb_login_password" size="12" accesskey="p" tabindex="2" /></td></tr> <tr><td align="center" colspan="2"> <table><tr><td> <input type="checkbox" name="cookieuser" value="1" tabindex="3" id="cb_cookieuser_navbar" accesskey="c" checked="checked" /></td><td class="smallfont"><label for="cb_cookieuser_navbar">$vbphrase[remember_me]</label></td></tr></table> <input type="submit" class="button" value="$vbphrase[log_in]" tabindex="4" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td></tr></table> <input type="hidden" name="s" value="$session[sessionhash]" /> <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="vb_login_md5password_utf" /> </form></div></div></td></tr><tr><td class="alt2" style="text-align:center; padding: 10px 0 10px 0;"><a href="/forum/register.php?$session[sessionurl]"><strong>Register</strong></a></td></tr> </if> </tbody></table><br /> |
#2369
|
|||
|
|||
Quote:
|
#2370
|
|||
|
|||
Indentation.
|
#2371
|
||||
|
||||
Thanks!
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|