<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for iTodd Central</title>
	<link>http://www.toddstauffer.com</link>
	<description>Mac guy, tech author and alt-weekly publisher Todd Stauffer.</description>
	<pubDate>Wed, 20 Aug 2008 17:38:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>

	<item>
		<title>Comment on &#8216;Showcase, Dank Showcase&#8217; by admin</title>
		<link>http://www.toddstauffer.com/2008/07/showcase-dank-showcase/#comment-3072</link>
		<author>admin</author>
		<pubDate>Sat, 02 Aug 2008 03:06:50 +0000</pubDate>
		<guid>http://www.toddstauffer.com/2008/07/showcase-dank-showcase/#comment-3072</guid>
		<description>Ah, Rick. Still horning in, I see. 

Some things never change.

(Kidding...of COURSE. I love Cheapskate, by the way. A guy in the office here was running up to Best Buy to get that 19-inch monitor you blogged about the other day.)</description>
		<content:encoded><![CDATA[<p>Ah, Rick. Still horning in, I see. </p>
<p>Some things never change.</p>
<p>(Kidding&#8230;of COURSE. I love Cheapskate, by the way. A guy in the office here was running up to Best Buy to get that 19-inch monitor you blogged about the other day.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Web 2.0 Blogging Book is Here! by admin</title>
		<link>http://www.toddstauffer.com/2007/10/my-web-20-blogging-book-is-here/#comment-3071</link>
		<author>admin</author>
		<pubDate>Sat, 02 Aug 2008 03:01:20 +0000</pubDate>
		<guid>http://www.toddstauffer.com/2007/10/my-web-20-blogging-book-is-here/#comment-3071</guid>
		<description>Russ:

Happy to try and answer your questions.

&lt;i&gt;What is the relationship between PHP, SQL and the various CMS’s? Do all CMS’s rely on them? Would any use Filemaker for instance?&lt;/i&gt;

PHP and MySQL are the most common combination of scripting language (PHP) and database technology (MySQL) used on the Web for blogging applications, though certainly not the only ones. 

I imagine Filemaker Pro could be used, but it's not a terribly robust backend database for that sort of application...nor is it as frequently found available from ISPs on hosted accounts. (A quick search of the Filemaker Pro solutions network doesn't net any results in English for "blogging.") I use Filemaker on a daily basis for ad tracking at our newspaper, but haven't come across a blogging application written for it (and, to be honest, I'm not sure what scripting hooks exist in that sense).

That said, many blogging solutions use other scripting languages (Ruby on Rails, Perl, Java, Python) and database technologies (Postgres, Oracle, etc.), it's just that the most common blogging tools that are installed by end-users seem to gravitate to LAMP (Linux, Apache, MySQL, PHP) combinations.

&lt;i&gt;You mentioned that Wordpress for instance is written in php.
So the CMS interfaces allows users to engage php scripts that access SQL data bases? When I post something the command actually activates a script that creates an SQL record much as I would if I accessed the data base directly?&lt;/i&gt;

Yup. And when the CMS is accessed by an end user, it accesses that database and drops the data found there (your entry, date information, author information, categories) into an XHTML template and displays it to the user's browser.

&lt;i&gt;Do all CMS’s have a search feature that access the underlying database?
Is it a complete keyword search? How does this relate to TAGGING content?&lt;/i&gt;

Generally they do have search features, although the robustness of that feature depends on the programmers of the blogging tool. Some might cheat for speed and search less than the whole entry; others might cleverly index your entries and search against them.

This doesn’t quite relate to tagging -- tagging is sort of a freeform categorization that enables you to assign keywords as metadata to your entries. (In some cases, the CMS might allow the end-user to tag items as well.) That's for convenience in retrieving those human-tagged items more than anything else...click the tag "Apple" and all items with that tag can be displayed by the CMS, even if they're in different categories (perhaps News, Reviews, Features, Want Ads or whatever).

&lt;i&gt;What does mean to have multiple databases? Are they independent or is there a relation?&lt;/i&gt;

I'm not sure where I got into multiple databases in the book, but it's true that ExpressionEngine, for instance, prides itself on being able to create multiple tables (or "blogs") within a database that can then be related to one another via a given identifying field. Create an "events" blog, for instance, and one of the fields can access the "venues" blog; you can then display information about a venue and its associated events on the same page.

(See the upcoming events section on this page: http://www.jacksonfreepress.com/jfp.php/events/location/57)

&lt;i&gt;If, for instance, I wanted to have an archive of resource articles (not posts) would these be stored in a searchable database? And would a search find these article as wells any posts/ comments that were related?&lt;/i&gt;

They should, although again the usefulness of the results will depend on the robustness of the CMS in question. I, for instance, have opted to rely on Google for searching the Jackson Free Press website; from the homepage, a Google search is used for the archives.

&lt;a href="http://www.google.com/search?ie=UTF-8&#038;oe=UTF-8&#038;q=Frank+Melton&#038;btnG=Search&#038;domains=www.jacksonfreepress.com&#038;sitesearch=www.jacksonfreepress.com" rel="nofollow"&gt;Google Search of Jackson Free Press site for keywords "Frank Melton"&lt;/a&gt;.

That's not for having done any particularly exhausting testing of EE's internal search capabilities, but rather just a "sense" on my part from using both that Google might be better at newspaper archives.

Hope that helps...let me know if you have other questions.</description>
		<content:encoded><![CDATA[<p>Russ:</p>
<p>Happy to try and answer your questions.</p>
<p><i>What is the relationship between PHP, SQL and the various CMS’s? Do all CMS’s rely on them? Would any use Filemaker for instance?</i></p>
<p>PHP and MySQL are the most common combination of scripting language (PHP) and database technology (MySQL) used on the Web for blogging applications, though certainly not the only ones. </p>
<p>I imagine Filemaker Pro could be used, but it&#8217;s not a terribly robust backend database for that sort of application&#8230;nor is it as frequently found available from ISPs on hosted accounts. (A quick search of the Filemaker Pro solutions network doesn&#8217;t net any results in English for &#8220;blogging.&#8221;) I use Filemaker on a daily basis for ad tracking at our newspaper, but haven&#8217;t come across a blogging application written for it (and, to be honest, I&#8217;m not sure what scripting hooks exist in that sense).</p>
<p>That said, many blogging solutions use other scripting languages (Ruby on Rails, Perl, Java, Python) and database technologies (Postgres, Oracle, etc.), it&#8217;s just that the most common blogging tools that are installed by end-users seem to gravitate to LAMP (Linux, Apache, MySQL, PHP) combinations.</p>
<p><i>You mentioned that Wordpress for instance is written in php.<br />
So the CMS interfaces allows users to engage php scripts that access SQL data bases? When I post something the command actually activates a script that creates an SQL record much as I would if I accessed the data base directly?</i></p>
<p>Yup. And when the CMS is accessed by an end user, it accesses that database and drops the data found there (your entry, date information, author information, categories) into an XHTML template and displays it to the user&#8217;s browser.</p>
<p><i>Do all CMS’s have a search feature that access the underlying database?<br />
Is it a complete keyword search? How does this relate to TAGGING content?</i></p>
<p>Generally they do have search features, although the robustness of that feature depends on the programmers of the blogging tool. Some might cheat for speed and search less than the whole entry; others might cleverly index your entries and search against them.</p>
<p>This doesn’t quite relate to tagging &#8212; tagging is sort of a freeform categorization that enables you to assign keywords as metadata to your entries. (In some cases, the CMS might allow the end-user to tag items as well.) That&#8217;s for convenience in retrieving those human-tagged items more than anything else&#8230;click the tag &#8220;Apple&#8221; and all items with that tag can be displayed by the CMS, even if they&#8217;re in different categories (perhaps News, Reviews, Features, Want Ads or whatever).</p>
<p><i>What does mean to have multiple databases? Are they independent or is there a relation?</i></p>
<p>I&#8217;m not sure where I got into multiple databases in the book, but it&#8217;s true that ExpressionEngine, for instance, prides itself on being able to create multiple tables (or &#8220;blogs&#8221;) within a database that can then be related to one another via a given identifying field. Create an &#8220;events&#8221; blog, for instance, and one of the fields can access the &#8220;venues&#8221; blog; you can then display information about a venue and its associated events on the same page.</p>
<p>(See the upcoming events section on this page: <a href="http://www.jacksonfreepress.com/jfp.php/events/location/57" rel="nofollow">http://www.jacksonfreepress.com/jfp.php/events/location/57</a>)</p>
<p><i>If, for instance, I wanted to have an archive of resource articles (not posts) would these be stored in a searchable database? And would a search find these article as wells any posts/ comments that were related?</i></p>
<p>They should, although again the usefulness of the results will depend on the robustness of the CMS in question. I, for instance, have opted to rely on Google for searching the Jackson Free Press website; from the homepage, a Google search is used for the archives.</p>
<p><a href="http://www.google.com/search?ie=UTF-8&#038;oe=UTF-8&#038;q=Frank+Melton&#038;btnG=Search&#038;domains=www.jacksonfreepress.com&#038;sitesearch=www.jacksonfreepress.com" rel="nofollow">Google Search of Jackson Free Press site for keywords &#8220;Frank Melton&#8221;</a>.</p>
<p>That&#8217;s not for having done any particularly exhausting testing of EE&#8217;s internal search capabilities, but rather just a &#8220;sense&#8221; on my part from using both that Google might be better at newspaper archives.</p>
<p>Hope that helps&#8230;let me know if you have other questions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Web 2.0 Blogging Book is Here! by russ bankson</title>
		<link>http://www.toddstauffer.com/2007/10/my-web-20-blogging-book-is-here/#comment-3067</link>
		<author>russ bankson</author>
		<pubDate>Fri, 01 Aug 2008 00:52:27 +0000</pubDate>
		<guid>http://www.toddstauffer.com/2007/10/my-web-20-blogging-book-is-here/#comment-3067</guid>
		<description>I am reading your book. It has been very useful although there are many concepts that are still a little fuzzy. In the book you listed this blog and that this would be a place to ask clarifying or amplifying questions. I am not sure this is the method to do so but I can not see any other means of contacting you.


Questions: 
What is the relationship between PHP, SQL and the various CMS's? Do all CMS's rely on them? Would any use Filemaker for instance?

You mentioned that Wordpress for instance is written in php. 
So the CMS interfaces allows users to engage php scripts that access SQL data bases? When I post something the command actually activates a script that creates an SQL record  much as I would if I accessed the data base directly? 

Do all CMS's have a search feature that access the underlying database? 
Is it a complete keyword search? How does this relate to TAGGING content?

What does mean to have multiple databases? Are they independent or is there a relation? 
If, for instance, I wanted to have an archive of resource articles (not posts) would these be stored in  a searchable database? And would  a search find these article as wells any posts/ comments that were related?

I hope THIS post is not too muddled but it reflects my current confusion. Would study of php and SQL books address this confusion?

Can you clarify?</description>
		<content:encoded><![CDATA[<p>I am reading your book. It has been very useful although there are many concepts that are still a little fuzzy. In the book you listed this blog and that this would be a place to ask clarifying or amplifying questions. I am not sure this is the method to do so but I can not see any other means of contacting you.</p>
<p>Questions:<br />
What is the relationship between PHP, SQL and the various CMS&#8217;s? Do all CMS&#8217;s rely on them? Would any use Filemaker for instance?</p>
<p>You mentioned that Wordpress for instance is written in php.<br />
So the CMS interfaces allows users to engage php scripts that access SQL data bases? When I post something the command actually activates a script that creates an SQL record  much as I would if I accessed the data base directly? </p>
<p>Do all CMS&#8217;s have a search feature that access the underlying database?<br />
Is it a complete keyword search? How does this relate to TAGGING content?</p>
<p>What does mean to have multiple databases? Are they independent or is there a relation?<br />
If, for instance, I wanted to have an archive of resource articles (not posts) would these be stored in  a searchable database? And would  a search find these article as wells any posts/ comments that were related?</p>
<p>I hope THIS post is not too muddled but it reflects my current confusion. Would study of php and SQL books address this confusion?</p>
<p>Can you clarify?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8216;Showcase, Dank Showcase&#8217; by Rick Broida</title>
		<link>http://www.toddstauffer.com/2008/07/showcase-dank-showcase/#comment-3057</link>
		<author>Rick Broida</author>
		<pubDate>Mon, 28 Jul 2008 18:22:39 +0000</pubDate>
		<guid>http://www.toddstauffer.com/2008/07/showcase-dank-showcase/#comment-3057</guid>
		<description>Just for the record, I never liked you either. But I did enjoy adding those silly "GameSpot Live" segments to the show. To this day I get letters from rabid fans. Anyway, Dank...er, Dave... is busy collaborating on MY project. Get your own Dave. Or Dank.</description>
		<content:encoded><![CDATA[<p>Just for the record, I never liked you either. But I did enjoy adding those silly &#8220;GameSpot Live&#8221; segments to the show. To this day I get letters from rabid fans. Anyway, Dank&#8230;er, Dave&#8230; is busy collaborating on MY project. Get your own Dave. Or Dank.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8216;Showcase, Dank Showcase&#8217; by Dave  Johnson</title>
		<link>http://www.toddstauffer.com/2008/07/showcase-dank-showcase/#comment-3056</link>
		<author>Dave  Johnson</author>
		<pubDate>Mon, 28 Jul 2008 04:53:40 +0000</pubDate>
		<guid>http://www.toddstauffer.com/2008/07/showcase-dank-showcase/#comment-3056</guid>
		<description>So, do all the cool kids close high powered business deals on their blogs these days? I feel like I'm being double dared in front of my 4th grade classmates... Would I get to do Dank again? I miss Dank.</description>
		<content:encoded><![CDATA[<p>So, do all the cool kids close high powered business deals on their blogs these days? I feel like I&#8217;m being double dared in front of my 4th grade classmates&#8230; Would I get to do Dank again? I miss Dank.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Disk Doctors Re-animated by admin</title>
		<link>http://www.toddstauffer.com/2007/09/disk-doctors-re-animated/#comment-3054</link>
		<author>admin</author>
		<pubDate>Sun, 27 Jul 2008 23:03:57 +0000</pubDate>
		<guid>http://www.toddstauffer.com/2007/09/disk-doctors-re-animated/#comment-3054</guid>
		<description>Naw, you just looked taller when sitting or standing next to me. 

You'd think you'd try to do that more often.</description>
		<content:encoded><![CDATA[<p>Naw, you just looked taller when sitting or standing next to me. </p>
<p>You&#8217;d think you&#8217;d try to do that more often.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Disk Doctors Re-animated by Steven Sashen</title>
		<link>http://www.toddstauffer.com/2007/09/disk-doctors-re-animated/#comment-3028</link>
		<author>Steven Sashen</author>
		<pubDate>Fri, 25 Jul 2008 04:56:17 +0000</pubDate>
		<guid>http://www.toddstauffer.com/2007/09/disk-doctors-re-animated/#comment-3028</guid>
		<description>I think I was taller in the past.

(Hola Toddsky)</description>
		<content:encoded><![CDATA[<p>I think I was taller in the past.</p>
<p>(Hola Toddsky)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Web 2.0 Blogging Book is Here! by admin</title>
		<link>http://www.toddstauffer.com/2007/10/my-web-20-blogging-book-is-here/#comment-2948</link>
		<author>admin</author>
		<pubDate>Tue, 01 Jul 2008 16:19:38 +0000</pubDate>
		<guid>http://www.toddstauffer.com/2007/10/my-web-20-blogging-book-is-here/#comment-2948</guid>
		<description>Thanks for the kind words everyone. Tell your friends! ;-)</description>
		<content:encoded><![CDATA[<p>Thanks for the kind words everyone. Tell your friends! <img src='http://www.toddstauffer.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Disk Doctors Re-animated by admin</title>
		<link>http://www.toddstauffer.com/2007/09/disk-doctors-re-animated/#comment-2947</link>
		<author>admin</author>
		<pubDate>Tue, 01 Jul 2008 15:57:03 +0000</pubDate>
		<guid>http://www.toddstauffer.com/2007/09/disk-doctors-re-animated/#comment-2947</guid>
		<description>Yes, it's dated, no doubt. You can tell that from the lack of gray in my hair.</description>
		<content:encoded><![CDATA[<p>Yes, it&#8217;s dated, no doubt. You can tell that from the lack of gray in my hair.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Web 2.0 Blogging Book is Here! by osmas</title>
		<link>http://www.toddstauffer.com/2007/10/my-web-20-blogging-book-is-here/#comment-2916</link>
		<author>osmas</author>
		<pubDate>Tue, 17 Jun 2008 19:41:37 +0000</pubDate>
		<guid>http://www.toddstauffer.com/2007/10/my-web-20-blogging-book-is-here/#comment-2916</guid>
		<description>Got the book and thoroughly enjoying it. Wanting  to transfer my sites to wordpress and your book just makes everything crystal clear and  will help my Internet and affiliate marketing goals come to be.</description>
		<content:encoded><![CDATA[<p>Got the book and thoroughly enjoying it. Wanting  to transfer my sites to wordpress and your book just makes everything crystal clear and  will help my Internet and affiliate marketing goals come to be.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
