PDA

View Full Version : Threads Not Being Reconized in " Who's online"


Adyum
05-25-2006, 10:42 PM
This is nothing major but more of something that bothers me. Note how the forum shows up fine but the thread shows the direct path. How can I fix this?

Attachment of the problem.

Edit:
Vbullet 3.5.1
vRewrite:1.5.1

Bhuwan
05-25-2006, 11:23 PM
Is this your online.php?

Adyum
05-25-2006, 11:30 PM
Yes, I am sorry I thought I had said this.

Bhuwan
05-26-2006, 12:20 AM
Hmm...I will take a look.

Adyum
05-26-2006, 12:58 AM
Ok thanks, is this a common thing or is it just mine? Is there anything else you need?

HuangA
05-27-2006, 04:21 AM
I've encountered this too. This, and the AJAX post thank you hack (which is being worked on by Bhuwan, thank you!!!) is the only reason why I'm don't have mine enabled as of right now.

dodgechargerfan
05-28-2006, 10:12 AM
I'm seeing the problem too. Not a huge deal, but it would be great to get cleaned up.

Thanks again for this mod.

zeropaid
06-09-2006, 07:47 PM
mine shows the same... anyone get this fixed?

Immortal
06-10-2006, 12:42 AM
Workin' on it.

jlaine
06-10-2006, 01:14 AM
mine shows the same... anyone get this fixed?

Try this:

https://vborg.vbsupport.ru/showthread.php?t=118177

It's working on my site - pretty sure we hammered that out a while ago, or most of it anyway.

cyberoptik
06-11-2006, 07:45 PM
I'm running that new version; and am still having a similar problem. When looking at a user's profile while the user is viewing a thread, it shows an error in the location.

For example; I am viewing my user profile and am viewing a thread and it is returning this error for my location:

Unknown Location /site-reviews/t-techsws-layoutlook-7.html @ 08:44 PM

I get the same error when I am viewing a topic; and I look at the Who's Online page:

Unknown Location
/site-reviews/t-techsws-layoutlook-7.html

zeropaid
06-21-2006, 05:34 AM
yes i am running that same version and still having issues with my online.php. Is everyone having this problem or is anyone's online.php working properly?

jlaine
06-21-2006, 10:23 PM
yes i am running that same version and still having issues with my online.php. Is everyone having this problem or is anyone's online.php working properly?

Mine works fine. :)

teknoledge
08-14-2006, 08:17 AM
I'm having the same problem with online.php. Anyone knows how to fix this?

Immortal
08-14-2006, 12:59 PM
Still workin' on a fix. :)

Zweeper
08-19-2006, 12:52 PM
i need the fix too ;)

redlabour
09-10-2006, 04:41 PM
Anything new about this ? Same Problem here and deactivated vRewrite till it is getting fixed.

SeV3n
09-19-2006, 02:55 PM
Same issue on my forums. :)

grazianno
01-09-2007, 05:24 PM
need the fix too :s

Tarvim
02-18-2007, 09:20 PM
Yes, a fix would be very appreciate

elmati
04-05-2007, 09:10 AM
same issue on my forums too :(

waiting for a fix :)

tomzx
04-18-2007, 02:28 AM
I think I got it fixed:

OPEN /includes/functions_online.php

FIND
if (!empty($values['searchid']))
{
$userinfo['searchid'] = intval($values['searchid']);
$searchids .= ',' . $userinfo['searchid'];
}

ADD AFTER

$found = preg_match_all('#t-([a-zA-Z0-9\-]+)-([0-9]+)#i', $filename, $matches);
if ($found == 1){
$values['threadid'] = $matches[2][0];
}

FIND
// ################################################## Showthread

ADD AFTER

$found = preg_match_all('#t-([a-zA-Z0-9\-]+)-([0-9]+)#i', $filename, $matches);
if ($found == 1){
$filename = 'showthread.php';
}

This way you should have the thread name showing :) Enjoy!

elmati
04-22-2007, 06:39 PM
great tomzx!
its workin now!

thx a lot for this!