[MOD] Search Engine Friendly (SEO) URLs 1.0.0 RC4

Misc MOD Downloads for phpBB3 -- Any MOD that does not fit into any other category
Forum rules
Image Please feel free to download any MOD's here, support for each MOD is located it's own thread.

To post your own MOD, please first read the MOD Guidelines

How would you rate this mod?

Excellent!
46
65%
Very good
10
14%
Good
7
10%
Fair
2
3%
Poor
6
8%
 
Total votes : 71

Re: [MOD] Search Engine Friendly (SEO) URLs 1.0.0 RC4

Postby Shadow_One » 17 Feb 2008, 10:46

Simply copy-paste the entire code to a file called functions_seo.php and overwrite the existing file in includes folder
Shadow_One
Style Author
Style Author
 
Posts: 43
Joined: 13 Oct 2007, 23:54
Location: Sony Ericsson Motherboard
Gender: Male
phpBB Knowledge: 8


Re: [MOD] Search Engine Friendly (SEO) URLs 1.0.0 RC4

Postby AllTheseBooks » 17 Feb 2008, 19:13

And this functions_seo.php is where?
AllTheseBooks
Crewman
Crewman
 
Posts: 6
Joined: 16 Feb 2008, 18:30
Gender: Male
phpBB Knowledge: 3

Re: [MOD] Search Engine Friendly (SEO) URLs 1.0.0 RC4

Postby Shadow_One » 18 Feb 2008, 11:26

In includes folder.
Shadow_One
Style Author
Style Author
 
Posts: 43
Joined: 13 Oct 2007, 23:54
Location: Sony Ericsson Motherboard
Gender: Male
phpBB Knowledge: 8

Re: [MOD] Search Engine Friendly (SEO) URLs 1.0.0 RC4

Postby AllTheseBooks » 18 Feb 2008, 19:45

Found the file. I must seem like an idiot, but where are the full instruction on how to install this?
AllTheseBooks
Crewman
Crewman
 
Posts: 6
Joined: 16 Feb 2008, 18:30
Gender: Male
phpBB Knowledge: 3

Re: [MOD] Search Engine Friendly (SEO) URLs 1.0.0 RC4

Postby belphegor » 18 Feb 2008, 20:23

Hi, Handyman.
Firs thanks for the mod.

I have questiona about SEO an google:
The SEO MOD really help to progress in google?
If so, why sites like "startrekguide" "phpbb" and more doesn't make use with seo?
I see that in net have some seo mod like seo phpbb, what the different?
And what the different between seo mod and make rules in .htaccess?
The last,
What happen to sitemap when install seo mod?

Thanks and Regards,
uzi.
belphegor    
Supporter
Supporter
 
Posts: 217
Joined: 06 Jan 2008, 00:19
Location: IL
Gender: Male

Re: [MOD] Search Engine Friendly (SEO) URLs 1.0.0 RC4

Postby jeff_j_dunlap » 11 Mar 2008, 18:31

Hi :wave: Handyman,

Just checking in to see how you're doing with Search Engine Friendly. When will it be ready for use?

Thanks a bunch,

Jeff
User avatar
jeff_j_dunlap    
Crewman
Crewman
 
Posts: 1
Joined: 11 Mar 2008, 17:46
Gender: Male
phpBB Knowledge: 1

Re: [MOD] Search Engine Friendly (SEO) URLs 1.0.0 RC4

Postby yasinahmetsevim » 18 Mar 2008, 11:28

Hi,

I have an problem within this. I am using your Seo-Mod and Highway of Live 's AdvancedMetaTag-Mod both in my Forum.

I will explain the error after my screenshots.

Forum Page Caps 1: Looking to the 1st page link for the topic. It is ending with ".php"
Image

Forum Page Caps 2: Looking to the 2st page link for the topic. It is ending with ".php"
Image

Topic Page 1: Looking to the 2st page link for the topic. It is ending with ".html"
Image

Topic Page 2: Looking to the 1st page link for the topic. It is ending with ".html"
Image

As seen in the screenshots in the Forum "Konu D???" is an Topic named "Deneme Ba?l?k" that contains 2 pages of posts. When I want to enter it via Topic name I got no error and get into the topic. But when I want enter via the page number 's ( little red boxes in screenshots ) I get an 404 page because the link reffers to an seo page ending with ".php".

3th and 4th screenshots are for the Topic page. After I entered the topic via Topic Name I have looked for the page number link 's ( again little red boxes in screenshots ) and got the answer for seo page ending with ".html" and I can switch the pages without any error. Also is it here right.

I have checked again over 4-5 times the changed files, have purged the chache many times etc. etc. but I can't solve this error alone.
The only different point in the changed pages is that I must add an code for AdvancedMetaTag-Mod from Highway of Live.
It must be so:
Code: Select all
page_header($topic_data['topic_title']);

I have maked it:
Code: Select all
page_header($topic_data['topic_title'], true, $first_post_text);


The
Code: Select all
, true, $first_post_text
part from the 2nd codes is from AdvancedMetaTag-Mod.

Thanks already for any help
yasinahmetsevim    
Crewman
Crewman
 
Posts: 1
Joined: 18 Mar 2008, 10:58
Gender: Male
phpBB Knowledge: 3

Re: [MOD] Search Engine Friendly (SEO) URLs 1.0.0 RC4

Postby shinzo » 19 Mar 2008, 22:43

hi! i just want to try this mod.
I'm using PHPbb3 + Glacier styles, is it will works?
waiting for reply!

my otherQ:
I';ve seen there is PHPbb3, PHPbb3 gold, PHPbb3 RC5,RC6,RC7,PHPbb3 Olympus & etc...
what's that? Which one the latest? i dun ever know that. Plz someone explain to me!
Thanks in advance! :beg:
shinzo
Cadet I
Cadet I
 
Posts: 11
Joined: 19 Mar 2008, 09:43
Gender: Male
phpBB Knowledge: 2

Re: [MOD] Search Engine Friendly (SEO) URLs 1.0.0 RC4

Postby novalis » 23 Mar 2008, 06:28

Hi,

great work with this mod! Some stuff is yet to be fixed, and here's one:

"Mark all forums as read" doesn't work when this MOD is installed. To fix it, change the following files and lines.

Spoiler:
in includes/functions_seo.php

search for this:
Code: Select all
$url_delim = (strpos($url, $append . '-') === false) ? '-' : $amp_delim;


add after:
Code: Select all
   
//:ADDED: exanto.de for "mark all forums as read"
if (strpos($url, 'index.php') !== false)
{
  $url_delim = '?';
}


in /index.php

search for this:
Code: Select all
'U_MARK_FORUMS'      => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx", 'mark=forums') : '',


replace with:

Code: Select all
'U_MARK_FORUMS'      => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_seo_sid("{$phpbb_root_path}index.$phpEx", 'mark=forums') : '',


I don't know exactly if this interferes with other SEO Urls, but my tests went fine so far.

Hope this helps!
novalis
Crewman
Crewman
 
Posts: 1
Joined: 23 Mar 2008, 06:15
Gender: Male
phpBB Knowledge: 4

Re: [MOD] Search Engine Friendly (SEO) URLs 1.0.0 RC4

Postby desertst0rm » 05 Jun 2008, 15:47

I can't find this

Code: Select all
global $_SID, $_EXTRA_URL;


What will I do to $phpbb_hook;
Code: Select all
global $_SID, $_EXTRA_URL, $phpbb_hook;


I'm having this error
Parse error: syntax error, unexpected $end in /homepages/32/d242846212/htdocs/forums/viewtopic.php on line 1651

I don't have line 1651 the max is 1650
desertst0rm
Ensign
Ensign
 
Posts: 93
Joined: 20 Mar 2008, 06:25
Gender: Male
phpBB Knowledge: 2

PreviousNext

Return to Miscellaneous MODs, Hacks and Downloads

Who is online

Users browsing this forum: Sogou [Bot] and 10 guests

cron