PhpBB3 SEO Title

Modifications for phpBB3. Try the Mods here and share Your own Mods
There is no support here! Only Read Access!
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
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

PhpBB3 SEO Title

Post by Stoker »

Title: PhpBB3 SEO Title
Version: 1.0.0 RC

Moved: viewtopic.php?f=45&t=1282
Board rules! No PM support
cyber
BBCoder II
BBCoder II
Posts: 5
Joined: 18 Mar 2010, 01:55
Location: U.K
Contact:

Re: PhpBB3 SEO Title

Post by cyber »

Installation for phpBB version: 3.0.4

Open language/en/common.php

Code: Select all

'INDEX'                  => 'Index page',
Replace with:

Code: Select all

    'INDEX'         => 'Name of your board',
Notes: Replace "Name of your board" with the name of your board. In my case it is PhpBB3 BBCodes.

Find:

Code: Select all

    ?>
Before add:

Code: Select all

// Page Title Number MOD
$lang = array_merge($lang, array(
   'TITLE_PAGE_NUMBER'   => 'Page %s',
));

Open viewforum.php

Find:

Code: Select all

    page_header($user->lang['VIEW_FORUM'] . ' - ' . $forum_data['forum_name']);
Replace with:

Code: Select all

page_header($forum_data['forum_name'] . ($start ? ' - ' . sprintf($user->lang['TITLE_PAGE_NUMBER'], floor($start / $config['topics_per_page']) + 1) : ''));
Open viewtopic.php
Find:

Code: Select all

    page_header($user->lang['VIEW_TOPIC'] . ' - ' . $topic_data['topic_title']);
Replace with:

Code: Select all

page_header($topic_data['topic_title'] . ($start ? ' - ' . sprintf($user->lang['TITLE_PAGE_NUMBER'], floor($start / $config['posts_per_page']) + 1) : ''));
Open styles/your_style/template/overall_header.html
Note: This is the same for both prosilver and subsilver2
Find and delete:

Code: Select all

    {SITENAME} • 
Purge cache and refresh templates.

tested and works great thanks stoker 8-)
My BB-Gamez << Free online games Arcade and Forum >>
apnaitaly
BBCoder II
BBCoder II
Posts: 28
Joined: 05 Mar 2010, 23:09
Contact:

Re: PhpBB3 SEO Title

Post by apnaitaly »

This will work with 3.0.7 PL?

Its working for 3.0.6 , i would like to know if i need to change any thing to update to 3.0.7 PL1

Thanks in advance
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 803
Joined: 05 Mar 2010, 01:10
Extra Rank: Donator.png
BBCodes: 2000
Favourite BBCode: porn tube
Favourite MOD: Non of Stokers
Location: up your bum
Contact:

Re: PhpBB3 SEO Title

Post by Steve »

apnaitaly » 08 Apr 2010, 21:30 wrote:This will work with 3.0.7 PL?

Its working for 3.0.6 , i would like to know if i need to change any thing to update to 3.0.7 PL1

Thanks in advance

yes it will , in the 1st post stoker states 3.0.7 but little was changed in 3.0.7 PL iirc just security changes to feed settings.
NAPWR wrote: Nice, Stoker is Hot
apnaitaly
BBCoder II
BBCoder II
Posts: 28
Joined: 05 Mar 2010, 23:09
Contact:

Re: PhpBB3 SEO Title

Post by apnaitaly »

but there is no install instructaion for Phpbb.3.0.7 Pl1
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: PhpBB3 SEO Title

Post by Stoker »

Why not just try the 3.0.6 instructions ad see what happens? ;)
Board rules! No PM support
cisco007
BBCoder VI
BBCoder VI
Posts: 1015
Joined: 16 Mar 2010, 18:14
Location: Don't really know!

Re: PhpBB3 SEO Title

Post by cisco007 »

as vectra stated or tried to if you did not understand, if you follow the instructions on the first post, you will be able to install it on your board! Like vectra said there really was no difference between phpbb 3.0.7 and 3.0.7 PL!
apnaitaly
BBCoder II
BBCoder II
Posts: 28
Joined: 05 Mar 2010, 23:09
Contact:

Re: PhpBB3 SEO Title

Post by apnaitaly »

Thanks Cisco but sorry i am little confused

bcz Install instructions: which is provided is only for 3.0.5 & 3.0.6

Installation for phpBB version 3.0.5





Installation for phpBB version 3.0.6
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: PhpBB3 SEO Title

Post by Stoker »

apnaitaly, try the 3.0.6 instructions.
Board rules! No PM support
apnaitaly
BBCoder II
BBCoder II
Posts: 28
Joined: 05 Mar 2010, 23:09
Contact:

Re: PhpBB3 SEO Title

Post by apnaitaly »

Thanks Stoker , its working ,
Locked