Some SEO features for CMSMS

Talk about writing modules and plugins for CMS Made Simple, or about specific core functionality. This board is for PHP programmers that are contributing to CMSMS not for site developers
Post Reply
marcgeldon
Forum Members
Forum Members
Posts: 45
Joined: Mon Aug 14, 2006 1:13 pm

Some SEO features for CMSMS

Post by marcgeldon »

Hello guys!

I would like to add two simple SEO features to CMSMS.

The options
- "description" (text field)
- "keywords" (text field)
- "robots" (two checkboxes for follow and index)
in the page options.

Does it make any sense to change the source and upload the changed files here?

Should I wait for CMSMS 2.0 to come out?

Is there any interest for that feature?

Check: http://dev.cmsmadesimple.org/tracker/?f ... 6&atid=104

I also had a problem with doubled content in Google, which I fixed this way, check:
http://dev.cmsmadesimple.org/tracker/?f ... 6&atid=101

What do you think? Home to hear from you soon.


Best wishes,

Marc
alby

Re: Some SEO features for CMSMS

Post by alby »

marcgeldon wrote: I would like to add two simple SEO features to CMSMS.

The options
- "description" (text field)
- "keywords" (text field)
- "robots" (two checkboxes for follow and index)
in the page options.
Have you look in Option tab of page (metadata field)?
Enter here your html meta tag

Alby
nuno

Re: Some SEO features for CMSMS

Post by nuno »


In my view would always be without the www

best R.
marcgeldon
Forum Members
Forum Members
Posts: 45
Joined: Mon Aug 14, 2006 1:13 pm

Re: Some SEO features for CMSMS

Post by marcgeldon »

I think we all know that the subdomain "www" is the standard.

So there are too options:
- make it configurable (so that the admin can choose to use it with or without "www")
- make "www" the standard, people who don't want the subdomain "www" have to change the file
calguy1000
Support Guru
Support Guru
Posts: 8169
Joined: Tue Oct 19, 2004 6:44 pm
Location: Fernie British Columbia, Canada

Re: Some SEO features for CMSMS

Post by calguy1000 »

The description, keywords, and other meta tags can be done with smarty and content blocks now..... look in the tips & tricks forum I've posted a howto there.

I feel that there is no need to add specific fields like this to CMS when a little smarty imagination can take care of the problem.

This will be even easier in CMS 2.0 when
a) modules will be able to add fields into the edit content page to associate data items with a page
b) block types will aide in specifying different types of content blocks

Putting specifics like this into packages in my opinion are always a bad thing:
a) they are always useless in some environments (intranets) which ends up in extra un-needed bloat
b) somebody always wants something slightly different, or slightly extra which then requires a generic field
    mechanism anyways.

In fact, if you ask me.... the access key stuff and title attribute etc, etc, fields that we have now should have been done in a generic way.  Hopefully this will be solved in 2.0
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
marcgeldon
Forum Members
Forum Members
Posts: 45
Joined: Mon Aug 14, 2006 1:13 pm

Re: Some SEO features for CMSMS

Post by marcgeldon »

@calguy1000 -> Maybe I am blind... but can you post the link? I cannot find the post you talked about in the Tips&Tricks forum.
calguy1000
Support Guru
Support Guru
Posts: 8169
Joined: Tue Oct 19, 2004 6:44 pm
Location: Fernie British Columbia, Canada

Re: Some SEO features for CMSMS

Post by calguy1000 »

Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
applejack
Power Poster
Power Poster
Posts: 1014
Joined: Fri Mar 30, 2007 2:28 am
Location: London

Re: Some SEO features for CMSMS

Post by applejack »

marcgeldon wrote: I think we all know that the subdomain "www" is the standard.
No it is not standard if the domain names DNS has been set up correctly then you should be able to also use http://domainname

Also I use other subdomains besides www frequently during production.

Website Design & Production
http://www.applejack.co.uk
marcgeldon
Forum Members
Forum Members
Posts: 45
Joined: Mon Aug 14, 2006 1:13 pm

Re: Some SEO features for CMSMS

Post by marcgeldon »

@applejack: DNS is set correctly "domain.com" and "www.domain.com" (for example) do both work. The problem is that for Google "domain.com" and "www.domain.com" are two different domains. So you have duplicate content in the Google index.
marcgeldon
Forum Members
Forum Members
Posts: 45
Joined: Mon Aug 14, 2006 1:13 pm

Re: Some SEO features for CMSMS

Post by marcgeldon »

@calguy: Thank you very much. Such a simple and good idea! ;-)
Zappa
Forum Members
Forum Members
Posts: 53
Joined: Thu Jan 04, 2007 9:44 pm

Re: Some SEO features for CMSMS

Post by Zappa »

marcgeldon wrote: @applejack: DNS is set correctly "domain.com" and "www.domain.com" (for example) do both work. The problem is that for Google "domain.com" and "www.domain.com" are two different domains. So you have duplicate content in the Google index.
To prevent this you can add this code to your .htaccess file

Code: Select all

#changes site.com to www.site.com
RewriteCond %{HTTP_HOST} ^mysite.com [NC] 
RewriteRule ^(.*)$ http://www.mysite.com/$1 [L,R=301]
Post Reply

Return to “Developers Discussion”