Download Forum SEO

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

Re: Sorry dont want to spam your forum

Post by Steve »

ok done post it in 5 mins.
You do not have the required permissions to view the files attached to this post.

Re: Sorry dont want to spam your forum

Post by Stoker »

Oh man, I am happy that you didnt turn "oliver" on me here :lol:

Re: Sorry dont want to spam your forum

Post by Steve »

ok lets test this one on localhost and works with automod



Some feedback?
But i also use Forum SEO and Topic SEO!
ok we are going to have a problem with Forum SEO & Topic SEO
you will have to force the install if using automod and manually edit the overall_header.html

styles/prosilver/template overall_header.html
styles/subsilver2/template overall_header.html
find:

Code: Select all

<meta name="keywords" content="{SITE_DESC_KEY}" />
<meta name="description" content="{SITE_DESCRIPTION}" />
If using Forum SEO
replace with:

Code: Select all

    <meta name="keywords" content="{SITE_DESC_KEY}<!-- IF SCRIPT_NAME == "viewforum" -->{FORUM_SEO_KEY}<!-- ENDIF -->" />
    <meta name="description" content="{SITE_DESCRIPTION}<!-- IF SCRIPT_NAME == "viewforum" -->{FORUM_SEO_DESC}<!-- ENDIF -->" />
If using Forum SEO and Topic SEO mods
replace with:

Code: Select all

    <meta name="keywords" content="{SITE_DESC_KEY}<!-- IF SCRIPT_NAME == "viewforum" -->{FORUM_SEO_KEY}<!-- ELSE -->{TOPIC_SEO_KEY}<!-- ENDIF -->" />
    <meta name="description" content="{SITE_DESCRIPTION}<!-- IF SCRIPT_NAME == "viewforum" -->{FORUM_SEO_DESC}<!-- ELSE -->{TOPIC_SEO_DESC}<!-- ENDIF -->" />

Re: Sorry dont want to spam your forum

Post by Steve »

.... and im going to write a tutorial will need some help tho.
About seo does and donts point members to specific topics and include instructions about submitting there sites to google,bing,yahoo webmaster tools with instructions how2 use them any good ?

Re: Sorry dont want to spam your forum

Post by Stoker »

About the automod probs there was something we could have done, but its too late now.
Instead of using both: {FORUM_SEO_KEY} and {TOPIC_SEO_KEY} we should just have used {SEO_KEY} to make the call for the keywords.

Then we could just have used:

Code: Select all

<!-- IF SEO_KEY -->{SEO_KEY}<!-- ENDIF -->
Then it would appear where it is configured.

Do you get it?
You do not have the required permissions to view the files attached to this post.

Re: Sorry dont want to spam your forum

Post by Stoker »

And for the problem with users who have one or both mods installed, we would just have to make a couple of more packages for automod. And place them in contrib.


About SEO instructions. I just dont know if it isnt looking for trouble if we start a discussion on this :)
But I guess it would be nice with a SEO Tutorial that guides our users out to some of all the SEO stuff that is availble.
You do not have the required permissions to view the files attached to this post.

Re: Sorry dont want to spam your forum

Post by Steve »

I uploaded the index seo if you want to testit.

this would of made more sense

Code: Select all

<!-- IF SEO_KEY -->{SEO_KEY}<!-- ENDIF -->
darn it!
al write an xml for the conflicts in overall_headers.

yes lets not discuss but help new members setting there forum up to be seo friendly,theres lots to write as there are lots of things to point out but will be very usefull for new users to phpBB3. I would of loved to have been explained some of this before i started with installing loads of useless mods and smilies.

Re: Sorry dont want to spam your forum

Post by Stoker »

Steve© » 02 May 2010, 14:49 wrote:
this would of made more sense

Code: Select all

<!-- IF SEO_KEY -->{SEO_KEY}<!-- ENDIF -->
Yes, and that is why I have this in my overall_header.html:

Code: Select all

<meta name="keywords" content="<!-- IF SEO_KEY -->{SEO_KEY}<!-- ENDIF -->" />

<meta name="description" content="<!-- IF SEO_DESC -->{SEO_DESC}<!-- ENDIF -->" />
It works with both Forum and Topic SEO.
Can you figure out how??

Its easy to use on custom pages, and index. I have done it that way on portal and index here.
Just add this in the templateassign part:

Code: Select all

	'SEO_KEY'			=> sprintf($user->lang['INDEX_KEY']),

	'SEO_DESC'		=> sprintf($user->lang['INDEX_DESC']),
And then this in the language/en/common.php:

Code: Select all

	'INDEX_KEY'                   => 'phpbb3, bbcodes, modifications, forum, styles, support',
	'INDEX_DESC'                   => 'PhpBB3 BBCodes Forum offer you bbcodes, modifications, styles and support for phpBB3',
That was for index.php

Now portal.php:

Code: Select all

	'SEO_KEY'			=> sprintf($user->lang['PORTAL_KEY']),

	'SEO_DESC'		=> sprintf($user->lang['PORTAL_DESC']),
and then this for the language file:

Code: Select all

	'PORTAL_KEY'                   => 'phpbb3, bbcodes, community, support, phpBB',
	'PORTAL_DESC'                   => 'PhpBB3 BBCodes is a friendly Community. We started up only supplying our users with a BBCode Database and Demonstration. Soon we realised that this was not enough to build a community and therefore started supporting phpBB in general.',

Re: Sorry dont want to spam your forum

Post by Steve »

Stoker » 30 Apr 2010, 10:39 wrote:I was wondering...
Maybe we should combine Topic SEO, Forum SEO and PhpBB3 Title SEO in one mod and call it PhpBB3 SEO?
we should have stuck to this ;)

Re: Sorry dont want to spam your forum

Post by Stoker »

Yes, you forgot all about PhpBB3 Title SEO and created a new mod for index instead :D