vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   unkown location in whos online (https://vborg.vbsupport.ru/showthread.php?t=201375)

manning 01-11-2009 12:24 AM

unkown location in whos online
 
I have created custom pages working good - but it shows uknown location on whos online page...

I know I need to add those custom pages into function_online.php but Im not sure how exactly. I found several online mods for it, but they all say look for something thats not present.

Any help appreciated thanks.

Lynne 01-11-2009 12:51 AM

Create two plugins using the following hooks. Replace mypage and similar with your information.

hook online_location_process:
Code:

PHP Code:

switch ($filename)
{
    case 
'mypage.php':
        
$userinfo['activity'] = 'mypage';
        break;
// add more cases here if you have more than one custom page. no need for multiple plugins. one plugin can handle all.



hook online_location_unknown
Code:

PHP Code:

switch ($userinfo['activity'])
{
    case 
'mypage':
        
$userinfo['where'] = '<a href="mypage.php?'.$vbulletin->session->vars[sessionurl].'">My Page</a>';
        
$userinfo['action'] = "Viewing My Page";
        
$handled true;
        break;
// add more cases here if you have more than one custom page. no need for multiple plugins. one plugin can handle all.



manning 01-11-2009 01:50 AM

Thank you very kindly - works like a charm.

What would I do for files that arent in the forum directory?

I have photopost installed and it doesnt show ... vb is in .com/forum/ pp is in .com/photos/ is there a way I can insert a path in the case to include any file in the photo directory?

Thanks again!

Bellardia 01-11-2009 02:11 AM

You need to make those pages 'powered' by vbulletin so that it can access what is going on there.

https://vborg.vbsupport.ru/showthrea...t=powered+page

manning 01-11-2009 03:06 AM

Quote:

Originally Posted by Bellardia (Post 1708089)
You need to make those pages 'powered' by vbulletin so that it can access what is going on there.

https://vborg.vbsupport.ru/showthrea...t=powered+page

Yes already created the custom pages ;) now just looking to see if its possible to case out a path ...


All times are GMT. The time now is 10:53 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.00992 seconds
  • Memory Usage 1,731KB
  • 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
  • (2)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete