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  
 
   
[Optimal titles] What will happened if ...

 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 SEO TooLKit  » phpBB3 SEO MODS
::  
Author Message
Goroman



Joined: 28 Mar 2008
Posts: 8
Location: Poland

[Optimal titles] What will happened if ...Posted: Sat May 10, 2008 1:34 am    Post subject: [Optimal titles] What will happened if ...

Hello
I want to install Optimal titles V 1.0.2

but I have little question...

I have 7040 IP in Google ( I'm using vanila phpbb3)

What will happened if I install this mod ?
I will lose some GIP ? ( Google Indexed Pages)

In description of this mod we see:
Quote:
This mod will optimize phpBB pages titles.
By Default, page titles contain many useless information, such as "View Forum" or "View topic".
This mod will better target words to use in titles, using topics, forums and categories titles.

In addition, this mod will add the page's number in page title, which allow for a lot better pagination indexing. As two pages with the same title are hard to keep in SEPRS.


Pls reply Smile
Back to top
HB
phpBB SEO Team
phpBB SEO Team


Joined: 16 Oct 2006
Posts: 800

[Optimal titles] What will happened if ...Posted: Sat May 10, 2008 2:42 am    Post subject: Re: [Optimal titles] What will happened if ...

Goroman wrote:
What will happened if I install this mod ?

This mod will better target words to use in titles, using topics, forums and categories titles. In addition, this mod will add the page's number in page title, which allow for a lot better pagination indexing. As two pages with the same title are hard to keep in SERPs.

Goroman wrote:
I will lose some GIP ? ( Google Indexed Pages)

No, just the opposite. Example:

http://www.google.com/search?q=%22Page+3%22+site%3Aphpbb-seo.com

Unique meta descriptions and title are a good thing.

_________________
Dan Kehn
Back to top
Visit poster's website
Goroman



Joined: 28 Mar 2008
Posts: 8
Location: Poland

[Optimal titles] What will happened if ...Posted: Sat May 10, 2008 3:10 am    Post subject: Re: [Optimal titles] What will happened if ...

ok Smile
I want to install Dynamic Meta tags 0.2.2 too

but before install I have question ( I'm carefull Wink )

Now I have my metatags in overall_header

but this mod deletting metatags from overall.... ( not exactly)
he's adding:
Quote:
{META_TAG}
{META}


but where i may put my metatags ? in ACP ? functions.php

I guess that will be in functions.php
but where exactly ?

Example :
Quote:
www: test.com
title: Test me
descrip. : This is my test site . Welcome Smile
keywords : testkeyword1, testkeyword2, testkeyword3, testkeyword4


where put that ? in which part of code ?
I'm thinking that will be in ?:
Quote:
function seo_meta_tags() {
global $config;
$this->meta['meta_tpl'] = '<meta name="title" content="%s" />' . "\n" . '<meta name="description" lang="%s" content="%s" />' . "\n" . '<meta name="keywords" content="%s" />' . "\n" . '<meta name="category" content="%s" />' . "\n" . '<meta name="robots" content="%s" />'. "\n" . '<meta name="distribution" content="%s" />' . "\n" . '<meta name="resource-type" content="%s" />' . "\n" . '<meta name="copyright" content="%s" />' . "\n";
// Here you can hard code a static default title, description and keywords
// As is, the mod will return information based on the phpbb config
$this->meta['meta_title_def'] = $config['Test me'];
$this->meta['meta_desc_def'] = $config['This is my test site . Welcome Smile'];
$this->meta['meta_keywords_def'] = $config['testkeyword1, testkeyword2, testkeyword3, testkeyword4'];
$this->meta['meta_lang'] = $config['default_lang'];
$this->meta['meta_cat'] = 'general';
$this->meta['meta_robots'] = 'index,follow';
$this->meta['meta_distrib'] = 'global';
$this->meta['meta_restype'] = 'document';
$this->meta['meta_copy'] = $config['sitename'];

I must make sure Smile so correct me if i wrong Razz
Back to top
Goroman



Joined: 28 Mar 2008
Posts: 8
Location: Poland

[Optimal titles] What will happened if ...Posted: Sat May 10, 2008 3:21 pm    Post subject: Re: [Optimal titles] What will happened if ...

helooo.. Smile

please help me Rolling Eyes
Back to top
seqwence



Joined: 14 May 2007
Posts: 5

[Optimal titles] What will happened if ...Posted: Sat May 10, 2008 3:28 pm    Post subject: Re: [Optimal titles] What will happened if ...

Only ten minutes after sending the post and you are requesting quick reply?
You're little bit impatient, aren't you?
Wink
Back to top
Goroman



Joined: 28 Mar 2008
Posts: 8
Location: Poland

[Optimal titles] What will happened if ...Posted: Sat May 10, 2008 4:47 pm    Post subject: Re: [Optimal titles] What will happened if ...

look on dates
Sat May 10, 2008 3:10 am
and the latest:
Sat May 10, 2008 3:21 pm

Wink
Back to top
seqwence



Joined: 14 May 2007
Posts: 5

[Optimal titles] What will happened if ...Posted: Sat May 10, 2008 8:00 pm    Post subject: Re: [Optimal titles] What will happened if ...

Oh, sry...

But I'm waiting for reply 1 day so far. Wink
Back to top
HB
phpBB SEO Team
phpBB SEO Team


Joined: 16 Oct 2006
Posts: 800

[Optimal titles] What will happened if ...Posted: Sat May 10, 2008 9:57 pm    Post subject: Re: [Optimal titles] What will happened if ...

Goroman wrote:
I must make sure Smile so correct me if i wrong Razz

Goroman wrote:
please help me Rolling Eyes

Have you looked a few lines higher in functions.php? There you will find in build_meta(...) Rolling Eyes

Code:
$this->meta['keywords'] = ( !empty($this->meta['keywords']) ) ? $this->meta['keywords'] : $this->make_keywords( $page_title . ' ' . $this->meta['meta_keywords_def']);

You could modify that code or set $seo_meta->meta['keywords'] prior to the page_header invocation. Wink

_________________
Dan Kehn
Back to top
Visit poster's website
Goroman



Joined: 28 Mar 2008
Posts: 8
Location: Poland

[Optimal titles] What will happened if ...Posted: Sun May 11, 2008 12:00 am    Post subject: Re: [Optimal titles] What will happened if ...

ok now i know how and where put meta tags but.. there is one thing Very Happy

what I must fill in:
Code:
 $this->meta['meta_lang'] = $config['default_lang'];


I have polish site / forum
so ?
I must fill
ex. pl, polish, polski ? The last one means "polish" in my language

//
Edit:

This mod not working Sad
He crash my meta tags
Back to top
HB
phpBB SEO Team
phpBB SEO Team


Joined: 16 Oct 2006
Posts: 800

[Optimal titles] What will happened if ...Posted: Sun May 11, 2008 1:25 am    Post subject: Re: [Optimal titles] What will happened if ...

Assuming you set the language for the board, this will already be correct:

Code:
$config['default_lang'];


But you can always check with:

Code:
echo $config['default_lang'];

_________________
Dan Kehn
Back to top
Visit poster's website
HB
phpBB SEO Team
phpBB SEO Team


Joined: 16 Oct 2006
Posts: 800

[Optimal titles] What will happened if ...Posted: Sun May 11, 2008 1:27 am    Post subject: Re: [Optimal titles] What will happened if ...

Goroman wrote:
This mod not working Sad
He crash my meta tags

I don't know what "crash my meta tags" means, but first thing to do is double check your work. Programmers have been known to make mistakes.

_________________
Dan Kehn
Back to top
Visit poster's website
Goroman



Joined: 28 Mar 2008
Posts: 8
Location: Poland

[Optimal titles] What will happened if ...Posted: Sun May 11, 2008 2:52 am    Post subject: Re: [Optimal titles] What will happened if ...

I can't explain Sad I speak english a little

ok so .. last my question is:

Do you know any modifications, which sets the meta tags, with the level of ACP?
Back to top
HB
phpBB SEO Team
phpBB SEO Team


Joined: 16 Oct 2006
Posts: 800

[Optimal titles] What will happened if ...Posted: Sun May 11, 2008 3:41 am    Post subject: Re: [Optimal titles] What will happened if ...

No, I don't.

But to be honest, I put meta tags low on my list of important SERP influencers. The meta description tag is worth paying attention to because Google uses it for the URL summary if no search keywords are present. In other words, I believe it's a safe bet that Google can figure out the best keywords without meta tag help from the webmaster.

By the way, if you don't have a heavily modified board, the easiest answer may be using the phpBB-seo premod. That is the base phpBB 3.0.1 build with all the SEO mods installed.

_________________
Dan Kehn
Back to top
Visit poster's website
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3384

[Optimal titles] What will happened if ...Posted: Sun May 11, 2008 11:21 am    Post subject: Re: [Optimal titles] What will happened if ...

Goroman wrote:


I guess that will be in functions.php
but where exactly ?

Example :
Quote:
www: test.com
title: Test me
descrip. : This is my test site . Welcome Smile
keywords : testkeyword1, testkeyword2, testkeyword3, testkeyword4


where put that ? in which part of code ?
I'm thinking that will be in ?:
Quote:
function seo_meta_tags() {
global $config;
$this->meta['meta_tpl'] = '<meta name="title" content="%s" />' . "\n" . '<meta name="description" lang="%s" content="%s" />' . "\n" . '<meta name="keywords" content="%s" />' . "\n" . '<meta name="category" content="%s" />' . "\n" . '<meta name="robots" content="%s" />'. "\n" . '<meta name="distribution" content="%s" />' . "\n" . '<meta name="resource-type" content="%s" />' . "\n" . '<meta name="copyright" content="%s" />' . "\n";
// Here you can hard code a static default title, description and keywords
// As is, the mod will return information based on the phpbb config
$this->meta['meta_title_def'] = $config['Test me'];
$this->meta['meta_desc_def'] = $config['This is my test site . Welcome Smile'];
$this->meta['meta_keywords_def'] = $config['testkeyword1, testkeyword2, testkeyword3, testkeyword4'];
$this->meta['meta_lang'] = $config['default_lang'];
$this->meta['meta_cat'] = 'general';
$this->meta['meta_robots'] = 'index,follow';
$this->meta['meta_distrib'] = 'global';
$this->meta['meta_restype'] = 'document';
$this->meta['meta_copy'] = $config['sitename'];

I must make sure Smile so correct me if i wrong Razz


That's here, but not how, use :
Code:
      $this->meta['meta_title_def'] = 'Test me';
      $this->meta['meta_desc_def'] = 'This is my test site . Welcome :)';
      $this->meta['meta_keywords_def'] =  'testkeyword1, testkeyword2, testkeyword3, testkeyword4';


Instead.

About setting the meta tags in acp, well, the need only exists for forum index and forums. Since the meta description for index uses the configured site description set for you forum, and that the meta description of each forum is the configured forum description, you can actually already set them in ACP.

_________________
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
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 SEO TooLKit  » phpBB3 SEO MODS
Page 1 of 1

Navigation Similar Topics

Jump to: