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  
 
   
topics_anywhere mod and simple rewrite mod

 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB mod Rewrite
::  
Author Message
AmirAbbas
phpBB SEO Team
phpBB SEO Team


Joined: 11 May 2006
Posts: 529
Location: IRAN

topics_anywhere mod and simple rewrite modPosted: Fri May 26, 2006 3:15 pm    Post subject: topics_anywhere mod and simple rewrite mod

topics anywhere and simple rewrite mod

i've installed topics anywhere mod in localhost
this mod is very useful but it dosn't work with simple rewrite mod
the output link is like standard URLs with .php prefix
at this time i have two different url for one topic
i think topics_anywhere.php file must be edited
can you guide me

thanks Wink
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

topics_anywhere mod and simple rewrite modPosted: Fri May 26, 2006 11:51 pm    Post subject: Re: topics_anywhere mod and simple rewrite mod

topic anywhere is really something to use with great care, because it can become very fast put huge loads on the server.

I already planned though to take a look at it, but it's not a good working solution I think.

_________________
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
AmirAbbas
phpBB SEO Team
phpBB SEO Team


Joined: 11 May 2006
Posts: 529
Location: IRAN

topics_anywhere mod and simple rewrite modPosted: Sat May 27, 2006 8:24 am    Post subject: Re: topics_anywhere mod and simple rewrite mod

because i need a mod for making RSS feeds
topics anywhere can do it for me.
is there any other mod (compatible with simple rewrite mod) ?
i want to make a RSS feed for each forum and i want to put it like a button under the forums defenition
some users like to subcribe a forum in a RSS reader (for example in firefox) to have the latest topics of that forum
topics anywhere can do this job but the bad things is that every person can use this script on your site and another issue is that it can only make RSS feed that linked to standard phpbb URLs

thanks
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

topics_anywhere mod and simple rewrite modPosted: Sat May 27, 2006 8:28 am    Post subject: Re: topics_anywhere mod and simple rewrite mod

Then, this is too much for the topic anywhere mod, it's just to heavy to handle all of your forum's RSS.

I will in the future provide RSS solutions, if you like you can start playing with http://www.phpbb.com/phpBB/viewtopic.php?t=254606 instead.

We should eb able to mod it quite easy 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
AmirAbbas
phpBB SEO Team
phpBB SEO Team


Joined: 11 May 2006
Posts: 529
Location: IRAN

topics_anywhere mod and simple rewrite modPosted: Sat May 27, 2006 8:32 am    Post subject: Re: topics_anywhere mod and simple rewrite mod

OK
thanks Smile

_________________
چهار گوش - طراحی وب - مجله طراحی وب
Back to top
Visit poster's website
AmirAbbas
phpBB SEO Team
phpBB SEO Team


Joined: 11 May 2006
Posts: 529
Location: IRAN

topics_anywhere mod and simple rewrite modPosted: Sat May 27, 2006 1:16 pm    Post subject: Re: topics_anywhere mod and simple rewrite mod

i installed this mod
very simple and clean mod
but this mod only can link to standard URLs and
its not compatible with simple rewrite mod
i will wait for your patch for this mod Wink

_________________
چهار گوش - طراحی وب - مجله طراحی وب
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

topics_anywhere mod and simple rewrite modPosted: Sat May 27, 2006 3:36 pm    Post subject: Re: topics_anywhere mod and simple rewrite mod

I know, I'll take a look to the code and will build up a quick patch Wink , but this is the phpbb rss mod, even though I am using a slightly different one, able to cache every single RSS output, which is better for heavy use.

And of course, feeds are mod Rewriten themselves.

I'll soon release this one too, just have to find sometime to put it all together Wink

But it will certainly be based on the one I pointed out, so you can get used to it, in the end the final SEO solution will be very similar 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
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

topics_anywhere mod and simple rewrite modPosted: Sun May 28, 2006 10:49 am    Post subject: Re: topics_anywhere mod and simple rewrite mod

amir abbas wrote:
i installed this mod
very simple and clean mod
but this mod only can link to standard URLs and
its not compatible with simple rewrite mod
i will wait for your patch for this mod Wink


I took a quick look at the code and there is a problem, the mod only outputs post's URL, so they end up being all duplicates.

But, they are useful to your user, and it nicer to rewrite them, even if you should disallow them with your robots.txt file.

Anyway, fot the RSS Feed mod open :

Code:
rss.php


Find :

Code:
         'POST_URL' => $viewpost_url . '?' . POST_POST_URL . '=' . $post['post_id'] . '#' . $post['post_id'],
         'FIRST_POST_URL' => $viewpost_url . '?' . POST_POST_URL . '=' . $post['topic_first_post_id'] . '#' . $post['topic_first_post_id'],


Replace with :

Code:
         'POST_URL' => append_sid($viewpost_url . '?' . POST_POST_URL . '=' . $post['post_id'] . '#' . $post['post_id']),
         'FIRST_POST_URL' => append_sid($viewpost_url . '?' . POST_POST_URL . '=' . $post['topic_first_post_id'] . '#' . $post['topic_first_post_id']),


This should mod rewrite all outputted URLs following the phpBB SEO Simple Mod Rewrite Standard.

_________________
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
AmirAbbas
phpBB SEO Team
phpBB SEO Team


Joined: 11 May 2006
Posts: 529
Location: IRAN

topics_anywhere mod and simple rewrite modPosted: Sun May 28, 2006 11:27 am    Post subject: Re: topics_anywhere mod and simple rewrite mod

thanks

but if i want to put RSS button under forum description, this links are visible for google Wink

_________________
چهار گوش - طراحی وب - مجله طراحی وب
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

topics_anywhere mod and simple rewrite modPosted: Sun May 28, 2006 1:53 pm    Post subject: Re: topics_anywhere mod and simple rewrite mod

amir abbas wrote:
thanks

but if i want to put RSS button under forum description, this links are visible for google Wink


Yes, but RSS output itself does not get any PageRank, so you don't really need them to be rewritten.

Anyway I'll take a look at it 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
messal



Joined: 27 Dec 2006
Posts: 15

topics_anywhere mod and simple rewrite modPosted: Wed Jan 03, 2007 1:43 pm    Post subject: Re: topics_anywhere mod and simple rewrite mod

dcz wrote:

Code:
rss.php


Find :

Code:
         'POST_URL' => $viewpost_url . '?' . POST_POST_URL . '=' . $post['post_id'] . '#' . $post['post_id'],
         'FIRST_POST_URL' => $viewpost_url . '?' . POST_POST_URL . '=' . $post['topic_first_post_id'] . '#' . $post['topic_first_post_id'],


Replace with :

Code:
         'POST_URL' => append_sid($viewpost_url . '?' . POST_POST_URL . '=' . $post['post_id'] . '#' . $post['post_id']),
         'FIRST_POST_URL' => append_sid($viewpost_url . '?' . POST_POST_URL . '=' . $post['topic_first_post_id'] . '#' . $post['topic_first_post_id']),


This should mod rewrite all outputted URLs following the phpBB SEO Simple Mod Rewrite Standard.


can be this used for advenced? because i dont see any changes on output.
thanks
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15135

topics_anywhere mod and simple rewrite modPosted: Wed Jan 03, 2007 1:50 pm    Post subject: Re: topics_anywhere mod and simple rewrite mod

Topic anywhere is already patched for the mixed and advanced phpBB SEO mod rewrites : http://www.phpbb-seo.com/boards/phpbb-seo-mods/seo-url-topic-anywhere-vt157.html

++

_________________
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  » phpBB mod Rewrite
Page 1 of 1

Navigation Similar Topics

Jump to: