MyBB Community Forums

Full Version: Google SEO 1.6.8 [EOL]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Not sure how it could be related. Check your forumdisplay template, it probably says <title>{$forum} na {$bbname}</title> or something like that.
(2012-03-04, 09:04 PM)frostschutz Wrote: [ -> ]Not sure how it could be related. Check your forumdisplay template, it probably says <title>{$forum} na {$bbname}</title> or something like that.

you're right, it did.

thanks for that little note!
all work fine for me but i get an error 404 on the thread page (the others SEO urlĀ“s works fine)

i need the urls like this

entrada/android(android is the forum parent)/the-thread-name

on the parent i use {parent}/{url} and on the Thread URL scheme entrada/{url}

this is my htacces
# EXAMPLE .htaccess FOR MYBB WITH GOOGLE SEO URL
# -------------------------------------------------------------------
# This file is identical to MyBB's htaccess.txt example file,
# with rewrite rules for a standard Google SEO install added.
#
# Before using this file please make sure to:
#
#   - replace /MyBB/ with your forum folder, e.g. / or /forum/
#   - replace yoursite/MyBB with your forum URL
#   - name the file '.htaccess' (starting with the dot, no .txt)
#
# Alternatively you can add the required rewrite rules to your
# existing .htaccess, the specific rules required will be displayed
# on the plugin status page once Google SEO URL is enabled.
# -------------------------------------------------------------------

Options -MultiViews +FollowSymlinks -Indexes

#
# If mod_security is enabled, attempt to disable it.
# - Note, this will work on the majority of hosts but on
#   MediaTemple, it is known to cause random Internal Server
#   errors. For MediaTemple, please remove the block below
#
<IfModule mod_security.c>
	# Turn off mod_security filtering.
	SecFilterEngine Off

	# The below probably isn't needed, but better safe than sorry.
	SecFilterScanPOST Off
</IfModule>

#
# MyBB "search engine friendly" URL rewrites
# - Note, for these to work with MyBB please make sure you have
#   the setting enabled in the Admin CP and you have this file
#   named .htaccess
#
<IfModule mod_rewrite.c>
	RewriteEngine on

# Some hosts require RewriteBase to make RewriteRules work.
RewriteBase /directory/

# Google SEO workaround for search.php highlights:
# Make this rule the first rewrite rule in your .htaccess!
RewriteRule ^([^&]*)&(.*)$ http://www.privatewebsite.net/directory/$1?$2 [L,QSA,R=301]

# Google SEO 404:
ErrorDocument 404 /directory/misc.php?google_seo_error=404

# Google SEO Sitemap:
RewriteRule ^sitemap\-([^./]+)\.xml$ misc.php?google_seo_sitemap=$1 [L,QSA,NC]

# Google SEO URL Forums:
RewriteRule ^categoria/([^./]+)$ forumdisplay.php?google_seo_forum=$1 [L,QSA,NC]

# Google SEO URL Threads:
RewriteRule ^entrada/([^./]+)$ showthread.php?google_seo_thread=$1 [L,QSA,NC]

# Google SEO URL Announcements:
RewriteRule ^anuncio$ announcements.php? [L,QSA,NC]

# Google SEO URL Users:
RewriteRule ^u$ member.php?action=profile& [L,QSA,NC]

# Google SEO URL Calendars:
RewriteRule ^calendario$ calendar.php? [L,QSA,NC]

# Google SEO URL Events:
RewriteRule ^evento$ calendar.php?action=event& [L,QSA,NC]

	# Google SEO 404:
	ErrorDocument 404 /directory/misc.php?google_seo_error=404

	# Default MyBB Rewrite Rules:
	RewriteRule ^forum-([0-9]+)\.html$ forumdisplay.php?fid=$1 [L,QSA]
	RewriteRule ^forum-([0-9]+)-page-([0-9]+)\.html$ forumdisplay.php?fid=$1&page=$2 [L,QSA]

	RewriteRule ^thread-([0-9]+)\.html$ showthread.php?tid=$1 [L,QSA]
	RewriteRule ^thread-([0-9]+)-page-([0-9]+)\.html$ showthread.php?tid=$1&page=$2 [L,QSA]
	RewriteRule ^thread-([0-9]+)-lastpost\.html$ showthread.php?tid=$1&action=lastpost [L,QSA]
	RewriteRule ^thread-([0-9]+)-nextnewest\.html$ showthread.php?tid=$1&action=nextnewest [L,QSA]
	RewriteRule ^thread-([0-9]+)-nextoldest\.html$ showthread.php?tid=$1&action=nextoldest [L,QSA]
	RewriteRule ^thread-([0-9]+)-newpost\.html$ showthread.php?tid=$1&action=newpost [L,QSA]
	RewriteRule ^thread-([0-9]+)-post-([0-9]+)\.html$ showthread.php?tid=$1&pid=$2 [L,QSA]

	RewriteRule ^post-([0-9]+)\.html$ showthread.php?pid=$1 [L,QSA]

	RewriteRule ^announcement-([0-9]+)\.html$ announcements.php?aid=$1 [L,QSA]

	RewriteRule ^user-([0-9]+)\.html$ member.php?action=profile&uid=$1 [L,QSA]

	RewriteRule ^calendar-([0-9]+)\.html$ calendar.php?calendar=$1 [L,QSA]
	RewriteRule ^calendar-([0-9]+)-year-([0-9]+)\.html$ calendar.php?action=yearview&calendar=$1&year=$2 [L,QSA]
	RewriteRule ^calendar-([0-9]+)-year-([0-9]+)-month-([0-9]+)\.html$ calendar.php?calendar=$1&year=$2&month=$3 [L,QSA]
	RewriteRule ^calendar-([0-9]+)-year-([0-9]+)-month-([0-9]+)-day-([0-9]+)\.html$ calendar.php?action=dayview&calendar=$1&year=$2&month=$3&day=$4 [L,QSA]
	RewriteRule ^calendar-([0-9]+)-week-(n?[0-9]+)\.html$ calendar.php?action=weekview&calendar=$1&week=$2 [L,QSA]

	RewriteRule ^event-([0-9]+)\.html$ calendar.php?action=event&eid=$1 [L,QSA]

	<IfModule mod_env.c>
		SetEnv SEO_SUPPORT 1
	</IfModule>
</IfModule>

#
# If Apache is compiled with built in mod_deflade/GZIP support
# then GZIP Javascript, CSS, HTML and XML so they're sent to
# the client faster.
#
<IfModule mod_deflate.c>
	AddOutputFilterByType DEFLATE application/x-javascript text/css text/html text/xml
</IfModule>

any idea?
(2012-03-04, 01:01 PM)frostschutz Wrote: [ -> ]I don't know what edithistory.php is, and sites like online.php could fill the cache up with lots of random links, which then aren't useful for anywhere else, or even for online.php itself as the user locations change.

Alright, thanks for explanation.
HI!
I want to install this plugin.
You write in help document , we should install plugin library before active this.
I upload PluginLibrary and now, I want to active it, but when I click on Install I view this message:

The selected plugin does not have to be activated.

Why?
(2012-03-09, 01:19 PM)Jondan Wrote: [ -> ]HI!
I want to install this plugin.
You write in help document , we should install plugin library before active this.
I upload PluginLibrary and now, I want to active it, but when I click on Install I view this message:

The selected plugin does not have to be activated.

Why?

Because it's not really a plugin, just a collection of useful functions used by Google SEO.
Thanks a lot Nathan Malcolm!
In a tutorial in a MyBB Support Forum I read , we should change function.php (add new codes to it)
But in help document I can not find any thing about this.

does need any changes for it?
(2012-03-09, 01:34 PM)Jondan Wrote: [ -> ]Thanks a lot Nathan Malcolm!
In a tutorial in a MyBB Support Forum I read , we should change function.php (add new codes to it)
But in help document I can not find any thing about this.

does need any changes for it?

That is what PluginLibrary is for, now edits must be aply from the ACP plugins page.
What about SEO friendly URLs for the Lite (Archive) mode? I would prefer to have keywords-stuffed SEO friendly URLs in the archive and simple URLs for the forum.
Hi all! I need a help.

I'm using a custom URL scheme for threads and forums:

Forums: forum-{url}.html
Threads: {url}.html

I want to change topic url scheme and add a numeric identifier to url like in vbulltin seo mod. For example, as at this forum: http://www.historum.com/european-history/39091-napoleon-far-had-biggest-impact-europe.html.

My .htaccess file:

    
# Google SEO URL Forums:
    RewriteRule ^forum-([^./]+)\.html$ forumdisplay.php?google_seo_forum=$1 [L,QSA,NC]

# Google SEO URL Threads:
    RewriteRule ^([^./]+)\.html$ showthread.php?google_seo_thread=$1 [L,QSA,NC]

What I need to change in .htaccess and in ACP settings of Google SEO?