| :: |
| Author |
Message |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14403
|
|
| Back to top |
|
 |
|
 |
euroman PR0

Joined: 21 Oct 2006 Posts: 81
|
Posted: Sun Oct 22, 2006 12:29 pm Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags |
|
|
Thanks - Ahh....I see  |
|
|
| Back to top |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Sun Oct 22, 2006 3:03 pm Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags |
|
|
hi
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) ?  |
_________________ چهار گوش - طراحی وب - مجله طراحی وب |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14403
|
Posted: 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 |
|
 |
nims phpBB SEO Team

Joined: 11 Oct 2006 Posts: 243 Location: New Delhi, India
|
Posted: 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 |
|
 |
Peter77 phpBB SEO Team


Joined: 10 May 2006 Posts: 512 Location: Michigan
|
Posted: Tue Oct 24, 2006 6:58 am Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags |
|
|
Hello, nims. just change fr to en
| Code: | | $phpbb_meta .= '<meta name="description" lang="en" content="'. $description .'" />' . "\n"; |
|
_________________ Juarol.com
| Frekuenciadigital.com | |
|
| Back to top |
|
 |
nims phpBB SEO Team

Joined: 11 Oct 2006 Posts: 243 Location: New Delhi, India
|
Posted: Tue Oct 24, 2006 7:17 am Post subject: Re: [archive] phpBB SEO Dynamic Meta Tags |
|
|
Thanks Peter  |
|
|
| Back to top |
|
 |
safito
Joined: 26 Oct 2006 Posts: 5
|
Posted: 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

Joined: 28 Apr 2006 Posts: 14403
|
|
| Back to top |
|
 |
asiaexpat PR1

Joined: 04 Aug 2006 Posts: 121
|
Posted: 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

Joined: 28 Apr 2006 Posts: 14403
|
|
| Back to top |
|
 |
RedFoxy
Joined: 03 Nov 2006 Posts: 12
|
Posted: 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

Joined: 28 Apr 2006 Posts: 14403
|
|
| Back to top |
|
 |
nims phpBB SEO Team

Joined: 11 Oct 2006 Posts: 243 Location: New Delhi, India
|
Posted: 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.  |
_________________ Audio Ads - Earn from every visitor to your site
Buy Latest mobiles *** SEO India |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14403
|
Posted: 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
++ |
_________________ 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 |
|
 |
|
|