Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 05-18-2009, 04:01 AM   #1
Rude Nuts Man
War Room Member
 
Irmscher's Avatar
 
Join Date: Aug 2008
Location: Rude Nuts Man's Mansion
Posts: 364
Thanks: 19
Thanked 390 Times in 36 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Default Script to make HTML website content updates dynamic.

Hey warriors

I am planning to launch my SEO website soon but...

I will have to update my HTML content time after time

And I dont want to harm my Google rankings with these occasional changes

So, I need some sort of script which would allow me to update my content dynamically and keep the same rankings with Google.

I am pretty sure there is one, just thought maybe someone has some good experience in this field.

Thanks for your time guys

Irmscher/Andrew

Irmscher is online now   Reply With Quote
Old 05-18-2009, 06:51 AM   #2
Advanced Warrior
War Room Member
 
zeurois's Avatar
 
Join Date: Feb 2007
Posts: 511
Thanks: 24
Thanked 23 Times in 9 Posts
Default Re: Script to make HTML website content updates dynamic.

Updated manually or using a script affects SE the same way. Scripts only make your life easier.


zeurois is offline   Reply With Quote
Old 05-18-2009, 10:13 AM   #3
Rude Nuts Man
War Room Member
 
Irmscher's Avatar
 
Join Date: Aug 2008
Location: Rude Nuts Man's Mansion
Posts: 364
Thanks: 19
Thanked 390 Times in 36 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Default Re: Script to make HTML website content updates dynamic.

So ...

Dam I am abit upset

I dont want to go for any Wordpress or CMS

If I will change my content Google will drop my rankings ...grrr

I really wonder if there is some sort of solution of that problem

Irmscher is online now   Reply With Quote
Old 05-18-2009, 10:31 AM   #4
Hulk Warrior
 
anth.elias's Avatar
 
Join Date: Mar 2009
Location: Atlantis
Posts: 215
Thanks: 1
Thanked 16 Times in 16 Posts
Default Re: Script to make HTML website content updates dynamic.

Nope, I learned that lesson about a three years ago poor planing on my part but there is no way to update content dynamically on a HTML site, you could use SSI to update your menus but that would be about all you could update, your only option would be to change to a CMS site.

anth.elias is offline   Reply With Quote
Old 05-18-2009, 10:38 AM   #5
HyperActive Warrior
War Room Member
 
subhub-mark's Avatar
 
Join Date: Dec 2007
Location: UK & US
Posts: 144
Blog Entries: 2
Thanks: 16
Thanked 103 Times in 25 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Default Re: Script to make HTML website content updates dynamic.

There are products like this one that allow you to edit an existing web page:

cushycms.com
i-o-s.net/iwe/howitworks.htm

These are just examples. Not used them myself, although CushyCMS has a good rep. Unlike a conventional cms i believe you just define what areas of your site you want to edit.

Mark Ramskill, SubHub
Create Your Free Website in Minutes. Now With Added Membership Goodness!

Visit www.subhub.com to Get Started
subhub-mark is offline   Reply With Quote
Old 05-18-2009, 10:53 AM   #6
HyperActive Warrior
War Room Member
 
Amanda_Davis's Avatar
 
Join Date: Jan 2009
Posts: 349
Thanks: 0
Thanked 33 Times in 26 Posts
Social Networking View Member's Twitter Profile 
Default Re: Script to make HTML website content updates dynamic.

Why don't you want to go with WordPress or other CMS? These typically rank REALLY well.

Amanda_Davis is offline   Reply With Quote
Old 05-18-2009, 10:59 AM   #7
Rude Nuts Man
War Room Member
 
Irmscher's Avatar
 
Join Date: Aug 2008
Location: Rude Nuts Man's Mansion
Posts: 364
Thanks: 19
Thanked 390 Times in 36 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Default Re: Script to make HTML website content updates dynamic.

Quote:
Originally Posted by Amanda_Davis View Post
Why don't you want to go with WordPress or other CMS? These typically rank REALLY well.
and go down pretty quicly if you dont add content time after time

Irmscher is online now   Reply With Quote
Old 05-18-2009, 11:05 AM   #8
HyperActive Warrior
War Room Member
 
Amanda_Davis's Avatar
 
Join Date: Jan 2009
Posts: 349
Thanks: 0
Thanked 33 Times in 26 Posts
Social Networking View Member's Twitter Profile 
Default Re: Script to make HTML website content updates dynamic.

Quote:
Originally Posted by Irmscher View Post
and go down pretty quicly if you dont add content time after time
All sites will drop if you don't update them or link to them... unless it's a very stale market

Amanda_Davis is offline   Reply With Quote
Old 05-18-2009, 11:36 AM   #9
HyperActive Warrior
War Room Member
 
Join Date: Jul 2007
Location: , , USA.
Posts: 133
Blog Entries: 1
Thanks: 0
Thanked 3 Times in 3 Posts
Default Re: Script to make HTML website content updates dynamic.

You can create content with Javascript, which will NOT be read by the SE. This content could come from another file. So, you update that file and your page content is changed but not noticed by the spiders. If someone does not have JS enabled browser, they will not see your changes either.

Dan

SolidSolutions is offline   Reply With Quote
Old 05-21-2009, 06:07 PM   #10
HyperActive Warrior
War Room Member
 
Join Date: Jul 2007
Location: , , USA.
Posts: 133
Blog Entries: 1
Thanks: 0
Thanked 3 Times in 3 Posts
Default Re: Script to make HTML website content updates dynamic.

What do you mean by HTML content? If it's just text type stuff but on an ASP or PHP page, you could use a database. Your database field could contain what you want displayed and your webpage just always reads that database and displays the result.

Then you can simply update the database field when you want to make a change.

Of course, if it's just a .html type of page, it may still be able to be done with Javascript, but I'm not sure about that.

Dan

SolidSolutions is offline   Reply With Quote
Old 05-21-2009, 06:37 PM   #11
Chick Magnet
 
BurgerBoy's Avatar
 
Join Date: May 2009
Location: Kentucky, USA
Posts: 193
Thanks: 18
Thanked 22 Times in 19 Posts
Default Re: Script to make HTML website content updates dynamic.

You can put php includes in html pages. When you change the php include the information will change on all your html pages that you have the php include on.

All you have to do is add a line in your .htaccess file to tell it to read php in html pages.

The code to put in your .htaccess file is:

AddHandler application/x-httpd-php5 .html

That's all there is to it.

The code for the php include on your web page is:

<?php include_once('Url of Your Include Page'); ?>

Just put the include code on your web page where you want the include information to be displayed.

You can have as many php includes on the page as you want to.

BurgerBoy is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum

Tags
content, dynamic, html, make, script, updates, website

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 01:01 PM.