vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Who's Online WOL - External Page - Not Working (https://vborg.vbsupport.ru/showthread.php?t=111498)

STGU_daNo 03-27-2006 03:54 PM

Who's Online WOL - External Page - Not Working
 
I am trying to get an external page to show up in the Who's Online (WOL) box, to no avail. I have searched for the relevant articles, and the code suggested doesn't work, and the hack for adding it through the AdminCP doesn't work. I am manually trying to make it work. Here is my plugin code:

forum directory = /forum/
news directory = /news/
news filename = /news/index.php

News Index Header:
PHP Code:

error_reporting(E_ALL & ~E_NOTICE); 

define('NO_REGISTER_GLOBALS'1); 
define('THIS_SCRIPT''index');

chdir('/forum');
require_once(
'./global.php');
require_once(
'./includes/class_bbcode.php');

$bbcode_parser =& new vB_BbCodeParser($vbulletinfetch_tag_list());

chdir('/news');

require_once(
'functions.php'); 

WOL PreProcess:
PHP Code:

if (strpos($loc'/news/') !== false)
{
  switch (
$filename)
  {
    case 
'':
    case 
'index.php':
      
$filename 'newsindex.php';
      break;
  }


WOL Process:
PHP Code:

switch ($filename)
{
    case 
'newsindex.php':
        
$userinfo['activity'] = 'browsenews';
        break;


WOL Process Unknown:
PHP Code:

if (!$handled)
{
  switch (
$userinfo['activity'])
  {
  case 
'browsenews':
  
$userinfo['action'] = "Browsing News";
  
$handled true;
  break;
  }


It keeps showing up that the person is viewing the forum index.

Can anyone see what I am doing wrong?

I have been trying everything and can not get it to work...


All times are GMT. The time now is 10:24 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.01160 seconds
  • Memory Usage 1,717KB
  • 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
  • (4)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (1)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