vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   vBindex v2.1 (https://vborg.vbsupport.ru/showthread.php?t=41916)

NTLDR 12-10-2003 02:23 PM

Quote:

Originally Posted by Asso
vbindex 3 works with gamma?

See Core Forums for details on using vBindex 3 with vB3 Gamma.

NTLDR 12-10-2003 02:24 PM

Quote:

Originally Posted by wardsweb
I login via the vBindex, get the thank you for loggin in page and then it takes me to the regular forums, where it shows me logged in. Now if I go back to the vBindex page, it shows me as guest . Any clue? some cookie not working? got a bad link somewhere?

Make sure your cookie path and domain are set correctly in the ACP.

kho_vi_yeu 12-22-2003 01:35 PM

Quote:

Originally Posted by NTLDR
[high]vBindex 3.0.0 RC1 Release Information[/high]

I'm pleased to announce RC1 of vBindex 3.0.0. RC1 brings in a few new features that I've been working on since the start of vBindex 3.0.0 which I'm now pretty confident work as expected. Here are the major changes since Beta 3:
  • Callendar, with links to events;
  • Poll, with the option to select a random poll from a given set of forums;
  • Optimised code;
  • Only 5 queries with everything switched off, and still only 12 with all options turned on, that 6 queries less than our nearest competitor!
    Note, you should apply this fix by Kier to save 2 queries for non Super Moderators.
  • Fully phrased, both the vBindex Options and the front end are 100% phrased;
  • Enhanced news posts and latest threads;
  • Option to show disabled postshout area to unregistred users;
  • Todays birthdays;
  • Custom blocks, add unlimited custom side blocks and control them all from the ACP;
  • View all shouts, a full page shoutbox built it;

Visit Core Forums to obtain your copy of RC1 and see a full working demo :D

Code:

To download you will need to enter the following forum password when you follow the download forum link at Core Forums:
1065471230

[high]Support[/high]

Due to the restrictions on discussing vB3 hacks and Addons here at vB.org, vBindex 3.0.0 Support will only be given over at Core Forums when you have PM'ed either myself or hellsatan your Core Forums username to us via the vB.org PM System.

Why i can't download vbindex 3.0.0 RC2 in core forum. please help me so i can dowload RC2 for vbb 3.0.0 Gamma

MindTrix 12-22-2003 04:23 PM

Sorry mate but isnt nothing anyone here can do about it :) As said at the bottom of that part you posted, it says support will only be given over at core forums.

NTLDR 12-22-2003 10:23 PM

Quote:

Originally Posted by kho_vi_yeu
Why i can't download vbindex 3.0.0 RC2 in core forum. please help me so i can dowload RC2 for vB 3.0.0 Gamma

The above clearly refers to RC1 and not Pre-RC2, details of how to obtain Pre-RC2 (For vB3 Gamma) can be found in the announcement at Core Forums.

Harlequin 12-31-2003 02:38 AM

I've been curious for awhile on how to have a simple column to the left or right on vBindex displaying just the titles from a forum (say, a "Review" forum) and using it on the main page to attract attention to that particular forum. I'm not sure if this has been posted here before, but here's nothing.

It's more or less the news code already embedded in NTLDR's code from Teck, but I'll go ahead and post up how I did it anyway for those of you that were curious: [instead of having to install a large, bulky article archive]



In vbindex.php, find

PHP Code:

// news (based on code by TECK)
// ------------------------- 


Above it, add:


PHP Code:

$articleforum "2";
$articleposts "10";
$maxarticletitlechars "22";
// ARTICLE (based on code by TECK/NEWS/VBINDEX)
// -------------------------

$articlequery=$articlequery=$DB_site->query("SELECT thread.*,threadpost.pagetext AS pagetext FROM thread LEFT JOIN post AS threadpost ON (thread.tpostid = threadpost.postid) WHERE forumid = '$articleforum' ORDER BY thread.dateline DESC LIMIT $articleposts");
while (
$article=$DB_site->fetch_array($articlequery)) {
  
$articlethreadid=$article[threadid];
  
$articleusername=$article[postusername];
  
$articleuserid=$article[postuserid];
  
$comments=$article[replycount];
  if (
$maxarticletitlechars!=0) {
     if (
strlen($article[title]) > $maxarticletitlechars) {
        
$article[title] = substr($article[title],0,$maxarticletitlechars);
        
$article[title] .= "..";
     }  
  }
$articletitle="<a href=\"$bburl/showthread.php?threadid=$articlethreadid\">$article[title]</a>";
  
// end avatar
  
eval("\$articlebits .= \"".gettemplate('home_articlebit')."\";");
}
eval(
"\$article = \"".gettemplate('home_article')."\";");

// -------------------------
// end article 


Set $articleforum as the forumID of the particular forum you're after for topics.
Set $articleposts as how many topics you'd like to display
Set $maxarticletitlechars to how many characters you'd like the subject to display [useful if you're in tight table quarters and want to make your topic look clean].


Add two templates, home_article and home_articlebit:


In home_article:

PHP Code:

<table cellpadding="0" cellspacing="0" width="100%" border="0" align="center">
<
tr>
<
td align="left"><img src="images/left2.gif"></td>
<
td align="center" width="100%" background="images/catbg2.gif" valign="bottom"><b><smallfont>reviews</smallfont></b></td>
<
td align="right"><img src="images/right2.gif"></td>
</
tr></table>
<
table cellpadding="0" cellspacing="0" border="0" bgcolor="{tablebordercolor}" width="100%">
<
tr>
    <
td>
     <
table cellpadding="4" cellspacing="1" border="0" width="100%"><tr><td bgcolor="{firstaltcolor}" align="left">
$articlebits     
</td></tr>
</
table>
</
tr>
</
table

Just noticed in the template above -- my layout uses the left/right/background table header graphics. You may have to adjust this to match your layout.


And add the second template:

In home_articlebit:


PHP Code:


<smallfont>
-
$articletitle<br>
</
smallfont




Modify the template where you'd like this to display on vBIndex [whether it be in the header, footer, home itself] and add..


PHP Code:

$article 

.. to the template. Load up your vBIndex and if there were existing posts already in the forum, they should begin displaying. Just thought I'd post this in case anyone was curious.



;) Now it's your job to keep everything on topic. :P

carryapple 01-10-2004 07:53 AM

Hi Guys,

I've just installed vbindex, it's incredible. Exactly what I was looking for.

However, I've got one little problem with it. Whenever I try to login via vbindex, it takes me to the Password recovery form. Weird, huh? Any ideas?

Another thing I just noticed: I can't log out through vbindex either. Whenever I click Logout, it says "All cookies cleared", but they aren't. When I log out through vBulletin, it works just fine.
Cookie Domain and Path is set correctly.

Thanks a lot!

BTW, I'm running vBulletin 2.3.4 with vbindex 2.1

mattster2002 01-20-2004 08:38 AM

bit of a problem:
www.team-tekka.com/vbindex.php

news doesnt come up! :o thats it. layout stuff will be fixed later but im really concerned about news

NTLDR 01-20-2004 09:59 AM

Read through the thread and find the hundreds of posts about setpostid.php which give you instructions on howto fix this.

Leo Wyatt 01-23-2004 05:08 PM

Hey NTLDR, love vBindex, well done :D Just installed it on my forums, and it works great except for one little problem. Hope you fix it...I've attached an image, basically, the black strips there shouldn't be there, since the cateogry bg isn't that color...(or whatever the strip's set to inherit). Any idea what's wrong?

Thanks,
leo.


All times are GMT. The time now is 07:56 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02740 seconds
  • Memory Usage 1,783KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (5)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete