| :: |
| Author |
Message |
Stokerpiller PR0

Joined: 24 May 2007 Posts: 84
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
Stokerpiller PR0

Joined: 24 May 2007 Posts: 84
|
Posted: Wed Jul 09, 2008 4:52 pm Post subject: Re: Topic in "Who is online" mod help |
|
|
Okay, I just assumed it was because og the SEO
It is supposed to show which topic the user is reading.
But it doesn't
When a user reads a topic it shows that the user is on board index. |
|
|
| Back to top |
|
 |
Stokerpiller PR0

Joined: 24 May 2007 Posts: 84
|
Posted: Wed Jul 09, 2008 5:54 pm Post subject: Re: Topic in "Who is online" mod help |
|
|
Now I have testet it with the SEO Premod without any extra mods.
It doesnt work with SEO.
I also have testet it on a vanilla board and there it works fine. |
|
|
| Back to top |
|
 |
Stokerpiller PR0

Joined: 24 May 2007 Posts: 84
|
Posted: Thu Jul 10, 2008 9:52 pm Post subject: Re: Topic in "Who is online" mod help |
|
|
Did some more testing.
Installed the Mod again on one of my SEO boards.
It didn't work.
Deactivated URL rewriting and then it did work.
BUT I dont want to deactivate then SEO because it is the ultimative MOD
BUT I still like to get the other mod working with SEO.
So please, somebody help me. |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
Posted: Fri Jul 11, 2008 7:05 am Post subject: Re: Topic in "Who is online" mod help |
|
|
So, there is one limitation with forum tracking when using mod rewrite, it will only work for topics when the forum id is provided, eg, when you are using the virtual folder trick.
If you are not using virtual folder, I assume that the topic tracking mod fails because it does not have the forum id in session table.
It's no big deal, and could be fixed (for topics), could you confirm you do not use the virtual folder mode of the mod rewrite ? |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
Stokerpiller PR0

Joined: 24 May 2007 Posts: 84
|
Posted: Fri Jul 11, 2008 7:07 am Post subject: Re: Topic in "Who is online" mod help |
|
|
| Yes, I can confirm that virtual folder is not in use. |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
Stokerpiller PR0

Joined: 24 May 2007 Posts: 84
|
Posted: Fri Jul 11, 2008 7:19 am Post subject: Re: Topic in "Who is online" mod help |
|
|
Sounds like a good idea  |
|
|
| Back to top |
|
 |
Stokerpiller PR0

Joined: 24 May 2007 Posts: 84
|
Posted: Fri Jul 18, 2008 6:56 pm Post subject: Re: Topic in "Who is online" mod help |
|
|
Board is now updated to 3.0.2 and this mod still doesn't work.
I would really appreciate help to solv this. |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
Posted: Sat Jul 19, 2008 6:42 am Post subject: Re: Topic in "Who is online" mod help |
|
|
Try replacing :
| Code: | preg_match('#^([a-z/]+)#i', $row['session_page'], $on_page);
if (!sizeof($on_page))
{
$on_page[1] = '';
}
if (!in_array($on_page[1], array('viewtopic', 'posting')))
{
continue;
} |
with :
| Code: | /*preg_match('#^([a-z/]+)#i', $row['session_page'], $on_page);
if (!sizeof($on_page))
{
$on_page[1] = '';
}
if (!in_array($on_page[1], array('viewtopic', 'posting')))
{
continue;
}*/ |
and then all occurrences of :
with :
| Code: | | (t=|' . $phpbb_seo->seo_delim['topic']. ')([0-9]+) |
all occurrences of :
with :
| Code: | | (p=|' . $phpbb_seo->seo_static['post']. ')([0-9]+) |
then all occurrences of :
with :
and all occurrences of :
with :
Should be enough  |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
Stokerpiller PR0

Joined: 24 May 2007 Posts: 84
|
Posted: Sat Jul 19, 2008 7:41 am Post subject: Re: Topic in "Who is online" mod help |
|
|
Thoose changings give me this error:
| Code: | [phpBB Debug] PHP Notice: in file /viewonline.php on line 278: Undefined offset: 2
[phpBB Debug] PHP Notice: in file /viewonline.php on line 278: Undefined offset: 2
[phpBB Debug] PHP Notice: in file /viewonline.php on line 278: Undefined offset: 2
[phpBB Debug] PHP Notice: in file /viewonline.php on line 278: Undefined offset: 2
[phpBB Debug] PHP Notice: in file /viewonline.php on line 278: Undefined offset: 2
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3616: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3003)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3618: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3003)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3619: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3003)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3620: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3003) |
|
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
Stokerpiller PR0

Joined: 24 May 2007 Posts: 84
|
Posted: Sat Jul 19, 2008 7:57 am Post subject: Re: Topic in "Who is online" mod help |
|
|
Sorry, wrong edits by me
But it still doesn't work. |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
|
|