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 |
#2357
|
|||
|
|||
also try this if your vbindex.php file is in your forums folder. Which is were I put mine.
define('CHDIR_PATH', '/home/password/public_html/forum'); The "password" bit is the password you use to log-on to your servers CP Panel were you create a database and have your CP Tools The "forum" bit is the name of your vbulletin folder than contains all the forum files. ----------------------------- If you store the vbindex and vbconfig file ikn your root directory, try this. define('CHDIR_PATH', '/home/password/public_html'); |
#2358
|
|||
|
|||
no such luck guys.... :ermm:
i tried several different combinations but no such luck why would it work so well with 3.0.7 but as soon as i upgraded it became an issue |
#2359
|
|||
|
|||
Quote:
Are you sure you not messed to upgrade up or something, all though that should'nt really effect the error your getting with the vbconfig file. Have you not thought about creating a php script to get your server path? |
#2360
|
|||
|
|||
Here are a couple of new blocks that managed to create from bits if information put together from various sites around the internet. (please note these were coded from scratch by myself). They were just put together to suit vBindex.
Google Block: Just replace all you code in your block with this code Code:
<table cellpadding="0" cellspacing="0" border="0" class="tborder" width="100%"> <tr> <td> <table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%"> <thead> <tr> <td class="tcat" style="text-align: center"> <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('vbindex_customblock$box')"><img id="collapseimg_vbindex_customblock$box" src="$stylevar[imgdir_button]/collapse_tcat$collapseimg_vbindex_customblock.gif" alt="" border="0" /></a> <strong>Google Search</strong> </td> </tr> </thead> <tbody id="collapseobj_vbindex_customblock$box" style="$collapseobj_vbindex_customblock"> <tr> <td class="alt1"> <div class="smallfont"><center><form method="get" action="http://www.google.com/search" target="_blank"> <input type="text" name="q" size="16" maxlength="255" value="" /> <input type="submit" value="Search" /> <br /> </form></center></div> </td> </tr> </tbody> </table> </td> </tr> </table> <br /> Code:
<table cellpadding="0" cellspacing="0" border="0" class="tborder" width="100%"> <tr> <td> <table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%"> <thead> <tr> <td class="tcat" style="text-align: center"> <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('vbindex_customblock$box')"><img id="collapseimg_vbindex_customblock$box" src="$stylevar[imgdir_button]/collapse_tcat$collapseimg_vbindex_customblock.gif" alt="" border="0" /></a> <strong>Clock</strong> </td> </tr> </thead> <tbody id="collapseobj_vbindex_customblock$box" style="$collapseobj_vbindex_customblock"> <tr> <td class="alt1"> <div class="smallfont"><html> <head> <SCRIPT LANGUAGE="JAVASCRIPT" TYPE="TEXT/JAVASCRIPT"> <!-- Hide script from old browsers function showMilitaryTime() { if (document.theForm.showMilitary[0].checked) { return true } return false } function showTheHours(theHour) { if (showMilitaryTime() || (theHour > 0 && theHour < 13)) { return (theHour) } if (theHour == 0) { return (12) } return (theHour-12) } function showZeroFilled(inValue) { if (inValue > 9) { return ":" + inValue } return ":0" + inValue } function showAmPm() { if (showMilitaryTime()) { return ("") } if (now.getHours() < 12) { return (" am") } return (" pm") } function showTheTime() { now = new Date document.theForm.showTime.value = showTheHours(now.getHours()) + showZeroFilled(now.getMinutes()) + showZeroFilled(now.getSeconds()) + showAmPm() setTimeout("showTheTime()",1000) } // End hiding script from old browsers --> </SCRIPT> </HEAD> <BODY BGCOLOR="WHITE" onLoad="showTheTime()"> <DIV ALIGN="CENTER"> <FORM NAME="theForm"> <INPUT TYPE="TEXT" NAME="showTime" SIZE="15"><BR><BR> Display Military Time <INPUT TYPE="RADIO" NAME="showMilitary" CHECKED>Yes <input type="radio" name="showMilitary">No </form> </div> </body> </html></div> </td> </tr> </tbody> </table> </td> </tr> </table> <br /> Code:
<table cellpadding="0" cellspacing="0" border="0" class="tborder" width="100%"> <tr> <td> <table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%"> <thead> <tr> <td class="tcat" style="text-align: center"> <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('vbindex_customblock$box')"><img id="collapseimg_vbindex_customblock$box" src="$stylevar[imgdir_button]/collapse_tcat$collapseimg_vbindex_customblock.gif" alt="" border="0" /></a> <strong>Bookmark Site</strong> </td> </tr> </thead> <tbody id="collapseobj_vbindex_customblock$box" style="$collapseobj_vbindex_customblock"> <tr> <td class="alt1"> <div class="smallfont"><center> <a href="#" onclick="if (window.sidebar) { window.sidebar.addPanel('$vboptions[hometitle]', '$vboptions[homeurl]',''); } else if( document.all ) { window.external.AddFavorite( '$vboptions[homeurl]', '$vboptions[hometitle]'); } else if( window.opera && window.print ) { return true; }">Add To Favourites</a> </center></div> </td> </tr> </tbody> </table> </td> </tr> </table> <br /> Code:
<table cellpadding="0" cellspacing="0" border="0" class="tborder" width="100%"> <tr> <td> <table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%"> <thead> <tr> <td class="tcat" style="text-align: center"> <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('vbindex_customblock$box')"><img id="collapseimg_vbindex_customblock$box" src="$stylevar[imgdir_button]/collapse_tcat$collapseimg_vbindex_customblock.gif" alt="" border="0" /></a> <strong>Random Images</strong> </td> </tr> </thead> <tbody id="collapseobj_vbindex_customblock$box" style="$collapseobj_vbindex_customblock"> <tr> <td class="alt1"> <div class="smallfont"><center> <!-- Begin custom code --> <script language="Javascript"><!-- function image() { }; image = new image(); number = 0; // imageArray image[number++] = "<img src='images/random/picture01.jpg' width='137' height='137' alt='Picture 01' border='1'><br><br>Picture 01" image[number++] = "<img src='images/random/picture02.jpg' width='137' height='137' alt='Picture 02' border='1'><br><br>Picture 02" image[number++] = "<img src='images/random/picture03.jpg' width='137' height='137' alt='Picture 03' border='1'><br><br>Picture 03" // Carry on adding images - as many as you want increment = Math.floor(Math.random() * number); document.write(image[increment]); //--> </script> <!-- End custom code --></center></div> </td> </tr> </tbody> </table> </td> </tr> </table> <br /> --------------------------------------- If anybody else has some custom blocks they have created themselves for vBIndex I would be gratefull if you can post your codes here so were check your blocks out as well. And to help build a list up in this thread becuase there is a serious lack of Block codes for this portal. Thanks! |
#2361
|
|||
|
|||
I can't find this mod/hack. This thread starts with post 2. Has it been deleted or moved? Please help
|
#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:
|