Some SEO features for CMSMS
-
- Forum Members
- Posts: 45
- Joined: Mon Aug 14, 2006 1:13 pm
Some SEO features for CMSMS
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
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
Re: Some SEO features for CMSMS
Have you look in Option tab of page (metadata field)?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.
Enter here your html meta tag
Alby
Re: Some SEO features for CMSMS
In my view would always be without the www
best R.
-
- Forum Members
- Posts: 45
- Joined: Mon Aug 14, 2006 1:13 pm
Re: Some SEO features for CMSMS
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
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
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: Some SEO features for CMSMS
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
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.
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.
-
- Forum Members
- Posts: 45
- Joined: Mon Aug 14, 2006 1:13 pm
Re: Some SEO features for CMSMS
@calguy1000 -> Maybe I am blind... but can you post the link? I cannot find the post you talked about in the Tips&Tricks forum.
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: Some SEO features for CMSMS
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.
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.
Re: Some SEO features for CMSMS
No it is not standard if the domain names DNS has been set up correctly then you should be able to also use http://domainnamemarcgeldon wrote: I think we all know that the subdomain "www" is the standard.
Also I use other subdomains besides www frequently during production.
-
- Forum Members
- Posts: 45
- Joined: Mon Aug 14, 2006 1:13 pm
Re: Some SEO features for CMSMS
@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.
-
- Forum Members
- Posts: 45
- Joined: Mon Aug 14, 2006 1:13 pm
Re: Some SEO features for CMSMS
@calguy: Thank you very much. Such a simple and good idea! 

Re: Some SEO features for CMSMS
To prevent this you can add this code to your .htaccess filemarcgeldon 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.
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]