<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>eLearningShow.com Blog</title>
	<atom:link href="http://elearningshow.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://elearningshow.wordpress.com</link>
	<description>We provide complete elearning, instructional design, online curriculum development solutions please visit eLearningShow.com for more information.</description>
	<lastBuildDate>Mon, 09 Jan 2012 11:20:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='elearningshow.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>eLearningShow.com Blog</title>
		<link>http://elearningshow.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://elearningshow.wordpress.com/osd.xml" title="eLearningShow.com Blog" />
	<atom:link rel='hub' href='http://elearningshow.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to create a secure online form</title>
		<link>http://elearningshow.wordpress.com/2011/11/16/how-to-create-a-secure-online-form/</link>
		<comments>http://elearningshow.wordpress.com/2011/11/16/how-to-create-a-secure-online-form/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 01:41:15 +0000</pubDate>
		<dc:creator>elearningshow</dc:creator>
				<category><![CDATA[perl https http ssl certificate]]></category>

		<guid isPermaLink="false">http://elearningshow.wordpress.com/?p=292</guid>
		<description><![CDATA[I have spent a great deal of time researching and preparing a secure site for a client. We purchased the domain name, a Virtual Private Server and got an SSL Certificate from Entrust. I created an online PERL Script to process the contents of the form. I created a .htaccess file to force any script [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elearningshow.wordpress.com&amp;blog=1023539&amp;post=292&amp;subd=elearningshow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have spent a great deal of time researching and preparing a secure site for a client.</p>
<p><img class="size-full wp-image-293 aligncenter" title="entrust_secure" src="http://elearningshow.files.wordpress.com/2011/11/entrust_secure.jpg?w=450" alt=""   /></p>
<p>We purchased the domain name, a Virtual Private Server and got an SSL Certificate from Entrust.</p>
<p style="text-align:left;">I created an online PERL Script to process the contents of the form.</p>
<p>I created a <strong>.htaccess</strong> file to force any script calls in the cgi-bin to be secure script calls. This is accomplished by forcing all cgi scripts from http to https.</p>
<blockquote><p>http://yourwebsite.com/cgi-bin/yourscript.cgi to</p>
<p>https://yourwebsite.com/cgi-bin/yourscript.cgi</p></blockquote>
<p>Sample <strong>.htaccess</strong> file below:</p>
<blockquote><p>RewriteEngine on<br />
RewriteCond %{SERVER_PORT} !^443$<br />
RewriteRule ^(.*)?$ https://yoururl.com%{REQUEST_URI}</p></blockquote>
<p>Next we tested the server settings to ensure that the certificate was configured correctly. Take note if you can not run this script either your server does not support PHP or something is not working with the install of your SSL Certificate.</p>
<p><img class="alignnone size-full wp-image-310 aligncenter" title="PHP_Lang" src="http://elearningshow.files.wordpress.com/2011/11/php_lang.jpg?w=450" alt=""   /></p>
<p>http://yourwebsite.com/ssl_test.php &#8211; <em><strong>should display unsecure<br />
</strong></em></p>
<p>https://yourwebsite.com/ssl_test.php &#8211; <em><strong>should display secure</strong></em></p>
<blockquote><p>&lt;?php</p>
<p>//Save this script as:  ssl_test.php</p>
<p>//http://yourwebsite.com/ssl_test.php &#8211; <em><strong>should display unsecure<br />
</strong></em></p>
<p>//https://yourwebsite.com/ssl_test.php &#8211; <em><strong>should display secure</strong></em></p>
<p>if (isset($_SERVER['HTTPS']) )<br />
{<br />
echo &#8220;SECURE: This page is being accessed through a secure connection.</p>
<p>&#8220;;<br />
}<br />
else<br />
{<br />
echo &#8220;UNSECURE: This page is being access through an unsecure connection.</p>
<p>&#8220;;<br />
}</p>
<p>// Create the keypair<br />
$res=openssl_pkey_new();</p>
<p>// Get private key<br />
openssl_pkey_export($res, $privatekey);</p>
<p>// Get public key<br />
$publickey=openssl_pkey_get_details($res);<br />
$publickey=$publickey["key"];</p>
<p>echo &#8220;Private Key:<br />
$privatekey</p>
<p>Public Key:<br />
$publickey</p>
<p>&#8220;;</p>
<p>$cleartext = &#8217;1234 5678 9012 3456&#8242;;</p>
<p>echo &#8220;Clear text:<br />
$cleartext</p>
<p>&#8220;;</p>
<p>openssl_public_encrypt($cleartext, $crypttext, $publickey);</p>
<p>echo &#8220;Crypt text:<br />
$crypttext</p>
<p>&#8220;;</p>
<p>openssl_private_decrypt($crypttext, $decrypted, $privatekey);</p>
<p>echo &#8220;Decrypted text:<br />
$decrypted</p>
<p>&#8220;;<br />
?&gt;</p></blockquote>
<p>Since the form was created and parsed using PERL I needed to adjust the sendmail feature. If you use the standard sendmail, it is sent as nobody and is interrupted as spam by many mail servers. This requires you to send a authenticated email message, below is the PERL code to do just that:</p>
<p><img class="aligncenter size-full wp-image-294" title="PERL_LANG" src="http://elearningshow.files.wordpress.com/2011/11/perl_lang.jpg?w=450" alt=""   /></p>
<blockquote><p>#!/usr/bin/perl</p>
<p>use Mail::Sendmail;<br />
use Net::SMTP::SSL;</p>
<p>$username = &#8216;your@email.com&#8217;;<br />
$password = &#8216;yourpassword&#8217;;<br />
$server = &#8216;smtp.sendmailserver.com&#8217;;</p>
<p>my %mail = (<br />
From=&gt; &#8216;your@email.com&#8217;,<br />
To=&gt; &#8216;client@email.com&#8217;,<br />
#Cc=&gt; &#8216;notneeded@email.com&#8217;,<br />
# Cc will appear in the header. (Bcc will not)<br />
Subject =&gt; &#8216;Authenticated Sendmail Test&#8217;,<br />
&#8216;X-Mailer&#8217; =&gt; &#8220;Mail::Sendmail version $Mail::Sendmail::VERSION&#8221;,<br />
);</p>
<p>$mail{Smtp} = Net::SMTP::SSL-&gt;new($server, Port=&gt; 465, Debug=&gt;1) or warn &#8220;$!\n&#8221;;<br />
$mail{auth} = ($username,$password) or die &#8220;Can&#8217;t authenticate: $!\n&#8221;;<br />
$mail{&#8216;X-custom&#8217;} = &#8216;My custom additional header&#8217;;<br />
$mail{Message} = &#8220;Authenticated Sendmail Test&#8221;;<br />
# cheat on the date:<br />
$mail{Date} = Mail::Sendmail::time_to_date( time() &#8211; 86400 );</p>
<p>print &#8220;Content-type: text/html\n\n&#8221;;<br />
print &lt;&lt;&#8221;HTML&#8221;;<br />
Authenticated Sendmail Test</p>
<p>HTML</p></blockquote>
<p><strong>TIP 1: </strong> You may register your certificate as either:</p>
<blockquote><p>https://yourdomain.com and/or</p>
<p>https://www.yourdomain.com</p></blockquote>
<p>You may see this error message below if you attempt to access your SSL Certificate by not selecting the correctly registered SSL Certificate.  Below screenshot was taken using the FireFox Browser the message will look similar in different browsers.  Use this message as a warning that you are not accessing the SSL Certificate correctly, do not change any options available to you on this screen.</p>
<p><img class="aligncenter  wp-image-314" title="cert_error" src="http://elearningshow.files.wordpress.com/2011/11/cert_error.jpg?w=288&#038;h=190" alt="" width="288" height="190" /></p>
<p><strong>TIP 2</strong>: I was told by our hosting provider that everything was installed and configured properly including the SSL Certificate.  As it turns out that was not the case, I spend days researching to see if my PERL Script needed to be revised to work with the SSL Certificate and the script was just fine all along.</p>
<p><strong></strong>If your script works before the SSL is installed it should work after the SSL is installed.  You may need to do minor tweaks in the form for example:</p>
<blockquote><p>&lt;form action=https://location of your script&gt;</p></blockquote>
<p>As well, I have used several online sources to improve the security of the script.  I have implemented 27 tweaks for added security and recommended an additional 8 security standards.</p>
<p>Here are some links to assist you in building a secure online form:</p>
<ul>
<li>CGI &#8211; Security</li>
</ul>
<ol>
<ul>
<li><a href="http://verysimple.com/2006/03/30/securing-your-cgi-bin/" target="_blank">Securing your Cgi-bin used to improve script security</a>.</li>
<li><a href="http://oreilly.com/catalog/cgi2/chapter/ch08.html" target="_blank">CGI Programming with Perl, 2nd Edition</a></li>
</ul>
</ol>
<p>I like to thank Michael Goodyear for his help along with other developers that provided some additional code.</p>
<a href="http://polldaddy.com/poll/5674075/">View This Poll</a>
<p>All the best,</p>
<p>Kevin Brake<br />
eLearningShow.com</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elearningshow.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elearningshow.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elearningshow.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elearningshow.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elearningshow.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elearningshow.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elearningshow.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elearningshow.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elearningshow.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elearningshow.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elearningshow.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elearningshow.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elearningshow.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elearningshow.wordpress.com/292/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elearningshow.wordpress.com&amp;blog=1023539&amp;post=292&amp;subd=elearningshow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elearningshow.wordpress.com/2011/11/16/how-to-create-a-secure-online-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eec5e192b6db3935d0b2e39027acf3d2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elearningshow</media:title>
		</media:content>

		<media:content url="http://elearningshow.files.wordpress.com/2011/11/entrust_secure.jpg" medium="image">
			<media:title type="html">entrust_secure</media:title>
		</media:content>

		<media:content url="http://elearningshow.files.wordpress.com/2011/11/php_lang.jpg" medium="image">
			<media:title type="html">PHP_Lang</media:title>
		</media:content>

		<media:content url="http://elearningshow.files.wordpress.com/2011/11/perl_lang.jpg" medium="image">
			<media:title type="html">PERL_LANG</media:title>
		</media:content>

		<media:content url="http://elearningshow.files.wordpress.com/2011/11/cert_error.jpg" medium="image">
			<media:title type="html">cert_error</media:title>
		</media:content>
	</item>
		<item>
		<title>Do we have any bilingual French and English Articulate Developers? If so, please respond with your contact information below.</title>
		<link>http://elearningshow.wordpress.com/2011/09/02/do-we-have-any-bilingual-french-and-english-articulate-developers-if-so-please-respond-with-your-contact-information-below/</link>
		<comments>http://elearningshow.wordpress.com/2011/09/02/do-we-have-any-bilingual-french-and-english-articulate-developers-if-so-please-respond-with-your-contact-information-below/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 01:00:16 +0000</pubDate>
		<dc:creator>elearningshow</dc:creator>
		
		<guid isPermaLink="false">http://elearningshow.wordpress.com/?p=278</guid>
		<description><![CDATA[Bilingual French and English Articulate Developers I will be referring colleagues on a regular basis to this thread.  Feel free to add your name and URL along with samples of your work in the comments section below. Update I received interest in this project from two bilingual Articulate Developers.  One was able to complete a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elearningshow.wordpress.com&amp;blog=1023539&amp;post=278&amp;subd=elearningshow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Bilingual French and English Articulate Developers</h3>
<p>I will be referring colleagues on a regular basis to this thread.  Feel free to add your name and URL along with samples of your work in the comments section below.</p>
<hr />
<p><em>Update</em></p>
<p>I received interest in this project from two bilingual Articulate Developers.  One was able to complete a sample translation.  The translation project is on hold until the entire course is redone in English.</p>
<hr />
<p><em>Instructions</em></p>
<ol>
<li>Download the sample &#8211; <a href="http://wp.me/a4igH-4A" target="_blank">click here to download</a></li>
<li>Translate three screens into French</li>
<li>Provide time estimate needed to complete your sample</li>
<li>Provide cost estimate to complete your sample</li>
<li>Please confirm your dialect of French would it be considered Quebec French, Atlantic Canadian French or Paris French?</li>
<li>Provide a time frame and cost estimate to complete all of Module 8</li>
<li>Total Slides 212</li>
<li>Total Words 8149</li>
<li>No special graphic or video requirements</li>
</ol>
<p><strong>Note:  Only realistic time frames and price ranges will be contacted to complete the project.</strong></p>
<p>All the best,</p>
<p>Kevin Brake<br />
eLearningShow.com</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elearningshow.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elearningshow.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elearningshow.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elearningshow.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elearningshow.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elearningshow.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elearningshow.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elearningshow.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elearningshow.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elearningshow.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elearningshow.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elearningshow.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elearningshow.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elearningshow.wordpress.com/278/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elearningshow.wordpress.com&amp;blog=1023539&amp;post=278&amp;subd=elearningshow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elearningshow.wordpress.com/2011/09/02/do-we-have-any-bilingual-french-and-english-articulate-developers-if-so-please-respond-with-your-contact-information-below/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eec5e192b6db3935d0b2e39027acf3d2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elearningshow</media:title>
		</media:content>
	</item>
		<item>
		<title>My response to how to create a on demand learning system</title>
		<link>http://elearningshow.wordpress.com/2011/07/24/my-response-to-how-to-create-a-on-demand-learning-system/</link>
		<comments>http://elearningshow.wordpress.com/2011/07/24/my-response-to-how-to-create-a-on-demand-learning-system/#comments</comments>
		<pubDate>Sun, 24 Jul 2011 20:16:51 +0000</pubDate>
		<dc:creator>elearningshow</dc:creator>
		
		<guid isPermaLink="false">http://elearningshow.wordpress.com/?p=267</guid>
		<description><![CDATA[I have had great success using a wiki as a knowledge base or &#8220;Learning on Demand&#8221; system. The wiki is a searchable database of all content and includes: videos, screen recordings, tables, charts, process flows and diagrams. We use SharePoint to store all documents and these documents are embedded links found in the wiki pages. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elearningshow.wordpress.com&amp;blog=1023539&amp;post=267&amp;subd=elearningshow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have had great success using a wiki as a knowledge base or &#8220;Learning on Demand&#8221; system.</p>
<p>The wiki is a searchable database of all content and includes: videos, screen recordings, tables, charts, process flows and diagrams.</p>
<p>We use SharePoint to store all documents and these documents are embedded links found in the wiki pages.</p>
<p>Hope this information proves useful.</p>
<p>All the best,</p>
<p>Kevin Brake<br />
eLearningShow.com</p>
<p>For more information visit:</p>
<p><a href="http://www.linkedin.com/groupAnswers?viewQuestionAndAnswers=&amp;discussionID=63187374&amp;gid=1995461&amp;trk=EML_anet_di_pst_ttle">http://www.linkedin.com/groupAnswers?viewQuestionAndAnswers=&amp;discussionID=63187374&amp;gid=1995461&amp;trk=EML_anet_di_pst_ttle</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elearningshow.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elearningshow.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elearningshow.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elearningshow.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elearningshow.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elearningshow.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elearningshow.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elearningshow.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elearningshow.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elearningshow.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elearningshow.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elearningshow.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elearningshow.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elearningshow.wordpress.com/267/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elearningshow.wordpress.com&amp;blog=1023539&amp;post=267&amp;subd=elearningshow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elearningshow.wordpress.com/2011/07/24/my-response-to-how-to-create-a-on-demand-learning-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eec5e192b6db3935d0b2e39027acf3d2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elearningshow</media:title>
		</media:content>
	</item>
		<item>
		<title>My response to what the costs are of developing an e-learning course (say from very plain to very complex).</title>
		<link>http://elearningshow.wordpress.com/2011/07/10/my-response-to-what-the-costs-are-of-developing-an-e-learning-course-say-from-very-plain-to-very-complex/</link>
		<comments>http://elearningshow.wordpress.com/2011/07/10/my-response-to-what-the-costs-are-of-developing-an-e-learning-course-say-from-very-plain-to-very-complex/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 19:00:05 +0000</pubDate>
		<dc:creator>elearningshow</dc:creator>
		
		<guid isPermaLink="false">http://elearningshow.wordpress.com/?p=261</guid>
		<description><![CDATA[Costs of developing a basic eLearning Course: If you have existing PowerPoint Presentations and want to convert them without the use of audio using Articulate.  You can be up and running very fast.  Since no voiceover work is required, little programming is needed the content can be up and running quickly. It will be the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elearningshow.wordpress.com&amp;blog=1023539&amp;post=261&amp;subd=elearningshow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Costs of developing a basic eLearning Course:</p>
<p>If you have existing PowerPoint Presentations and want to convert them without the use of audio using Articulate.  You can be up and running very fast.  Since no voiceover work is required, little programming is needed the content can be up and running quickly.</p>
<p>It will be the cheapest solution, however depending on your solution provider the price point for the delivery of such a service could vary.</p>
<p>I have created another posting regarding the considerations for estimating eLearning Development costs here:</p>
<p><a href="http://t.co/rJDDEou">http://t.co/rJDDEou</a></p>
<p>&#8230;and this is another good document:</p>
<p>75 Tips to Reduce eLearning Costs &#8211; Free eBook Now Available<br />
<a href="http://bit.ly/kiwzvz">http://bit.ly/kiwzvz</a></p>
<p>&nbsp;</p>
<p>All the best,</p>
<p>Kevin Brake<br />
eLearningShow.com</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elearningshow.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elearningshow.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elearningshow.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elearningshow.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elearningshow.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elearningshow.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elearningshow.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elearningshow.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elearningshow.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elearningshow.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elearningshow.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elearningshow.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elearningshow.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elearningshow.wordpress.com/261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elearningshow.wordpress.com&amp;blog=1023539&amp;post=261&amp;subd=elearningshow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elearningshow.wordpress.com/2011/07/10/my-response-to-what-the-costs-are-of-developing-an-e-learning-course-say-from-very-plain-to-very-complex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eec5e192b6db3935d0b2e39027acf3d2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elearningshow</media:title>
		</media:content>
	</item>
		<item>
		<title>My response to what is an LMS</title>
		<link>http://elearningshow.wordpress.com/2011/07/10/my-response-to-what-is-an-lms/</link>
		<comments>http://elearningshow.wordpress.com/2011/07/10/my-response-to-what-is-an-lms/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 18:59:02 +0000</pubDate>
		<dc:creator>elearningshow</dc:creator>
		
		<guid isPermaLink="false">http://elearningshow.wordpress.com/?p=258</guid>
		<description><![CDATA[Hi Monica, re:  What is an LMS An LMS is a Learning Management System to be used to manage the delivery of online training to participants. Some popular providers include: - Moodle (open source) - Joomla - TikiWiki (limited features) - Microsoft (poorly rated) - SharePoint (limited features) - Articulate - Blackboard - Skillport (If [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elearningshow.wordpress.com&amp;blog=1023539&amp;post=258&amp;subd=elearningshow&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi Monica,</p>
<p>re:  What is an LMS</p>
<p>An LMS is a Learning Management System to be used to manage the delivery of online training to participants.</p>
<p>Some popular providers include:</p>
<p>- Moodle (open source)<br />
- Joomla<br />
- TikiWiki (limited features)<br />
- Microsoft (poorly rated)<br />
- SharePoint (limited features)<br />
- Articulate<br />
- Blackboard<br />
- Skillport</p>
<p>(If your LMS is not listed, please post a comment with the name and link of your LMS)<br />
The quickest and easiest one for me to setup is Moodle.</p>
<p>Other LMS options do not charge a flat rate hosting fee.  The cost of LMS Hosting can vary based on the number of modules, file size of modules, number of courses, number of students, number of instructors, number of features, customization of features and so on.</p>
<p>The Moodle Open Source LMS is fairly easy to install.  It&#8217;s down side is if you are not a Moodle Expert and run into trouble it is hard to obtain quick realiable support.  This is normally the deciding factor between paying for an LMS or using an open source LMS like Moodle (quick product support).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elearningshow.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elearningshow.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elearningshow.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elearningshow.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elearningshow.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elearningshow.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elearningshow.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elearningshow.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elearningshow.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elearningshow.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elearningshow.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elearningshow.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elearningshow.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elearningshow.wordpress.com/258/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elearningshow.wordpress.com&amp;blog=1023539&amp;post=258&amp;subd=elearningshow&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elearningshow.wordpress.com/2011/07/10/my-response-to-what-is-an-lms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eec5e192b6db3935d0b2e39027acf3d2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elearningshow</media:title>
		</media:content>
	</item>
	</channel>
</rss>
