phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
Topic in "Who is online" mod help
Goto page 1, 2  Next
 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 mod Rewrite  » Advanced SEO URL
::  
Author Message
Stokerpiller
PR0
PR0


Joined: 24 May 2007
Posts: 84

Topic in "Who is online" mod helpPosted: Tue Jul 08, 2008 8:40 pm    Post subject: Topic in "Who is online" mod help

Hello

I was just wondering if anybody has this mod working with advanced seo:
http://www.phpbb.com/community/viewtopic.php?f=69&t=1055645

I have installed it and it is not working.
Any help?
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14279

Topic in "Who is online" mod helpPosted: Wed Jul 09, 2008 3:54 pm    Post subject: Re: Topic in "Who is online" mod help

There is no URL rewriting on viewonline.php with our mods.

Could you tell us a bit more about what is not working, is it only unrewritten links ?

_________________
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
Visit poster's website
Stokerpiller
PR0
PR0


Joined: 24 May 2007
Posts: 84

Topic in "Who is online" mod helpPosted: 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 Embarassed

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
Visit poster's website
Stokerpiller
PR0
PR0


Joined: 24 May 2007
Posts: 84

Topic in "Who is online" mod helpPosted: 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
Visit poster's website
Stokerpiller
PR0
PR0


Joined: 24 May 2007
Posts: 84

Topic in "Who is online" mod helpPosted: 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 Smile
BUT I still like to get the other mod working with SEO.

So please, somebody help me.
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14279

Topic in "Who is online" mod helpPosted: 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
Visit poster's website
Stokerpiller
PR0
PR0


Joined: 24 May 2007
Posts: 84

Topic in "Who is online" mod helpPosted: 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
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14279

Topic in "Who is online" mod helpPosted: Fri Jul 11, 2008 7:12 am    Post subject: Re: Topic in "Who is online" mod help

Since 3.0.2 was just released today, I suggest you (and us since we'll update the SEO mod accordingly) first update and we'll see from there Wink

++

_________________
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
Visit poster's website
Stokerpiller
PR0
PR0


Joined: 24 May 2007
Posts: 84

Topic in "Who is online" mod helpPosted: Fri Jul 11, 2008 7:19 am    Post subject: Re: Topic in "Who is online" mod help

Sounds like a good idea Smile
Back to top
Visit poster's website
Stokerpiller
PR0
PR0


Joined: 24 May 2007
Posts: 84

Topic in "Who is online" mod helpPosted: 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
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14279

Topic in "Who is online" mod helpPosted: 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 :
Code:
t=([0-9]+)


with :

Code:
(t=|' . $phpbb_seo->seo_delim['topic']. ')([0-9]+)


all occurrences of :

Code:
p=([0-9]+)


with :

Code:
(p=|' . $phpbb_seo->seo_static['post']. ')([0-9]+)


then all occurrences of :
Code:
$on_page[1]


with :
Code:
$on_page[2]


and all occurrences of :
Code:
$on_page_p[1]

with :
Code:
$on_page_p[2]


Should be enough Wink

_________________
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
Visit poster's website
Stokerpiller
PR0
PR0


Joined: 24 May 2007
Posts: 84

Topic in "Who is online" mod helpPosted: 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
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14279

Topic in "Who is online" mod helpPosted: Sat Jul 19, 2008 7:56 am    Post subject: Re: Topic in "Who is online" mod help

Sorry, there is a piece of code you do not want to change :

Code:
   preg_match('#^([a-z/]+)#i', $row['session_page'], $on_page);
   if (!sizeof($on_page))
   {
      $on_page[1] = '';
   }

   switch ($on_page[1])


++

_________________
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
Visit poster's website
Stokerpiller
PR0
PR0


Joined: 24 May 2007
Posts: 84

Topic in "Who is online" mod helpPosted: Sat Jul 19, 2008 7:57 am    Post subject: Re: Topic in "Who is online" mod help

Sorry, wrong edits by me Embarassed
But it still doesn't work.
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14279

Topic in "Who is online" mod helpPosted: Sat Jul 19, 2008 8:05 am    Post subject: Re: Topic in "Who is online" mod help

what happens ?

_________________
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
Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 mod Rewrite  » Advanced SEO URL
Page 1 of 2 Goto page 1, 2  Next

Navigation Similar Topics

Jump to: