Welcome Guest ( Log In | Register )



 
Reply to this topicStart new topic
> Cms Design Problem - Dynamic Vs Static Content, Keyword availibility for search and ad-e
Vyoma
post Jan 23 2006, 11:56 AM
Post #1


Cosmic Overlord
Group Icon

Group: Members
Posts: 550
Joined: 26-November 05
From: Chennai, India
Member No.: 9,811



CMS Design problem - dynamic Vs static content - Keyword availibility for search and ad-engines

Here is the problem I am facing. I want method so that context sensitive ads can be put on my webpages.

I am on my way to create my own simple CMS. The basic structure is that, I would be using CSS for presentation. The database would be holding the content. I would use the PHP to fetch the content from database and then show the HTML to any requests that come.

Now, if I plan to put it up as a dynamic serving pages, the context sensitve ads may not be able to home in on the keywords. For example, I contacted Google Adsense people, and they said that Adsense would not be able to parse the dyanamicaly generated html page properly to serve the adspace from their inventory. They adviced me to have static pages of HTML.

Come to think of it, if it cannot be seen properly by the ad-engines, I think it would not be parsed easily by the search-engines either. It would be like commiting a web-hara-kiri interms of page ranks. I would be designing the death, right into the inception of my website.

How can I incorparate this into the already designed system I have? The overall structure of my design can be seen in the following picture:
user posted image

Can any of you think, how I should proceed with the design here? How should I put it into the design so that it can be parsed by ad-engines and search engines alike?
Go to the top of the page
 
+Quote Post
unimatrix
post Jan 23 2006, 10:23 PM
Post #2


Premium Member
Group Icon

Group: Members
Posts: 493
Joined: 15-August 05
Member No.: 7,873



QUOTE(Vyoma @ Jan 23 2006, 04:56 AM)
CMS Design problem - dynamic Vs static content - Keyword availibility for search and ad-engines

Here is the problem I am facing.  I want method so that context sensitive ads can be put on my webpages.

I am on my way to create my own simple CMS.  The basic structure is that, I would be using CSS for presentation.  The database would be holding the content.  I would use the PHP to fetch the content from database and then show the HTML to any requests that come.

Now, if I plan to put it up as a dynamic serving pages, the context sensitve ads may not be able to home in on the keywords.  For example, I contacted Google Adsense people, and they said that Adsense would not be able to parse the dyanamicaly generated html page properly to serve the adspace from their inventory.  They adviced me to have static pages of HTML.

Come to think of it, if it cannot be seen properly by the ad-engines, I think it would not be parsed easily by the search-engines either.  It would be like commiting a web-hara-kiri interms of page ranks.  I would be designing the death, right into the inception of my website.

How can I incorparate this into the already designed system I have?  The overall structure of my design can be seen in the following picture:
user posted image

Can any of you think, how I should proceed with the design here?  How should I put it into the design so that it can be parsed by ad-engines and search engines alike?
*



Some CMS systems create .html static output pages. I know with Drupel with the "search friendly" settting on that it creates static pages. Then if you edit it, then it generates a new static page at the same spot. So that is an idea you might want to explore.

Although if you look at many forums, the'll have adsense ads that are displayed that advertise Macs if the topic is apple related, etc.

Go to the top of the page
 
+Quote Post
Vyoma
post Jan 24 2006, 12:56 PM
Post #3


Cosmic Overlord
Group Icon

Group: Members
Posts: 550
Joined: 26-November 05
From: Chennai, India
Member No.: 9,811



On a vague note, I did explore the idea of having the CMS system output a static HTML page. Yes, I would agree that it is a novel idea. I have seen that happen on the Google Blogster systems. I do not know if it stores the data in database, but once we have entered a post, we need to do a 'publishing' that outputs HTML pages. Thanks for bringing that out and making it clear.

But, with that in place, would there not be a kind of unneeded redundancy in the system. I mean, there would be the content in the database, and there would be the same as HTML pages. I know, if there is no other meathod, I would go for this option itself.

Keeping this aside, is there anyother meathod anyone of you can think of?
Go to the top of the page
 
+Quote Post
miCRoSCoPiC^eaRt...
post Jan 25 2006, 02:08 PM
Post #4


PsYcheDeLiC dR3aMeR
Group Icon

Group: Admin
Posts: 2,242
Joined: 29-January 05
From: Nakorn Chaisri, Thailand
Member No.: 2,411



For one thing - usually, dynamically generated pages contain a lot of variables in the URL, something like:

www.somedomain.com/somepage.php?id=x&page=y&section=abcd

That's what both Ad engines and Search engines hate like anything causing them to avoid such pages like plague.

One easy alternative would be to take advantage of Apache's MOD_REWRITE module, to serve the web-pages in such a manner that they appear as static content to the Search & Ad Spiders alike. Take for example this forum itself - it uses mod_rewrite to it's fullest to generate what is known as SEF or Search Engine Friendly URLs.

While in reality the pages are still dynamically generated by the forum software, when you view them in your browser, the URL appears to be that of a static page as shown in your address bar. This is the doing of mod_rewrite.

About the exact process you'll find plenty of articles on the net - just google for mod_rewrite and search engine freindly url.

Invision Power Board has a module called FURL or Friendly URL, which can be downloaded from invisionize.com. You can study the php code and get an idea how this is done. It's not a very complicated process actually - although my limited knowhow doesn't permit me to get into an indepth discussion. That would be OpaQue's speciality.
Go to the top of the page
 
+Quote Post
Vyoma
post Jan 26 2006, 03:33 PM
Post #5


Cosmic Overlord
Group Icon

Group: Members
Posts: 550
Joined: 26-November 05
From: Chennai, India
Member No.: 9,811



Apache's MOD_REWRITE module, you say.
Hmmm... is it available here at AstaHost? It surely looks like it is worth a try.

May be at first, I would go about serving pages in the earier method, and then by that time, I would have learned this method and then start using it.

So, is this module available here in AstaHost, and how would my luck go at OpaQue reading this thread?
Go to the top of the page
 
+Quote Post
miCRoSCoPiC^eaRt...
post Jan 26 2006, 04:39 PM
Post #6


PsYcheDeLiC dR3aMeR
Group Icon

Group: Admin
Posts: 2,242
Joined: 29-January 05
From: Nakorn Chaisri, Thailand
Member No.: 2,411



Yup - mod_rewrite is pretty much at work. Our board gives you a live demo of it and in case you're using IPB or any other forum software that supports the SEF URLs, then you can generate them from your own hosting account to with the help of mod_rewrite.

My advise would be for you to get your CMS up and working with dynamic pages first. Get all your units to work in harmonious conjunction - only then start delving into the mod_rewrite issue - coz I can assure you it's gonna take you just a day or two to get the static url generation working. It's the CMS part that's going to take you for the real ride tongue.gif
Go to the top of the page
 
+Quote Post
Vyoma
post Feb 2 2006, 10:19 AM
Post #7


Cosmic Overlord
Group Icon

Group: Members
Posts: 550
Joined: 26-November 05
From: Chennai, India
Member No.: 9,811



Thanks for that piece of advice, miCRoSCoPiC^eaRthLinG (Did I put all the caps and small right? tongue.gif).

Yes, I am putting much of effort in designing the CMS. Even though, I plan for it to be very basic, I want it to be very stable and robust. So, it is taking a long time, but I hope, I do not get desperate and start rushing things up.

smile.gif
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Help! Problem With My Flash-Drive(1)
  2. Error 406 - Problem In My Phpbb Forum(8)
  3. Singingfish(3)
  4. A Free Graphic Design Program That Could Equal Photoshop?(35)
  5. Photoshop Cropping Problem(7)
  6. Windows Live Search(14)
  7. Google- Changing The Search Preferences!(3)
  8. Blue Screen - irql_not_less_or_equal(35)
  9. Spam Problem On My Forums(26)
  10. PHP & MySQL: Displaying Content From A Given ID(6)
  11. Problem With Drag And Drop (or So It Seems).(11)
  12. Win Rar Password Problem(7)
  13. Trojan / Virus Problem ,please Help(18)
  14. A Gaiaonline Problem(9)
  15. How Do I Create Static Routes In Windows Xp?(11)
  1. Do Google Search Better Than Yahoo?(15)
  2. Administrator Account Problem In Microsoft Xp [solved](20)
  3. Live Search Webmaster Center(1)
  4. How To Create A "user Profile" Page.(14)
  5. Yahoo! Search Boss(5)
  6. Homepages Friends(5)
  7. Download From Ftpz, Using Ftp Search Sitez(0)
  8. [c/c++][linux] Linking With A -l Is Static Or Dynamic?(0)
  9. Design A Contact Form In Flex Part 1(0)
  10. Problem With Div's In Ie6 And Lower(4)
  11. How To Design A Form In Flex 2(0)
  12. How To Design A Contact Form Part 3(0)
  13. Pc Problem(4)


 



- Lo-Fi Version Time is now: 7th October 2008 - 01:48 AM