The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
![]() |
|||||||||||||||||||||||||
Latest Version: 1.3
This hack is not very special for me. I just wanted to create a mainpage on which you can see.. (as a member) everything what u like to see. The idea of the script is similar to the vbHome of nakkid and also a little bit to the vBPortal. I tested all of them.. but i was looking for something better ![]() Features:
![]() Demo-Sites:
Screenshot 2: http://partylife.ch/misc/vbindex2.jpg // the nav on the right side. Screenshot 3: http://partylife.ch/misc/vbindex3.jpg // or if u like 2 navs, left & right Screenshot 4: http://partylife.ch/misc/vbindex4.jpg // another screen Screenshot 5: http://partylife.ch/misc/vbindex5.jpg // buddies etc. Installation All instructions can you find in the readme.english/german.txt Download vBindex 1.3: http://partylife.ch/misc/vBindex1.3.zip vBindex with Link-DB Script (Link-Script by The_Sisko; Integration of the Link-Script in vBindex by KarateKid): http://www.kampfkunst-board.de/sonst...tabasehack.rar Credits Newscode part from vBHome by nakkid. Onlinetodaycode part from Online Today Hack by Mystics. Pollcode part from vBPortal by wajones. Note! I'd really like to get every feedback you guys can give me. Also post bugreports and suggestions to improve this script. If you have installed this hack, pls click on the install button to receive updates thru email. Thank you ![]() Show Your Support
|
Comments |
#392
|
|||
|
|||
![]() Quote:
chdir("/home/yoursite/forum"); above "require('./global.php');" in vbindex index.php file.. then add "/forum" on all the url's in the vbindex templates ![]() ps: sorry for my bad english.. |
#393
|
||||
|
||||
![]()
Hi, thank you for this, it works fantasticly (i just put in chdir("./forum"); rather than the whole path)
I do have another problem, voting on the poll does not work, I get the following error message: Quote:
Cheers again. |
#394
|
||||
|
||||
![]() Quote:
From memory you should have this line in the home_poll template: Code:
<input type="hidden" name="s" value="$session[sessionhash]"> Code:
<input type="hidden" name="s" value="$session[dbsessionhash]"> |
#395
|
||||
|
||||
![]() Quote:
|
#396
|
||||
|
||||
![]()
Thank you for the advice, i'll be looking foward to any new releases of this hack
![]() |
#397
|
||||
|
||||
![]()
No problem
![]() I've contacted el3m3nt regarding a new (or updated) realease of this hack and am wating to hear back from him. |
#398
|
|||
|
|||
![]()
NTLDR: I used the code from the "welcome panel" to.. but my index.php is not in the /forum directory..
so the avatar image gets broken, pointing to www.domain.com/avatar.php .. the correct url would be www.domain.com/forum/avatar.php .. but I cant find the <a> to fix it ![]() |
#399
|
||||
|
||||
![]()
I found the only way to solve this problem was to edit the {imagesfolder} patch in the replacements section of the admin.
Try that ![]() |
#400
|
|||
|
|||
![]()
huh? /vbimages?
|
#401
|
|||
|
|||
![]()
I highly recommend everybody using this hack to install also "Thread Preview Hack". Some level of data redundancy is the only way to go with this kind of hack. Then you can remove extra queries in loop (putting query into a loop is always the worst solution and should be avoided).
For those who have installed this hack and have also "firstpostid" column in thread table here is code you can use for pulling news: Code:
// news by nakkid (modified) // ------------------------- $newsquery=$DB_site->query("SELECT thread.threadid,thread.title,thread.dateline,thread.postusername,thread.postuserid, thread.replycount,thread.iconid,post.pagetext,icon.title AS icontitle,icon.iconpath FROM thread LEFT JOIN post ON thread.firstpostid = post.postid LEFT JOIN icon ON icon.iconid = post.iconid WHERE forumid='$newsforum' ORDER BY thread.dateline DESC LIMIT $newsposts"); while ($news=$DB_site->fetch_array($newsquery)) { $newsthreadid=$news[threadid]; $newstitle=$news[title]; $newstime=vbdate($timeformat,$news[dateline]); $newsdate=vbdate($dateformat,$news[dateline]); $newsusername=$news[postusername]; $newsuserid=$news[postuserid]; $comments=$news[replycount]; $newstext=bbcodeparse($news[pagetext],$newsforum,1); $newstext=str_replace("<br />","",$newstext); if ($news[iconid]=='0') { $news[icontitle]=""; $news[iconpath]="https://vborg.vbsupport.ru/images/icons/icon.gif"; } eval("\$newsbits .= \"".gettemplate('home_newsbit')."\";"); } eval("\$news = \"".gettemplate('home_news')."\";"); Code:
$templatesused='error_nopermission,home,home_buddy1,home_buddy2,home_footer,home_header,home_headinclude,home_left'; $templatesused.=',home_login,home_logout,home_news,home_newsbit,home_nothreads,home_poll,home_pollresult,home_right'; $templatesused.=',home_threadbit,home_threads,forumhome_loggedinuser,forumhome_loggedinusers,maxloggedin'; ![]() |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|