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  
 
   
[archive] phpBB SEO Dynamic Meta Tags
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9  Next
 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB SEO TooLKit  » phpBB SEO MODS
::  
Author Message
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

[archive] phpBB SEO Dynamic Meta TagsPosted: Sun Oct 22, 2006 11:25 am    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

And welcome Very Happy

Well, phpBB page title are not defined in page_header.php, take a look at this thread to find out more.

You could as well take the info's from the meta tags calculus, but you would loose the old titles for pages not being index, categories, forums and topics.

It's better do do it from the files so that you don't mess up with the entire titling system.

++

_________________
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
euroman
PR0
PR0


Joined: 21 Oct 2006
Posts: 81

[archive] phpBB SEO Dynamic Meta TagsPosted: Sun Oct 22, 2006 12:29 pm    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

Thanks - Ahh....I see Very Happy
Back to top
Visit poster's website
AmirAbbas
phpBB SEO Team
phpBB SEO Team


Joined: 11 May 2006
Posts: 529
Location: IRAN

[archive] phpBB SEO Dynamic Meta TagsPosted: Sun Oct 22, 2006 3:03 pm    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

hi Smile

i asked you to tell me hoe can i remove keyword metatag and you said me how can i do it.
now i want to know

is it possible to have keyword metatag only for first page (index.php) ? Rolling Eyes

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


Joined: 28 Apr 2006
Posts: 14403

[archive] phpBB SEO Dynamic Meta TagsPosted: Sun Oct 22, 2006 3:12 pm    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

If I remember well, the problem was only concerning the UTF-8 topic keywords, as you where not able to properly filter words from the search tables according to their size.

So, you could just work with a longer search_stopwords.txt, including one and two letters words, or just disable the keywords for topics, but leave everything else as his for a normal install.

You should just find and delete :

Code:
        $sql = "SELECT w.word_text
                FROM " . TOPICS_TABLE . " t, " . SEARCH_MATCH_TABLE . " m, " . SEARCH_WORD_TABLE . " w
                WHERE t.topic_first_post_id = m.post_id
                AND m.word_id = w.word_id
                AND t.topic_id = $meta_topic_id LIMIT 20";
        if( ($result = $db->sql_query($sql)) ) {
      $keywords = '';
      while ( $meta_row = $db->sql_fetchrow($result) ) {
         $keywords .= ($keywords == '') ? $meta_row['word_text'] : ',' . $meta_row['word_text'];
      }

In the mod's code (page_header.php) and eventually, to prevent empty keywords tags to be outputted find :
Code:
$phpbb_meta .= '<meta name="keywords" content="' . $keywords  .'" />' . "\n";


And replace with :
Code:
$phpbb_meta .= isset($meta_topic_id) ? '<meta name="keywords" content="' . $keywords  .'" />' . "\n" : '';


++

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


Joined: 11 Oct 2006
Posts: 243
Location: New Delhi, India

[archive] phpBB SEO Dynamic Meta TagsPosted: Tue Oct 24, 2006 5:58 am    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

Hi I have installed Dynamic Meta tags MOD.
My board is in English but this MOD has this line
Code:
$phpbb_meta .= '<meta name="description" lang="fr" content="'. $description .'" />' . "\n";

How to change it to english.
Back to top
Visit poster's website
Peter77
phpBB SEO Team
phpBB SEO Team


Joined: 10 May 2006
Posts: 512
Location: Michigan

[archive] phpBB SEO Dynamic Meta TagsPosted: Tue Oct 24, 2006 6:58 am    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

Hello, nims. just change fr to en Smile



Code:
$phpbb_meta .= '<meta name="description" lang="en" content="'. $description .'" />' . "\n";

_________________
Juarol.com
| Frekuenciadigital.com |
Back to top
nims
phpBB SEO Team
phpBB SEO Team


Joined: 11 Oct 2006
Posts: 243
Location: New Delhi, India

[archive] phpBB SEO Dynamic Meta TagsPosted: Tue Oct 24, 2006 7:17 am    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

Thanks Peter Smile
Back to top
Visit poster's website
safito



Joined: 26 Oct 2006
Posts: 5

[archive] phpBB SEO Dynamic Meta TagsPosted: Thu Nov 02, 2006 2:35 am    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

is there anyway that
instead of random words
you can actually do a keyword density
and avoid pronouns,
do things like get 3 word phrase keywords...
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

[archive] phpBB SEO Dynamic Meta TagsPosted: Thu Nov 02, 2006 9:16 am    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

Well, this is getting a lot better after you go through the meta tag and search table optimisation

The thing is we really want to output keywords that really are in the topic. Keywords should show up as they should be among the most used words in the forum.

++

_________________
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
asiaexpat
PR1
PR1


Joined: 04 Aug 2006
Posts: 121

[archive] phpBB SEO Dynamic Meta TagsPosted: Fri Nov 03, 2006 1:58 pm    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

I applied this mod but I am not sure if it is working or not--

I can see the keywords that I put in but i dont see any keywords from the topic. can you take a look and tell me if it is working?

I had installed a another meta tag mod years ago and maybe it is blocking the effect of your mod.

edit====Now I see if I open the post from the last post icon the source code is different than when i open from the topic name in the topics list. Same thread -different source codes
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

[archive] phpBB SEO Dynamic Meta TagsPosted: Sat Nov 04, 2006 8:50 am    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

yep, post URLs are not our target, should be disallowed, so no need to add work for them 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
RedFoxy



Joined: 03 Nov 2006
Posts: 12

[archive] phpBB SEO Dynamic Meta TagsPosted: Wed Nov 08, 2006 1:55 pm    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

I've installed that mod but i see always my meta keyword...
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

[archive] phpBB SEO Dynamic Meta TagsPosted: Wed Nov 08, 2006 9:38 pm    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

I cannot check what's happening on your web site right now, it's unavailable from where I stand.

As, well it's handy hen asking for support to post a link 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
nims
phpBB SEO Team
phpBB SEO Team


Joined: 11 Oct 2006
Posts: 243
Location: New Delhi, India

[archive] phpBB SEO Dynamic Meta TagsPosted: Thu Nov 16, 2006 10:28 am    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

Are there any plans to update this MOD.
I see that the dynamic keyword generation is generating keywords like "kind,kindly,urgent etc" that actully do not have much weight / meaning or requirement in the keyword section.

Can this be improved ?
Secondly I dont see any phrases being added like "English songs, movie reviews etc" there are only single word keywords. So I feel there is a great scope for improvement. Smile

_________________
Audio Ads - Earn from every visitor to your site
Buy Latest mobiles *** SEO India
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

[archive] phpBB SEO Dynamic Meta TagsPosted: Thu Nov 16, 2006 10:33 am    Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags

The thing is we want to go fast as meta tags are not important enough to waist to much server resources.

So far, it's only selecting the most used words in the forum being as well part of the first post of each topic.

If you properly apply the optimizing method, you'll end up with a faster forum and better keywords.

I do plan to update this mod anyway, my goal will be to do better without adding as much SQL (it's not much right now, but could be lowered down I think). We'll see how far we can go 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
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB SEO TooLKit  » phpBB SEO MODS
Page 4 of 9 Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9  Next

Navigation Similar Topics

Jump to: