The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vBindex Details »» | |||||||||||||||||||||||||
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 . so i decided to write such a script myself... 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 |
#202
|
||||
|
||||
Quote:
Mike |
#203
|
||||
|
||||
Quote:
Though I haven't sucessfully installed this hack yet, I would probably check the index.php that you uploaded from this hack. Did you change the variables in the first few lines to match up with the forum id numbers? Quote:
I would check that first. Mike |
#204
|
|||
|
|||
Aha...Thanks, Mike! I think that should do the trick!
Best regards, H.Kim |
#205
|
||||
|
||||
Quote:
Aha....I figured it out finally. My cookies were messing with it because I used differant styles and didn't add all the new templates to the style that I was using. I just added them to the default template, not the templates for the style that I had chosen to view my board in. Okay.....works now....time to hack it up and add my own stuff. Mike |
#206
|
|||
|
|||
Dear NTLDR/Lee,
Thanks for the info. With risk of sounding somewhat lame, could you please give me some more specific information on how to implement this? E.g. 1. Do I have to rename the index.php to vbindex.php? 2. The new pages, do I create them within the vbulletin control panel? 3. How can a new template page look like? What do I have to include? Specific example would be great. Best regards, Quote:
|
#207
|
|||
|
|||
Well, it was a stupid request when you gave so clear information at the first place. I found it out by myself after a few minutes.
Thanks anyway! |
#208
|
||||
|
||||
Quote:
No problem hkim, if you run into problems let me know, I wouldn't say your question was lame, everyone has different abilities here and I'm quite happy to help anyone who has any problems with anything I've produced. I hope everything works fine when you impliment the changes. |
#209
|
|||
|
|||
Nice work here, this is what I was looking for and it work really great! I'Ve first setup vbhome light but this one fits my needs a lot more as I'm not a programmer and vbhome is almost impossible for me to custumize the way I want.
Got 2 more things I need to ask: 1- Is there a way to use the usergroups permissions of the forum for the threads display? 2- Is is complicated to add a block with the latest 5 thread titles of a specific forum ? (with links to the thread) Hope those 2 requests will not be too complicated to do... Thanks a lot! |
#210
|
||||
|
||||
1- you mean the threads display of the latest threads? in v1.3 of vbindex you can only see these threads on the index-site which you have permission to see.
2- nope, no problem . add anywhere in the index-file (but before the output of the home-template)! PHP Code:
|
#211
|
|||
|
|||
Thanks a lot, I think something must be messed up then because threads of private forums are seen by everyone in the latest threads column. Not the threads themselves but the titles and it can reveal some sensitive content so...
Where should I look to try finxing this out? BTW thanks a lot for your fast response, very kind from you For the code above, I've tried it without success. I forget something maybe? Code:
$forumid=6; $limit=5; $query = $DB_site->query("SELECT threadid,title FROM thread WHERE visible=1 AND forumid='$forumid' order by lastpost desc limit $limit"); while ($last5array = $DB_site->fetch_array($query)) { $threadid=$last5array[threadid]; $threadtitle=$last5array[title]; $last5.='<a href=\"showthread.php?s=$session[sessionhash]&threadid=$threadid\">$threadtitle</a><br>'; } Grrr, I'm not a coder sorry! lol |
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|