<?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/"
	>

<channel>
	<title>a blog by heather goff &#187; useful info</title>
	<atom:link href="http://goffgrafix.com/blog/index.php/category/useful-info/feed/" rel="self" type="application/rss+xml" />
	<link>http://goffgrafix.com/blog</link>
	<description>excerpts from my journey in website development and social media</description>
	<lastBuildDate>Thu, 13 May 2010 15:53:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>If your server sets the allow_url_fopen and allow_url_include PHP directives OFF</title>
		<link>http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/</link>
		<comments>http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 15:44:39 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Web Design Resource]]></category>
		<category><![CDATA[useful info]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=451</guid>
		<description><![CDATA[Here is some great geeky information given by network solutions customer service to one of my clients, who passed it on to me. Since my servers have similar security standards, I frequently refer to the code examples and solutions illustrated below.
For security reasons (to prevent “PHP include” hacker attacks),  some servers set the allow_url_fopen and [...]]]></description>
			<content:encoded><![CDATA[<p><em>Here is some great geeky information given by network solutions customer service to one of my clients, who passed it on to me. Since my servers have similar security standards, I frequently refer to the code examples and solutions illustrated below.</em></p>
<p>For security reasons (to prevent “PHP include” hacker attacks),  some servers set the allow_url_fopen and allow_url_include PHP directives to off. If you see errors similar to the following on your website, then your website (or software you have installed on your website) uses insecure PHP calls.</p>
<p><strong>Common Errors</strong></p>
<p>Warning: fopen() [function.fopen]: URL file-access is disabled in the server configuration in /……../ on line (..)</p>
<p>Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in in /……../ on line (..)</p>
<p>Warning: include() [function.include]: URL file-access is disabled in the server configuration in /……../ on line (..)</p>
<p>Warning: getimagesize() [function.getimagesize]: URL file-access is disabled in the server configuration in in /……../ on line (..)</p>
<p>Warning: readfile() [function.readfile]: URL file-access is disabled in the server configuration in in /……../ on line (..)</p>
<p><strong>Solution</strong></p>
<p>WordPress / Joomla / Drupal Software: These applications do not use functions that require allow_url_fopen or allow_url_include to be turned on. However, certain third party plugins may require changes. If you see any of the errors above, try to isolate which plugin is causing the issue and replace it with an alternative plugin. You should also consider reporting the issue to the plugin developer so that they may fix it in an upcoming release. Alternatively, you can check out some of the examples below and attempt to fix the errors yourself.</p>
<p>Note: Do not attempt to fix issues yourself if you do not have prior software development experience. If the below does not make sense, you should consult with your web professional.</p>
<p>The errors above manifest themselves when your website is attempting to retrieve outside web URLs. The solution is to use the PHP Curl library to do so instead, which is more secure. How you use PHP ‘s Curl library to circumvent this issue depends on which warning you’ve received.</p>
<p><strong>Example 1: Warning: fopen() [function.fopen]:<br />
</strong><br />
$file = “http://news.google.com/news?ned=us&amp;topic=h&amp;output=rss”;</p>
<p>$xml_parser = xml_parser_create();<br />
xml_set_element_handler($xml_parser, &#8220;startElement&#8221;, &#8220;endElement&#8221;);<br />
xml_set_character_data_handler($xml_parser, &#8220;characterData&#8221;);</p>
<p>if (!($fp = fopen($file, &#8220;r&#8221;))) {<br />
die(&#8220;could not open XML input&#8221;);<br />
}</p>
<p>while ($data = fread($fp, 4096)) {<br />
if (!xml_parse($xml_parser, $data, feof($fp))) {<br />
die(sprintf(&#8220;XML error: %s at line %d&#8221;,<br />
xml_error_string(xml_get_error_code($xml_parser)),<br />
xml_get_current_line_number($xml_parser)));<br />
}<br />
}</p>
<p>In the above example, an attempt to open a Google RSS feed is being made. The fopen() call will fail because $file is an outside web site, and the rest of the code will not be executed. To properly load the RSS feed and parse, this snipit of code would need to be rewritten as follows:</p>
<p>$xml_parser = xml_parser_create();<br />
xml_set_element_handler($xml_parser, &#8220;startElement&#8221;, &#8220;endElement&#8221;);<br />
xml_set_character_data_handler($xml_parser, &#8220;characterData&#8221;);</p>
<p>$file = “http://news.google.com/news?ned=us&amp;topic=h&amp;output=rss”;</p>
<p>$ch = curl_init();<br />
curl_setopt($ch, CURLOPT_URL, $file);<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);<br />
$xmldata = curl_exec($ch);<br />
curl_close($ch);</p>
<p>$xmldata = split(&#8220;\n&#8221;,$xmldata);</p>
<p>foreach ($xmldata as $data) {<br />
if (!xml_parse($xml_parser, $data)) {<br />
die(sprintf(&#8220;XML error: %s at line %d&#8221;,<br />
xml_error_string(xml_get_error_code($xml_parser)),<br />
xml_get_current_line_number($xml_parser)));<br />
}<br />
}</p>
<p><strong>Example 2: Warning: file_get_contents() [function.file-get-contents]:</strong></p>
<p>&lt;?php</p>
<p>$contents = file_get_contents(&#8216;http://www.cnn.com/&#8217;);</p>
<p>echo $contents;</p>
<p>?&gt;</p>
<p>In the above example, the file_get_contents function is used to retrieve the content of the CNN website. You can accomplish the same thing safely using CURL as follows:</p>
<p>&lt;?php</p>
<p>$ch = curl_init();<br />
curl_setopt ($ch, CURLOPT_URL, &#8216;http://www.cnn.com&#8217;);<br />
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);<br />
$contents = curl_exec($ch);<br />
curl_close($ch);</p>
<p>// display file<br />
echo $contents;<br />
?&gt;</p>
<p><strong>Example 3: Warning: include() [function.include]:</strong></p>
<p>Including files from web hosts is not allowed.</p>
<p>&lt;? php include(“http://www.example.com/new.php”); ?&gt;</p>
<p>If the file that you are trying to include is local, use relative paths instead , not the web URL. Otherwise, use the following:</p>
<p>&lt;?php</p>
<p>$ch = curl_init();<br />
curl_setopt ($ch, CURLOPT_URL, &#8216;http://www.example.com/mew.php&#8217;);<br />
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);<br />
$contents = curl_exec($ch);<br />
curl_close($ch);</p>
<p>// display file<br />
echo $file_contents;<br />
?&gt;</p>
<p><strong>Example 4: Warning: getimagesize() [function.getimagesize]:</strong></p>
<p>getimagesize() allows you to get the height, width and size of an image file. To use getimagesize() safely, CURL can be used to get the remote file, the data can be saved to a local temporary image file and getimagesize() can be used on the local version.</p>
<p>&lt;php</p>
<p>$filename = “http://www.example.com/example.jpg”;</p>
<p>$ch = curl_init();<br />
curl_setopt ($ch, CURLOPT_URL, $filename);<br />
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);</p>
<p>$contents = curl_exec($ch);<br />
curl_close($ch);</p>
<p>$new_image = ImageCreateFromString($contents);<br />
imagejpeg($new_image, &#8220;temp.jpg&#8221;,100);</p>
<p>$size = getimagesize(&#8220;temp.jpg&#8221;);</p>
<p>// width and height</p>
<p>$width = $size[0];<br />
$height = $size[1];</p>
<p><strong>Example 5: Warning: readfile() [function.readfile]:</strong></p>
<p>&lt;?php</p>
<p>$contents = readfile(&#8216;http://www.example.com/some.txt&#8217;);</p>
<p>echo $contents;</p>
<p>?&gt;</p>
<p>In the above example, the readfile function is used to retrieve the content of a remote text file. You can accomplish the same thing safely using CURL as follows:</p>
<p>&lt;?php</p>
<p>$ch = curl_init();<br />
curl_setopt ($ch, CURLOPT_URL, &#8216;http://www.example.com/some.txt&#8217;);<br />
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);<br />
$contents = curl_exec($ch);<br />
curl_close($ch);</p>
<p>// display file<br />
echo $contents;<br />
?&gt;</p>
<p>The above examples are not guaranteed to run without changes, they are strictly guidance to illustrate how to safely retrieve off-site content.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF&amp;desc=Here%20is%20some%20great%20geeky%20information%20given%20by%20network%20solutions%20customer%20service%20to%20one%20of%20my%20clients%2C%20who%20passed%20it%20on%20to%20me.%20Since%20my%20servers%20have%20similar%20security%20standards%2C%20I%20frequently%20refer%20to%20the%20code%20examples%20and%20solutions%20illustrated%20below.%0D%0A%0D%0AFor%20security%20reasons%20%28to%20prevent%20%E2%80%9CPHP%20include" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF%5B..%5D+-+http://b2l.me/ubnb2+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;bm_description=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;submitHeadline=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF&amp;submitSummary=Here%20is%20some%20great%20geeky%20information%20given%20by%20network%20solutions%20customer%20service%20to%20one%20of%20my%20clients%2C%20who%20passed%20it%20on%20to%20me.%20Since%20my%20servers%20have%20similar%20security%20standards%2C%20I%20frequently%20refer%20to%20the%20code%20examples%20and%20solutions%20illustrated%20below.%0D%0A%0D%0AFor%20security%20reasons%20%28to%20prevent%20%E2%80%9CPHP%20include&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;t=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;t=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22If%20your%20server%20sets%20the%20allow_url_fopen%20and%20allow_url_include%20PHP%20directives%20OFF%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22Here%20is%20some%20great%20geeky%20information%20given%20by%20network%20solutions%20customer%20service%20to%20one%20of%20my%20clients%2C%20who%20passed%20it%20on%20to%20me.%20Since%20my%20servers%20have%20similar%20security%20standards%2C%20I%20frequently%20refer%20to%20the%20code%20examples%20and%20solutions%20illustrated%20below.%0D%0A%0D%0AFor%20security%20reasons%20%28to%20prevent%20%E2%80%9CPHP%20include%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF&amp;link=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/&amp;title=If+your+server+sets+the+allow_url_fopen+and+allow_url_include+PHP+directives+OFF&amp;body=Here%20is%20some%20great%20geeky%20information%20given%20by%20network%20solutions%20customer%20service%20to%20one%20of%20my%20clients%2C%20who%20passed%20it%20on%20to%20me.%20Since%20my%20servers%20have%20similar%20security%20standards%2C%20I%20frequently%20refer%20to%20the%20code%20examples%20and%20solutions%20illustrated%20below.%0D%0A%0D%0AFor%20security%20reasons%20%28to%20prevent%20%E2%80%9CPHP%20include" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2010/04/if-your-server-sets-the-allow_url_fopen-and-allow_url_include-php-directives-off/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Uploading a pdf file to your blog</title>
		<link>http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/</link>
		<comments>http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 15:29:03 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[useful info]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=431</guid>
		<description><![CDATA[Uploading a PDF file to your blog and linking to it is a very useful ability to have. PDF files can be opened by anyone who has the free acrobat reader software, and are a great way of formatting registration forms, contracts, event brochures etc..   You may want to add them in your Links or [...]]]></description>
			<content:encoded><![CDATA[<p>Uploading a PDF file to your blog and linking to it is a very useful ability to have. PDF files can be opened by anyone who has the free acrobat reader software, and are a great way of formatting registration forms, contracts, event brochures etc..   You may want to add them in your Links or link to them from an image or text in a post.  Here is how I go about uploading and linking to PDF files.</p>
<h1><strong>LINKING TO A PDF FROM WITHIN A BLOG POST</strong></h1>
<p><strong>To Link to a PDF from within a blog post, click on the add image icon.</strong></p>
<p><a href="http://goffgrafix.com/blog/wp-content/uploads/2010/04/1addpdf1.jpg"><img class="alignnone size-full wp-image-437" title="1addpdf1" src="http://goffgrafix.com/blog/wp-content/uploads/2010/04/1addpdf1.jpg" alt="" width="249" height="146" /></a></p>
<p><strong>Select the PDF file and upload.</strong></p>
<p><a href="http://goffgrafix.com/blog/wp-content/uploads/2010/04/1addpdf2.jpg"><img class="alignnone size-full wp-image-439" title="1addpdf2" src="http://goffgrafix.com/blog/wp-content/uploads/2010/04/1addpdf2.jpg" alt="" width="449" height="180" /></a></p>
<p><strong>Once it is uploaded, click on the &#8220;Insert into post&#8221; button to insert a link to it directly into your post.</strong></p>
<p><a href="http://goffgrafix.com/blog/wp-content/uploads/2010/04/1addpdf3.jpg"><img class="alignnone size-full wp-image-440" title="1addpdf3" src="http://goffgrafix.com/blog/wp-content/uploads/2010/04/1addpdf3.jpg" alt="" width="648" height="244" /></a></p>
<h1><strong>LINKING TO A PDF FILE FROM A LINK OR FROM AN IMAGE IN A POST</strong></h1>
<p><strong>If you want to create a link to it from an image, or from within your LINKS, then, instead of clicking on the &#8220;insert into post&#8221; button,  copy the LINK URL and then hit the &#8220;Save all changes&#8221; button.</strong></p>
<p><strong>You can then paste that URL into the web address of a link that you&#8217;ve created (see image below)..</strong></p>
<p><a href="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf6.jpg"><img class="alignnone size-full wp-image-441" title="addpdf6" src="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf6.jpg" alt="" width="449" height="278" /></a></p>
<p><strong>Or, if you want to link to the PDF file from an image in a post, click on the image that you want to link the PDF to, and click on the insert link icon..</strong></p>
<p><a href="http://goffgrafix.com/blog/wp-content/uploads/2010/04/1addpdf5.jpg"><img class="alignnone size-full wp-image-443" title="1addpdf5" src="http://goffgrafix.com/blog/wp-content/uploads/2010/04/1addpdf5.jpg" alt="" width="713" height="125" /></a></p>
<p><strong>and add the LINK URL in the LINK URL field, clicking &#8220;Update&#8221; when you&#8217;re done.</strong></p>
<p><a href="http://goffgrafix.com/blog/wp-content/uploads/2010/04/1addpdf4.jpg"><img class="alignnone size-full wp-image-442" title="1addpdf4" src="http://goffgrafix.com/blog/wp-content/uploads/2010/04/1addpdf4.jpg" alt="" width="713" height="374" /></a></p>
<h1><strong>ADDING A PDF FILE TO YOUR MEDIA LIBRARY</strong></h1>
<p><strong>You can also add the </strong><strong>PDF file</strong><strong> directly to your media library by clicking on the &#8220;Add New&#8221; link under Media in your left hand navigation.</strong></p>
<p><a href="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf1.jpg"><img class="alignnone size-full wp-image-432" title="addpdf1" src="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf1.jpg" alt="" width="121" height="108" /></a></p>
<p><strong>Select the </strong><strong>PDF</strong><strong> file from your computer.</strong></p>
<p><a href="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf2.jpg"><img class="alignnone size-full wp-image-433" title="addpdf2" src="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf2.jpg" alt="" width="368" height="108" /></a></p>
<p><strong>Then click on the save changes.</strong></p>
<p><a href="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf3.jpg"><img class="alignnone size-full wp-image-434" title="addpdf3" src="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf3.jpg" alt="" width="180" height="108" /></a></p>
<p><strong>Once a </strong><strong>PDF</strong><strong> file is in your library, to find out its URL so that you can link to it, click on the Library link under media.</strong></p>
<p><strong>Then click on the &#8220;View&#8221; link under the file that you want to get the URL of.</strong></p>
<p><a href="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf4.jpg"><img class="alignnone size-full wp-image-444" title="addpdf4" src="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf4.jpg" alt="" width="331" height="108" /></a></p>
<p><strong>That will pull up the name of the </strong><strong>PDF</strong><strong> file, linked to the </strong><strong>PDF</strong><strong> file. Right click (if you don&#8217;t have a right click on your mouse, hold down the control key when you click) on the link and choose &#8220;Copy Link Location&#8221; from the contextual menu.</strong></p>
<p><a href="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf5.jpg"><img class="alignnone size-full wp-image-445" title="addpdf5" src="http://goffgrafix.com/blog/wp-content/uploads/2010/04/addpdf5.jpg" alt="" width="331" height="278" /></a></p>
<p>There are probably a slew of other ways to add PDF files to your blog posts. If you have your own version, please share by commenting on this post. Thanks!</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;title=Uploading+a+pdf+file+to+your+blog" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;title=Uploading+a+pdf+file+to+your+blog" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;title=Uploading+a+pdf+file+to+your+blog&amp;desc=Uploading%20a%20PDF%20file%20to%20your%20blog%20and%20linking%20to%20it%20is%20a%20very%20useful%20ability%20to%20have.%20PDF%20files%20can%20be%20opened%20by%20anyone%20who%20has%20the%20free%20acrobat%20reader%20software%2C%20and%20are%20a%20great%20way%20of%20formatting%20registration%20forms%2C%20contracts%2C%20event%20brochures%20etc..%C2%A0%C2%A0%20You%20may%20want%20to%20add%20them%20in%20your%20Links%20or%20link%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;title=Uploading+a+pdf+file+to+your+blog" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;title=Uploading+a+pdf+file+to+your+blog" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;title=Uploading+a+pdf+file+to+your+blog" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Uploading+a+pdf+file+to+your+blog+-+http://b2l.me/ubnpy+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;bm_description=Uploading+a+pdf+file+to+your+blog&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;submitHeadline=Uploading+a+pdf+file+to+your+blog&amp;submitSummary=Uploading%20a%20PDF%20file%20to%20your%20blog%20and%20linking%20to%20it%20is%20a%20very%20useful%20ability%20to%20have.%20PDF%20files%20can%20be%20opened%20by%20anyone%20who%20has%20the%20free%20acrobat%20reader%20software%2C%20and%20are%20a%20great%20way%20of%20formatting%20registration%20forms%2C%20contracts%2C%20event%20brochures%20etc..%C2%A0%C2%A0%20You%20may%20want%20to%20add%20them%20in%20your%20Links%20or%20link%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;t=Uploading+a+pdf+file+to+your+blog" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;t=Uploading+a+pdf+file+to+your+blog" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Uploading%20a%20pdf%20file%20to%20your%20blog%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22Uploading%20a%20PDF%20file%20to%20your%20blog%20and%20linking%20to%20it%20is%20a%20very%20useful%20ability%20to%20have.%20PDF%20files%20can%20be%20opened%20by%20anyone%20who%20has%20the%20free%20acrobat%20reader%20software%2C%20and%20are%20a%20great%20way%20of%20formatting%20registration%20forms%2C%20contracts%2C%20event%20brochures%20etc..%C2%A0%C2%A0%20You%20may%20want%20to%20add%20them%20in%20your%20Links%20or%20link%20%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Uploading+a+pdf+file+to+your+blog&amp;link=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/&amp;title=Uploading+a+pdf+file+to+your+blog&amp;body=Uploading%20a%20PDF%20file%20to%20your%20blog%20and%20linking%20to%20it%20is%20a%20very%20useful%20ability%20to%20have.%20PDF%20files%20can%20be%20opened%20by%20anyone%20who%20has%20the%20free%20acrobat%20reader%20software%2C%20and%20are%20a%20great%20way%20of%20formatting%20registration%20forms%2C%20contracts%2C%20event%20brochures%20etc..%C2%A0%C2%A0%20You%20may%20want%20to%20add%20them%20in%20your%20Links%20or%20link%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2010/04/uploading-a-pdf-file-to-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selling digital products on your blog</title>
		<link>http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/</link>
		<comments>http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 17:26:16 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[useful info]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=367</guid>
		<description><![CDATA[Selling digital products online is a great way to generate nearly passive income. You create the product and then the sale and delivery is automated (depending upon what shopping cart system you are using.) I have musician clients selling mp3&#8217;s of their songs online. I know writers and experts selling digital e-books.
Generating passive income is [...]]]></description>
			<content:encoded><![CDATA[<p style="padding-left: 30px;"><a href="http://www.marketerschoice.com/SecureCart/SecureCart.aspx?mid=A7C66C7D-DF22-4F3C-86C6-75247524829C&amp;pid=aa3254b3111bdc21a4b7bbe1ce642677" target="_blank"><img class="alignleft size-full wp-image-376" title="simplesong1" src="http://goffgrafix.com/blog/wp-content/uploads/2009/07/simplesong1.jpg" alt="simplesong1" width="179" height="241" /></a>Selling digital products online is a great way to generate nearly passive income. You create the product and then the sale and delivery is automated (depending upon what shopping cart system you are using.) I have musician clients selling mp3&#8217;s of their songs online. I know writers and experts selling digital e-books.</p>
<p style="padding-left: 30px;"><strong>Generating passive income is a must for the self employed and creative people in this world.</strong> There are only so many billable hours in the day, and it is hard to make a living if you are just billing billable hours.</p>
<p style="padding-left: 30px;">I decided to experiment with a digital product and adding it to my blog to see how easy the process would be.</p>
<h1 style="font-weight: bold; font-size: 18px; padding-left: 30px;">Creating A Digital Product</h1>
<p style="padding-left: 30px;"><strong>E-books:</strong> If you are going to be selling any form of e-book, it is generally delivered as a pdf file. The best software to use to generate the pdf files, in my opinion, is <a href="http://www.adobe.com/products/acrobat/" target="_blank">adobe acrobat professional</a>. However, there are free pdf writers available for creative people on a budget. <a href="http://cutepdf.com/" target="_blank">Cute Pdf</a> is an example of a free pdf writing software.</p>
<p style="padding-left: 30px;"><strong>Audio Files:</strong> If you are going to be selling mp3 or audio files there are a number of great software options available for recording and generating mp3 files. One free software that I recommend to clients who want to generate vocal audio and not professional music quality is <a href="http://audacity.sourceforge.net/">Audacity</a>.</p>
<p style="padding-left: 30px;"><strong>My Journey &#8211; bundling audio and pdf:</strong> I happened to purchase <a href="http://www.finalemusic.com/" target="_blank">finale print music software</a> several weeks back and spent a euphoric couple of days experimenting with writing beginner/intermediate piano scores. I was able to save these scores as pdf files by using adobe acrobat professional. Now I have a handful of piano scores suitable for the beginner/intermediate player and so thought to myself, why not bundle a score with mp3 file to sell digitally for this blog example?</p>
<p style="padding-left: 30px;">First of all, I want people to be able to hear what it sounds like when played. <a href="http://www.finalemusic.com/" target="_blank">Finale Print Music</a> can generate a digitally produced  audio mp3 file of the music score. I needed to insert the mp3 file in this blog post so that people can hear a sample of the song.  Supplying a sample listen is a great idea for musicians selling mp3 files, or for experts selling audio files. If you are thinking of selling an audio file, I recommend installing the plugin below so that visitors to your site can easily listen to a sample.</p>
<blockquote style="padding-left: 30px;"><p><strong>WORDPRESS PLUGIN TIP: I installed the following plugin into my wordpress blog so that my audio links would be playable with an audio player.</strong></p>
<p><a href="http://wpaudioplayer.com/download" target="_blank">http://wpaudioplayer.com/download</a></p>
<p>It generates an audio player just like the one here. Click on it to listen to my Simple Song 1 for the piano.<br />
<a href="http://goffgrafix.com/blog/wp-content/uploads/2009/07/simplesong1.mp3">Simple Song 1</a></p>
<p>If you want to play audio on your blog, I highly recommend <a href="http://wpaudioplayer.com/download" target="_blank">wpaudioplayer</a>.</p></blockquote>
<h1 style="font-weight: bold; font-size: 18px; padding-left: 30px;">3 Examples of Digital Delivery/E-commerce Options</h1>
<ol style="padding-left: 30px;">
<li><strong>Option 1: free and the least passive:<br />
</strong>The first option for selling digital products would be to use paypal and then manually email people the product. Setting up a business paypal account is free, and then you can sell products and services online and paypal takes a small percentage of sales. This is the least passive option as you have to manually email people the digital product, but it is free. You can use the steps that I illustrate in this tutorial on adding e-commerce to your blog: <a href="http://goffgrafix.com/blog/index.php/2009/04/adding-e-commerce-to-your-blog/">http://goffgrafix.com/blog/index.php/2009/04/adding-e-commerce-to-your-blog/</a> to generate the code for your buy now button and copy and paste it into your blog post. You would then have to manually email the digital product to the customer once you receive notice of the purchase.</li>
<li><strong>Option 2: <a href="http://www.e-junkie.com/ej/features.htm">e-junkie.com<br />
</a></strong>With <a href="http://www.e-junkie.com/ej/features.htm">e-junkie.com</a> you can sell up to 10 products for only $5/month, and it ties into paypal. <a href="http://www.e-junkie.com/ej/features.htm" target="_blank">Click here to view the complete list of features that e-junkie offers.</a> With e-junkie the process is automated. When a customer clicks the buy now code that e-junkie supplies you, e-junkie will automatically send your customer to a page to download the product when the payment goes through. They will also email the customer a time sensitive link to the product download page.</li>
<li><strong>Option 3: <a href="http://www.marketerschoice.com/app/?pr=6&amp;id=70956 " target="_blank">1shoppingcart.com/marketerschoice.com<br />
</a></strong><a href="http://www.marketerschoice.com/app/?pr=6&amp;id=70956 " target="_blank">1shoppingcart.com/marketerschoice.com</a> is a robust and comprehensive shopping cart service that offers digital products options, autoresponder capabilities, recurring billing and much more. I use them for my hosting/web design business, so they were the obvious choice, for me, for selling digital products. After I upload my product, the cart generates a buy now link that I can just paste into this blog post below. Voila!</li>
</ol>
<blockquote>
<p style="padding-left: 30px;"><a href="http://www.marketerschoice.com/SecureCart/SecureCart.aspx?mid=A7C66C7D-DF22-4F3C-86C6-75247524829C&amp;pid=aa3254b3111bdc21a4b7bbe1ce642677"><img class="alignleft size-full wp-image-376" title="simplesong1" src="http://goffgrafix.com/blog/wp-content/uploads/2009/07/simplesong1.jpg" alt="simplesong1" width="157" height="212" /></a><br />
<strong>Purchase Simple Song 1 Piano Score for the beginner /intermediate piano player.</strong><br />
$2.75<br />
Score comes bundled with mp3 file.<br />
<a href="http://www.marketerschoice.com/SecureCart/SecureCart.aspx?mid=A7C66C7D-DF22-4F3C-86C6-75247524829C&amp;pid=aa3254b3111bdc21a4b7bbe1ce642677" target="_blank"><img src="http://www.mcssl.com/netcart/images/cart_buttons/cart_button_12.gif" border="0" alt="" /></a></p>
<p style="padding-left: 30px;">Listen to the score below:</p>
<p style="padding-left: 30px;"><a href="http://goffgrafix.com/blog/wp-content/uploads/2009/07/simplesong1.mp3">Simple Song 1</a></p>
</blockquote>
<h1 style="font-weight:bold;font-size:18px;margin-bottom:15px">Your Experience with selling digital products</h1>
<p>Please share your experience with selling digital products. What e-commerce system do you use? Do you sell pdf files? audio files? Is there a software that you have found useful in generating digital products? Please comment below. I look forward to your input.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;title=Selling+digital+products+on+your+blog" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;title=Selling+digital+products+on+your+blog" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;title=Selling+digital+products+on+your+blog&amp;desc=Selling%20digital%20products%20online%20is%20a%20great%20way%20to%20generate%20nearly%20passive%20income.%20You%20create%20the%20product%20and%20then%20the%20sale%20and%20delivery%20is%20automated%20%28depending%20upon%20what%20shopping%20cart%20system%20you%20are%20using.%29%20I%20have%20musician%20clients%20selling%20mp3%27s%20of%20their%20songs%20online.%20I%20know%20writers%20and%20experts%20selli" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;title=Selling+digital+products+on+your+blog" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;title=Selling+digital+products+on+your+blog" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;title=Selling+digital+products+on+your+blog" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Selling+digital+products+on+your+blog+-+http://b2l.me/udqxy+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;bm_description=Selling+digital+products+on+your+blog&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;submitHeadline=Selling+digital+products+on+your+blog&amp;submitSummary=Selling%20digital%20products%20online%20is%20a%20great%20way%20to%20generate%20nearly%20passive%20income.%20You%20create%20the%20product%20and%20then%20the%20sale%20and%20delivery%20is%20automated%20%28depending%20upon%20what%20shopping%20cart%20system%20you%20are%20using.%29%20I%20have%20musician%20clients%20selling%20mp3%27s%20of%20their%20songs%20online.%20I%20know%20writers%20and%20experts%20selli&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;t=Selling+digital+products+on+your+blog" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;t=Selling+digital+products+on+your+blog" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Selling%20digital%20products%20on%20your%20blog%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22Selling%20digital%20products%20online%20is%20a%20great%20way%20to%20generate%20nearly%20passive%20income.%20You%20create%20the%20product%20and%20then%20the%20sale%20and%20delivery%20is%20automated%20%28depending%20upon%20what%20shopping%20cart%20system%20you%20are%20using.%29%20I%20have%20musician%20clients%20selling%20mp3%27s%20of%20their%20songs%20online.%20I%20know%20writers%20and%20experts%20selli%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Selling+digital+products+on+your+blog&amp;link=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/&amp;title=Selling+digital+products+on+your+blog&amp;body=Selling%20digital%20products%20online%20is%20a%20great%20way%20to%20generate%20nearly%20passive%20income.%20You%20create%20the%20product%20and%20then%20the%20sale%20and%20delivery%20is%20automated%20%28depending%20upon%20what%20shopping%20cart%20system%20you%20are%20using.%29%20I%20have%20musician%20clients%20selling%20mp3%27s%20of%20their%20songs%20online.%20I%20know%20writers%20and%20experts%20selli" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2009/07/selling-digital-products-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://goffgrafix.com/blog/wp-content/uploads/2009/07/simplesong1.mp3" length="1172792" type="audio/mpeg" />
		</item>
		<item>
		<title>7 online services that I find invaluable</title>
		<link>http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/</link>
		<comments>http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 22:53:00 +0000</pubDate>
		<dc:creator>Heather Goff</dc:creator>
				<category><![CDATA[useful info]]></category>

		<guid isPermaLink="false">http://goffgrafix.com/blog/?p=193</guid>
		<description><![CDATA[There are a handful of online services that I find myself using on a weekly basis that are invaluable to my business. Every time I use them, I feel a sense of gratitude, and the thought,  &#8220;this is really making my life easier,&#8221; bubbles up in my brain.
I want to share them with you.
FREE SERVICES [...]]]></description>
			<content:encoded><![CDATA[<p>There are a handful of online services that I find myself using on a weekly basis that are invaluable to my business. Every time I use them, I feel a sense of gratitude, and the thought,  &#8220;this is really making my life easier,&#8221; bubbles up in my brain.</p>
<p>I want to share them with you.</p>
<p>FREE SERVICES (with upgrades)</p>
<ol>
<li><a href="http://Yousendit.com" target="_blank">yousendit.com</a><br />
Need to send a file that is too large to e-mail? With yousendit.com you can send unlimited 2GB files and folders.</li>
<li><a href="http://alertra.com" target="_blank">altertra.com</a><br />
Alertra is a website monitoring service. I use its spot check to see if a website is being connected to globally. It will show you the connectivity of your website from locations around the world and how long it took them to connect to your site.</li>
<li><a href="http://ipchicken.com" target="_blank">ipchicken.com</a><br />
Go to ipchicken.com and it will show you your current IP address.</li>
<li><a href="http://domaintools.com" target="_blank">domaintools.com</a><br />
I use domaintools.com to look  up where a website is registered and hosted. Often my clients don&#8217;t remember where they registered their domain names, and domaintools.com is an easy way to look up the information.</li>
<li><a href="http://tweetlater.com" target="_blank">tweetlater.com</a><br />
I have set up tweetlater to email me replies to my tweets and also tweets with keywords that interest me. On days where I don&#8217;t have time to log into twitter, I can still stay somewhat connected.</li>
</ol>
<p>SUBSCRIPTION SERVICES</p>
<ol>
<li><a href="http://browsercam.com" target="_blank">browsercam.com</a><br />
I use browsercam&#8217;s remote access to test websites that I am developing on different platforms and browsers.</li>
<li><a href="http://lynda.com" target="_blank">lynda.com</a><br />
lynda.com offers tutorials on every software that you can imagine. This is the best source for software tutorials that I have found.</li>
</ol>
<p>Is there an online service that you use? that helps your productivity and that you swear by? Please share in the comments area.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;title=7+online+services+that+I+find+invaluable" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;title=7+online+services+that+I+find+invaluable" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;title=7+online+services+that+I+find+invaluable&amp;desc=There%20are%20a%20handful%20of%20online%20services%20that%20I%20find%20myself%20using%20on%20a%20weekly%20basis%20that%20are%20invaluable%20to%20my%20business.%20Every%20time%20I%20use%20them%2C%20I%20feel%20a%20sense%20of%20gratitude%2C%20and%20the%20thought%2C%C2%A0%20%22this%20is%20really%20making%20my%20life%20easier%2C%22%20bubbles%20up%20in%20my%20brain.%0D%0A%0D%0AI%20want%20to%20share%20them%20with%20you.%0D%0A%0D%0AFREE%20SERVI" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;title=7+online+services+that+I+find+invaluable" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;title=7+online+services+that+I+find+invaluable" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;title=7+online+services+that+I+find+invaluable" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=7+online+services+that+I+find+invaluable+-+http://b2l.me/uhytf+(via+@goffgrafix)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;bm_description=7+online+services+that+I+find+invaluable&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;submitHeadline=7+online+services+that+I+find+invaluable&amp;submitSummary=There%20are%20a%20handful%20of%20online%20services%20that%20I%20find%20myself%20using%20on%20a%20weekly%20basis%20that%20are%20invaluable%20to%20my%20business.%20Every%20time%20I%20use%20them%2C%20I%20feel%20a%20sense%20of%20gratitude%2C%20and%20the%20thought%2C%C2%A0%20%22this%20is%20really%20making%20my%20life%20easier%2C%22%20bubbles%20up%20in%20my%20brain.%0D%0A%0D%0AI%20want%20to%20share%20them%20with%20you.%0D%0A%0D%0AFREE%20SERVI&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;t=7+online+services+that+I+find+invaluable" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;t=7+online+services+that+I+find+invaluable" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%227%20online%20services%20that%20I%20find%20invaluable%22&amp;body=I+thought+this+article+might+interest+you.%0A%0A%22There%20are%20a%20handful%20of%20online%20services%20that%20I%20find%20myself%20using%20on%20a%20weekly%20basis%20that%20are%20invaluable%20to%20my%20business.%20Every%20time%20I%20use%20them%2C%20I%20feel%20a%20sense%20of%20gratitude%2C%20and%20the%20thought%2C%C2%A0%20%22this%20is%20really%20making%20my%20life%20easier%2C%22%20bubbles%20up%20in%20my%20brain.%0D%0A%0D%0AI%20want%20to%20share%20them%20with%20you.%0D%0A%0D%0AFREE%20SERVI%22%0A%0AYou+can+read+the+full+article+here%3A%20http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=7+online+services+that+I+find+invaluable&amp;link=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/&amp;title=7+online+services+that+I+find+invaluable&amp;body=There%20are%20a%20handful%20of%20online%20services%20that%20I%20find%20myself%20using%20on%20a%20weekly%20basis%20that%20are%20invaluable%20to%20my%20business.%20Every%20time%20I%20use%20them%2C%20I%20feel%20a%20sense%20of%20gratitude%2C%20and%20the%20thought%2C%C2%A0%20%22this%20is%20really%20making%20my%20life%20easier%2C%22%20bubbles%20up%20in%20my%20brain.%0D%0A%0D%0AI%20want%20to%20share%20them%20with%20you.%0D%0A%0D%0AFREE%20SERVI" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://goffgrafix.com/blog/index.php/2009/03/7-online-services-that-i-find-invaluable/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
