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  
 
   
"thanks post mod" and "hide bbcode mod"
Goto page 1, 2  Next
 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 mod Rewrite  » Advanced SEO URL
::  
Author Message
Autinhyeu



Joined: 09 Aug 2008
Posts: 36

"thanks post mod" and "hide bbcode mod"Posted: Thu Aug 14, 2008 5:02 pm    Post subject: "thanks post mod" and "hide bbcode mod"

Hi phpbb-seo Smile
Before i install "Advanced SEO URL MOD", "thanks post mod" and "hide bbcode mod" have combined very well ^^!
But, after i install "Advanced SEO URL MOD", them isn't worked.
i have test: (options in ACP)
_ unable "Advanced SEO URL MOD", them work good ^^!
_ able "Advanced SEO URL MOD", them isn't worked Sad
Thank Post Mod (hide MOD compatible )0.1.0: http://www.phpbb.com/community/viewtopic.php?f=70&t=1115275
Hide bbcode MOD: http://www.phpbb.com/community/viewtopic.php?f=70&t=560705
Help me fix this error.
Thanks Sad
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3987

"thanks post mod" and "hide bbcode mod"Posted: Sat Aug 16, 2008 8:12 am    Post subject: Re: "thanks post mod" and "hide bbcode mod"

A quick search gave me this : http://www.phpbb-seo.com/boards/phpbb3-mod-rewrite/discussions-vt1767.html#13298
for the thanks mod.
For the hide bbcode, I don't see any obvious reason why it would not work, could you post or pm a link to your forum with an example of it ?

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
Autinhyeu



Joined: 09 Aug 2008
Posts: 36

"thanks post mod" and "hide bbcode mod"Posted: Sat Aug 16, 2008 12:05 pm    Post subject: Re: "thanks post mod" and "hide bbcode mod"

Thanks for reply Neutral But I use thank mod differed.
Link: http://www.phpbb.com/community/viewtopic.php?f=70&t=1115275
And with contrid, default will is: when i click thanks, i can see content in bbcode [hide]. But after i install Advanced SEO URL MOD, when i click thanks, i cant see content in bbcode [hide].
Please help me again.
Thanks
sorry my english is bad Sad
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

"thanks post mod" and "hide bbcode mod"Posted: Mon Aug 18, 2008 11:45 am    Post subject: Re: "thanks post mod" and "hide bbcode mod"

Is it working if you set the zero dupe "strict mode" option to no ?

A link would definitely help to understand better here.

++

_________________
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
Autinhyeu



Joined: 09 Aug 2008
Posts: 36

"thanks post mod" and "hide bbcode mod"Posted: Mon Aug 18, 2008 3:12 pm    Post subject: Re: "thanks post mod" and "hide bbcode mod"

Quote:
Is it working if you set the zero dupe "strict mode" option to no ?

No, when i set "Activate URL rewriting" to no, it will work great.
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3987

"thanks post mod" and "hide bbcode mod"Posted: Mon Aug 18, 2008 3:59 pm    Post subject: Re: "thanks post mod" and "hide bbcode mod"

Just to find out more about this, what happens if you turn the zero dupe off ?

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
Autinhyeu



Joined: 09 Aug 2008
Posts: 36

"thanks post mod" and "hide bbcode mod"Posted: Mon Aug 18, 2008 4:14 pm    Post subject: Re: "thanks post mod" and "hide bbcode mod"

Quote:
what happens if you turn the zero dupe off ?
If i turn off zero dupe, thanks MOD and hide bbcode MOD still dont work.
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3987

"thanks post mod" and "hide bbcode mod"Posted: Thu Aug 21, 2008 9:26 am    Post subject: Re: "thanks post mod" and "hide bbcode mod"

All right, it may be related to some small bugs in the phpbb_seo_class.php file, try to replace :

Code:
      @list($this->path, $qs) = explode('?', $url, 2);
      if (strpos($url, '#') !== false) {
         list($url, $anchor) = explode('#', $url, 2);
         $anchor = '#' . $anchor;
      }


with :
Code:
      if (strpos($url, '#') !== false) {
         list($url, $anchor) = explode('#', $url, 2);
         $anchor = '#' . $anchor;
      }
      @list($this->path, $qs) = explode('?', $url, 2);


and :
Code:
         $qs = $this->query_string($params, $amp_delim, '');


with :

Code:
         $qs .= ($qs ? $amp_delim : '') . $this->query_string($params, $amp_delim, '');


and :
Code:
         $qs = $params;


with :
Code:
         $qs .= ($qs ? $amp_delim : '') . $params;

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
Autinhyeu



Joined: 09 Aug 2008
Posts: 36

"thanks post mod" and "hide bbcode mod"Posted: Thu Aug 21, 2008 3:17 pm    Post subject: Re: "thanks post mod" and "hide bbcode mod"

Thanks for reply ^^!
2 MOD have work with "Advanced SEO URL MOD" when i turn off zero dupe. ^^!
If i want 2 MOD work when i turn on zero dupe, how to do it??? Thanks you very much... Wink

^^!
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

"thanks post mod" and "hide bbcode mod"Posted: Sat Aug 23, 2008 9:05 am    Post subject: Re: "thanks post mod" and "hide bbcode mod"

All right, so it should work with the strict mode set to "no" for the zero dupe, have you tried it ?

_________________
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
Autinhyeu



Joined: 09 Aug 2008
Posts: 36

"thanks post mod" and "hide bbcode mod"Posted: Sat Aug 23, 2008 9:12 am    Post subject: Re: "thanks post mod" and "hide bbcode mod"

Yes, it work when i turn off zero dupe. ^^! Thanks.
But, If i want it work when i turn on zero dupe, how to do it??? Thanks you very much... Wink
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

"thanks post mod" and "hide bbcode mod"Posted: Sat Aug 23, 2008 11:29 am    Post subject: Re: "thanks post mod" and "hide bbcode mod"

Strict mode is an option of the zero duplicate, not the zero duplicate 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
Autinhyeu



Joined: 09 Aug 2008
Posts: 36

"thanks post mod" and "hide bbcode mod"Posted: Mon Aug 25, 2008 4:35 am    Post subject: Re: "thanks post mod" and "hide bbcode mod"

Oh, sorry...
i have test again, and result is not work.
when i turn off zero dupe -> it work.
when i turn on zero dupe and turn off option strict mode -> not work
i want it work when turn on all ^^!
Thanks you very much Wink
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

"thanks post mod" and "hide bbcode mod"Posted: Wed Aug 27, 2008 1:55 pm    Post subject: Re: "thanks post mod" and "hide bbcode mod"

Could you here past the links that get redirected and shouldn't ?

_________________
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
Autinhyeu



Joined: 09 Aug 2008
Posts: 36

"thanks post mod" and "hide bbcode mod"Posted: Wed Aug 27, 2008 2:46 pm    Post subject: Re: "thanks post mod" and "hide bbcode mod"

before click "Thanks"
Code:
http://www.autinhyeu.com/test-phat-t1236.html

after click "Thanks"
Code:
http://www.autinhyeu.com/test-phat-t1236.html

link have redirected. thanks have saved, but i can see content in BBcode hide Shocked
apology is annoied Sad
Thanks
Back to top
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: