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 (https://vborg.vbsupport.ru/showthread.php?t=37021)

NTLDR 06-16-2002 04:35 PM

Quote:

Originally posted by GuruXL
I don't know where the discussion is exactly but, I would like to show off my programming site now :p

A sneak peek at whats to come..

http://www.flohost.com/~guruxl/index.php

You need to put the "copyright ?2000 - 2002, Jelsoft Enterprises Limited" back into the footer as you are violating the licence agreement.

NTLDR 06-16-2002 04:47 PM

Quote:

Originally posted by MalaK_3araby


Hiya NTLDR

i did that and it works .. but there is always a but ..
its images .. they are not showing since all ther refrence is for /images not vbb/images ...
I do not want to manually enter that since it i am using many styles. Any ideas on how to correct that and get the correct path for https://vborg.vbsupport.ru/images?

The solution to this really depends on how you have implimented this hack so far:

If you have added the templates to only one style set, then the one solutuion is to add a new replacement variable called {forumimages} for example and set that as forum/images and replace { images folder } (minius the space before each {}) in the templates to {forumimages}

The second option, change the path of the images to the full URL so http://www.site.com/forum/images instead of just /images

NTLDR 06-16-2002 04:51 PM

Quote:

Originally posted by -=dm=-
Hi NTLDR thanx :)
this was exact what I was looking for.
now is it possible to see which page user are on, on "who is online"?

Indeed this is posible, you need to edit the online.php for every page, I'll post the hack add-on with the changes later today for you -=dm=- I may also try and modify FireFly's admin cp locations addon so it works with this if I can.

MalaK_3araby 06-16-2002 06:50 PM

HI NTLDR ..

You are awsome.
Your answer solved alot more than my question above.

Thanks alot NTLDR.

NTLDR 06-16-2002 07:20 PM

As requested by -=dm=- is the addon for my multi-paged vBindex addon. It allows you to have a location for different pages within vBindex based on the url.

Install Instructions:
------------------------
------------------------

Open online.php

Find:

PHP Code:

    case 'online':
      
$userinfo[where] = "Viewing <a href='online.php?s=$session[sessionhash]'>Who's Online</a>";
      break; 

And add after it:

PHP Code:

// Add Location Descriptions For vBindex
    
case 'home':
          
$userinfo[where] = "Viewing <a href='home.php?s=$session[sessionhash]'>Home Page</a>";
      break;
    case 
'vbindex_PLACE1':
          
$userinfo[where] = "Viewing <a href='home.php?s=$session[sessionhash]&page=PLACE1'>Description 1</a>";
      break;
    case 
'vbindex_PLACE2':
          
$userinfo[where] = "Viewing <a href='home.php?s=$session[sessionhash]&page=PLACE2'>Description 2</a>";
      break;
//end Location Descriptions For vbIndex 

You need to change the following in the above PHP code:

PLACE1 and PLACE2 with the name of the template for the page that is shown in the url:

[code]http://forums.site.com/vbindex.php?s=&page=PLACE1[code]

Description 1 And 2: Replace with the description of the page.

Next still in online.php

Find:

[php] case 'online.php':
$userinfo[activity] = 'online';
break;[/php

And Add After It:

PHP Code:

//And Location Descriptions For vbIndex
  
case 'home.php':
        if (
$token1 == '') {
          
$userinfo[activity] = 'home';
        } else if (
$token1 == 'PLACE1') {
          
$userinfo[activity] = 'vbindex_PLACE1';
        } else if (
$token1 == 'PLACE2') {
          
$userinfo[activity] = 'vbindex_PLACE2';
        }
    break;
//end Location Descriptions For vbIndex 

Again, place PLACE1 and PLACE2 with exactly the same values as above.

Thats all that is all that is required to add the locations, the following is extra info on adding more than two extra vBindex pages to Who's Online.

Adding extra places:

in order to add more places in Who's Online you need to add a few extra lines to the above blocks of code:

In the first block you need to add:

PHP Code:

    case 'vbindex_PLACE3':
          
$userinfo[where] = "Viewing <a href='home.php?s=$session[sessionhash]&page=PLACE3'>Description 3</a>";
      break; 

Right Before:

PHP Code:

//end Location Descriptions For vbIndex 

Changing PLACE3 and Description 3 as you did above.

In the second block you need to remove the last { (the one directly before break; and add the code:

PHP Code:

        } else if ($token1 == 'PLACE3') {
          
$userinfo[activity] = 'vbindex_PLACE3';
        } 

And change PLACE3 as you did above.

NTLDR 06-16-2002 07:22 PM

Quote:

Originally posted by MalaK_3araby
HI NTLDR ..

You are awsome.
Your answer solved alot more than my question above.

Thanks alot NTLDR.

No problem, glad I could help you out and solve you problem :D

alain4ever 06-19-2002 04:20 PM

i have a small question....

can i use it on vb2.2.6??

NTLDR 06-19-2002 06:14 PM

Quote:

Originally posted by alain4ever
i have a small question....

can i use it on vb2.2.6??

Yep, it should work with all of the 2.2.x series.

LearningMan 06-21-2002 03:30 PM

Having slight problem with vbindex...

Installed Hack per Instructions. Works great...

Problem I am having is now on my main forum page, my:

Most users ever Online area. The value changes as people logoff. The date also changes as well as the time...

Everything else working fine. I names the vbindex page index.php and also the Main index for the vbb Forum 2.2.6 is home.php...

Also, my counter in the vbindex page for Posts Today starts out at 74 and goes DOWN as Members make post...

Help...

NTLDR 06-21-2002 06:24 PM

Quote:

Originally posted by LearningMan
Most users ever Online area. The value changes as people logoff. The date also changes as well as the time...
Please read the whole thread, I posted this fix quite a while ago.


All times are GMT. The time now is 07:23 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.01526 seconds
  • Memory Usage 1,767KB
  • 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
  • (6)bbcode_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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