<?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>Remote Internet Solutions, Inc</title>
	<atom:link href="http://remoteinternetsolutions.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://remoteinternetsolutions.com</link>
	<description>Web Development with a Personal Touch</description>
	<lastBuildDate>Fri, 02 Dec 2011 02:54:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Using htaccess to mask files</title>
		<link>http://remoteinternetsolutions.com/programming/using-htaccess-to-mask-files/</link>
		<comments>http://remoteinternetsolutions.com/programming/using-htaccess-to-mask-files/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 02:42:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Raves]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://remoteinternetsolutions.com/?p=61</guid>
		<description><![CDATA[The capabilities of .htaccess are incredible. Among some of the goodies are protecting directories (even with a username and password), filter bot traffic, block IPs, and my newest favorite&#8230; masking files! I&#8217;ve had the pleasure of upgrading some old HTML files into a CMS with dynamic content. No problem! But what about all the search [...]]]></description>
			<content:encoded><![CDATA[<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=256087891086725&amp;xfbml=1"></script><fb:like href="http://remoteinternetsolutions.com/programming/using-htaccess-to-mask-files/" send="false" width="450" show_faces="false" action="like" font=""></fb:like><br />
The capabilities of .htaccess are incredible.  Among some of the goodies are protecting directories (even with a username and password), filter bot traffic, block IPs, and my newest favorite&#8230; masking files!</p>
<p>I&#8217;ve had the pleasure of upgrading some old HTML files into a CMS with dynamic content.  No problem!  But what about all the search engine traffic that is still going to the old HTML pages?  That stuff is gold and we don&#8217;t want to mess with redirecting it.</p>
<p>Only 4 lines in my .htaccess file is all I need!<br />
<script type="text/javascript"><!--
google_ad_client = "pub-3497485946459569";
/* 468x15 - Text 1x4 */
google_ad_slot = "2212744014";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<span id="more-61"></span><br />
<code><br />
RewriteEngine On<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule (.*)\.htm loadpage.php?$1<br />
</code></p>
<p>The code above can be explained as follows:  </p>
<ul>
<li><code>RewriteEngine On</code><br />
        This tells the web server to enable the mod_rewrite engine.</li>
<li><code>RewriteCond %{REQUEST_FILENAME} !-f</code><br />
        If an actual file exists with the name we are trying to mask, don&#8217;t mask it and proceed normally.</li>
<li><code>RewriteCond %{REQUEST_FILENAME} !-d</code><br />
        If an actual directory exists with the name we are trying to mask, don&#8217;t make it and proceed normally.</li>
<li><code>RewriteRule (.*)\.htm loadpage.php?$1</code><br />
        If the file you are masking ends in .htm*, then everything before the .htm* is stored in the $1 variable which is used as the QUERY STRING in our <code>loadpage.php</code> script.</li>
</ul>
<p><script type="text/javascript"><!--
google_ad_client = "pub-3497485946459569";
/* 336x280 - Large Box */
google_ad_slot = "5516021038";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<p>Example:<br />
I am trying to reach the page at <code>http://www.yoursite.com/contact.html</code><br />
My htaccess will check to see if a file or directory have the name &#8220;contact.html&#8221;.  Assuming not, everything before the .htm* in &#8220;contact.html&#8221; will be stored in the $1 variable.  So now our <code>loadpage.php</code> will be executed with the QUERY STRING of &#8220;contact&#8221;.</p>
<p>Our <code>loadpage.php</code> can now use the QUERY STRING as a &#8220;slug&#8221; or keyword to access your database to know what page to load.<br />
<!-- Facebook Comments for WordPress: http://pleer.co.uk/wordpress/plugins/facebook-comments/ --><div class="fbcomments"><h3>Comments</h3><div class="fbcommentbox"><fb:comments href="http://remoteinternetsolutions.com/programming/using-htaccess-to-mask-files/" num_posts="15" width="590" colorscheme="light" ></fb:comments></div></div></p>
]]></content:encoded>
			<wfw:commentRss>http://remoteinternetsolutions.com/programming/using-htaccess-to-mask-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USPS XML API</title>
		<link>http://remoteinternetsolutions.com/programming/usps-xml-api/</link>
		<comments>http://remoteinternetsolutions.com/programming/usps-xml-api/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 15:29:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[opencart]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rtfm]]></category>
		<category><![CDATA[usps]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://remoteinternetsolutions.com/?p=35</guid>
		<description><![CDATA[Working with the USPS Shipping API is not fun. The fact that it requires at least one (1) phone call to USPS Internet Customer Care Center (ICCC) to get activated is a show-stopper in my opinion. If you aren&#8217;t in a hurry to get anything done today, you can email for activation instead of calling. [...]]]></description>
			<content:encoded><![CDATA[<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=256087891086725&amp;xfbml=1"></script><fb:like href="http://remoteinternetsolutions.com/programming/usps-xml-api/" send="false" width="450" show_faces="false" action="like" font=""></fb:like><br />
Working with the USPS Shipping API is not fun.  The fact that it requires <em>at least</em> one (1) phone call to USPS Internet Customer Care Center (ICCC) to get activated is a show-stopper in my opinion.  If you aren&#8217;t in a hurry to get anything done today, you can email for activation instead of calling.</p>
<p>A long time client of mine is using <a href="http://www.opencart.com" title="OpenCart" target="_blank">OpenCart</a>, which is a favorite open source shopping cart.  He acquired a USPS shipping label module that needed to be installed to make <em>his</em> life easier. Not sure if he had to pay for the module or not, but it needed a little tweaking before it would work properly&#8230;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-3497485946459569";
/* 468x15 - Text 1x4 */
google_ad_slot = "2212744014";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<span id="more-35"></span></p>
<p>Before I can even use the module, I need a User ID to use the USPS shipping API.  Keep in mind this is DIFFERENT than the <em>username</em> to log into the USPS webtools.  I go to the <a href="https://secure.shippingapis.com/registration/" title="USPS Shipping API User ID Registration" target="_blank">USPS Shipping API Registration</a> page and create an account.  I received an email with a User ID and Password to use with their API system (in addition to some API URLs to use for your XML communication).  This is when I have to make the call to ICCC.</p>
<p>Surprisingly, when I called, it only took about 3 minutes from start to finish.  The support tech asked a few simple questions and had my UserID enabled.  After a simple test, I verified that I was able to connect to their production server.</p>
<p><em>NOTE: Don&#8217;t be surprised if you need to make more than one (1) phone call as I needed to so I could enable <code>DeliveryConfirmationV3</code> for printing labels.</em></p>
<div style=" border: 1px dashed #999; padding: 4px;">
USPS Internet Customer Care Center (ICCC):</p>
<ul>
<li>(800) 344-7779</li>
<li>7AM &#8211; 11PM Eastern Time</li>
</ul>
</div>
<p>&nbsp;</p>
<p>Now that I can connect to the USPS production server, I am ready to test.  Lucky for me I have a lot of live data to test with.  Lets do some tests!</p>
<p><code><br />
https://secure.shippingapis.com/ShippingAPI.dll?API=DeliveryConfirmationV3&#038;XML=&lt;DeliveryConfirmationV3.0Request USERID="123XXXXX4567"&gt;<br />
&lt;Option&gt;1&lt;/Option&gt;<br />
                        &lt;ImageParameters /&gt;<br />
                        &lt;FromName&gt;Herman Munster&lt;/FromName&gt;<br />
                        &lt;FromFirm /&gt;<br />
                        &lt;FromAddress1&gt;1313 Mockingbird Ln&lt;/FromAddress1&gt;<br />
                        &lt;FromAddress2&gt;&lt;/FromAddress2&gt;<br />
                        &lt;FromCity&gt;Scaryville&lt;/FromCity&gt;<br />
                        &lt;FromState&gt;3624&lt;/FromState&gt;<br />
                        &lt;FromZip5&gt;91913&lt;/FromZip5&gt;<br />
                        &lt;FromZip4&gt;&lt;/FromZip4&gt;<br />
                        &lt;ToName&gt;Homer Simpson&lt;/ToName&gt;<br />
                        &lt;ToFirm&gt;&lt;/ToFirm&gt;<br />
                        &lt;ToAddress1&gt;742 Evergreen Terrace&lt;/ToAddress1&gt;<br />
                        &lt;ToAddress2&gt;&lt;/ToAddress2&gt;<br />
                        &lt;ToCity&gt;Springfield&lt;/ToCity&gt;<br />
                        &lt;ToState&gt;State&lt;/ToState&gt;<br />
                        &lt;ToZip5&gt;90210&lt;/ToZip5&gt;<br />
                        &lt;ToZip4&gt;&lt;/ToZip4&gt;<br />
                        &lt;WeightInOunces&gt;32&lt;/WeightInOunces&gt;<br />
                        &lt;ServiceType&gt;Priority&lt;/ServiceType&gt;<br />
                        &lt;POZipCode&gt;&lt;/POZipCode&gt;<br />
                        &lt;ImageType&gt;PDF&lt;/ImageType&gt;<br />
                        &lt;LabelDate&gt;&lt;/LabelDate&gt;<br />
                        &lt;CustomerRefNo&gt;&lt;/CustomerRefNo&gt;<br />
                        &lt;AddressServiceRequested&gt;False&lt;/AddressServiceRequested&gt;<br />
                        &lt;SenderName&gt;&lt;/SenderName&gt;<br />
                        &lt;SenderEMail&gt;&lt;/SenderEMail&gt;<br />
                        &lt;RecipientName&gt;&lt;/RecipientName&gt;<br />
                        &lt;RecipientEMail&gt;&lt;/RecipientEMail&gt;<br />
                        &lt;/DeliveryConfirmationV3.0Request&gt;<br />
</code><br />
<small><em>* The XML above is using fictitious data.</em></small></p>
<p>When I send the above XML to the USPS Shipping API, I receive the following response:</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-3497485946459569";
/* 336x280 - Large Box */
google_ad_slot = "5516021038";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<p><code><br />
&lt;?xml version="1.0"?&gt;<br />
&lt;Error&gt;&lt;Number&gt;-2147219078&lt;/Number&gt;&lt;Source&gt;DC_Respond.;SOLServerConfrm.DC_Respond&lt;/Source&gt;&lt;Description&gt;XML Missing From Address&lt;/Description&gt;&lt;HelpFile&gt;&lt;/HelpFile&gt;&lt;HelpContext&gt;1000440&lt;/HelpContext&gt;&lt;/Error&gt;&lt;/code&gt;<br />
</code></p>
<p>Missing From Address?  I have a from address!  WTF?  I guess I needed to do a little more RTFM.  To my discovery, <code>&lt;FromAddress1&gt;</code> should be the SECOND line of the address (IE.  Suite 2B, Apt 3, Unit 12) and <code>&lt;FromAddress2&gt;</code> should be the FIRST line of the address (IE. 1313 Mockingbird Ln, 1060 W Addison) and is a required field of at least 1 character.  Before you get too excited, you will need to do the same for <code>&lt;ToAddress1&gt;</code> and <code>&lt;ToAddress2&gt;</code>.</p>
<p>Ok, let me make a few changes and try again&#8230;</p>
<p><code><br />
https://secure.shippingapis.com/ShippingAPI.dll?API=DeliveryConfirmationV3&#038;XML=&lt;DeliveryConfirmationV3.0Request USERID="123XXXXX4567"&gt;<br />
&lt;Option&gt;1&lt;/Option&gt;<br />
                        &lt;ImageParameters /&gt;<br />
                        &lt;FromName&gt;Herman Munster&lt;/FromName&gt;<br />
                        &lt;FromFirm /&gt;<br />
                        &lt;FromAddress1&gt;&lt;/FromAddress2&gt;<br />
                        &lt;FromAddress2&gt;1313 Mockingbird Ln&lt;/FromAddress2&gt;<br />
                        &lt;FromCity&gt;Scaryville&lt;/FromCity&gt;<br />
                        &lt;FromState&gt;3624&lt;/FromState&gt;<br />
                        &lt;FromZip5&gt;91913&lt;/FromZip5&gt;<br />
                        &lt;FromZip4&gt;&lt;/FromZip4&gt;<br />
                        &lt;ToName&gt;Homer Simpson&lt;/ToName&gt;<br />
                        &lt;ToFirm&gt;&lt;/ToFirm&gt;<br />
                        &lt;ToAddress1&gt;&lt;/ToAddress1&gt;<br />
                        &lt;ToAddress2&gt;742 Evergreen Terrace&lt;/ToAddress2&gt;<br />
                        &lt;ToCity&gt;Springfield&lt;/ToCity&gt;<br />
                        &lt;ToState&gt;State&lt;/ToState&gt;<br />
                        &lt;ToZip5&gt;90210&lt;/ToZip5&gt;<br />
                        &lt;ToZip4&gt;&lt;/ToZip4&gt;<br />
                        &lt;WeightInOunces&gt;32&lt;/WeightInOunces&gt;<br />
                        &lt;ServiceType&gt;Priority&lt;/ServiceType&gt;<br />
                        &lt;POZipCode&gt;&lt;/POZipCode&gt;<br />
                        &lt;ImageType&gt;PDF&lt;/ImageType&gt;<br />
                        &lt;LabelDate&gt;&lt;/LabelDate&gt;<br />
                        &lt;CustomerRefNo&gt;&lt;/CustomerRefNo&gt;<br />
                        &lt;AddressServiceRequested&gt;False&lt;/AddressServiceRequested&gt;<br />
                        &lt;SenderName&gt;&lt;/SenderName&gt;<br />
                        &lt;SenderEMail&gt;&lt;/SenderEMail&gt;<br />
                        &lt;RecipientName&gt;&lt;/RecipientName&gt;<br />
                        &lt;RecipientEMail&gt;&lt;/RecipientEMail&gt;<br />
                        &lt;/DeliveryConfirmationV3.0Request&gt;<br />
</code></p>
<p>Survey says?!&#8230;.</p>
<p>&lt;?xml version=&#8221;1.0&#8243;?&gt;<br />
&lt;DeliveryConfirmationV3.0Response&gt;&lt;DeliveryConfirmationNumber&gt;XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&lt;/DeliveryConfirmationNumber&gt;&lt;DeliveryConfirmationLabel&gt;JVBERi0xLjI&#8230;&#8230;&#8230;&#8230;..&lt;/DeliveryConfirmationLabel&gt;&lt;ToName&gt;Homer Simpson&lt;/ToName&gt;&lt;ToFirm&gt;&lt;/ToFirm&gt;&lt;ToAddress1&gt;&lt;/ToAddress1&gt;&lt;ToAddress2&gt;742 EVERGREEN TERRACE&lt;/ToAddress2&gt;&lt;ToCity&gt;SPRINGFIELD&lt;/ToCity&gt;&lt;ToState&gt;XX&lt;/ToState&gt;&lt;ToZip5&gt;90210&lt;/ToZip5&gt;&lt;ToZip4&gt;XXXX&lt;/ToZip4&gt;&lt;Postnet&gt;90210XXXX&lt;/Postnet&gt;&lt;/DeliveryConfirmationV3.0Response&gt;<br />
</code></p>
<p>B-E-A utiful!  Finally it works.</p>
<p>Remember to test, test, test.  I found that using a pound symbol (#) in an address when referencing an apartment, is bad.  You can change the pound sign (#) to the word "UNIT" in your XML.</p>
<p>Using the USPS XML APIs are probably a never-ending battle.  But the more you work at it the better/easier it will get.</p>
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=256087891086725&amp;xfbml=1"></script><fb:like href="http://remoteinternetsolutions.com/programming/usps-xml-api/" send="false" width="450" show_faces="false" action="like" font=""></fb:like><br />
<!-- Facebook Comments for WordPress: http://pleer.co.uk/wordpress/plugins/facebook-comments/ --><div class="fbcomments"><h3>Comments</h3><div class="fbcommentbox"><fb:comments href="http://remoteinternetsolutions.com/programming/usps-xml-api/" num_posts="15" width="590" colorscheme="light" ></fb:comments></div></div>
]]></content:encoded>
			<wfw:commentRss>http://remoteinternetsolutions.com/programming/usps-xml-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP Upgrade</title>
		<link>http://remoteinternetsolutions.com/system-administration/php-upgrade/</link>
		<comments>http://remoteinternetsolutions.com/system-administration/php-upgrade/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 21:32:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Raves]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[pcre]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[pspell]]></category>

		<guid isPermaLink="false">http://remoteinternetsolutions.com/?p=18</guid>
		<description><![CDATA[Today I updated my version of PHP to version 5.3.6 since I needed to update my PCRE. Did I have to? No. But while I had my hood open I figured why not knock them both out together. One of the main reasons is this very friendly error message: this version of PCRE is not [...]]]></description>
			<content:encoded><![CDATA[<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=256087891086725&amp;xfbml=1"></script><fb:like href="http://remoteinternetsolutions.com/system-administration/php-upgrade/" send="false" width="450" show_faces="false" action="like" font=""></fb:like><br />
Today I updated my version of PHP to version 5.3.6 since I needed to update my PCRE.  Did I have to?  No.  But while I had my hood open I figured why not knock them both out together.  One of the main reasons is this very friendly error message:</p>
<div style="padding-left: 20px; padding-bottom: 20px"><code>this version of PCRE is not compiled with PCRE_UTF8 support at offset 0</code></div>
<p>The server wasn&#8217;t lying.  When I did a PCRE check&#8230;</p>
<p><span id="more-18"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-3497485946459569";
/* 468x15 - Text 1x4 */
google_ad_slot = "2212744014";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<div style="padding-left: 20px; padding-bottom: 20px"><code>pcretest -C</code></div>
<p>Alas, I did not have UTF8 support.  Son of a &#8230; I downloaded the latest <a href="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-xxx.tar.gz" title="Latest PCRE" target="_blank">pcre</a> source.  When compiling I made sure to enable UTF8:</p>
<div style="padding-left: 20px; padding-bottom: 20px"><code>./configure --enable-utf8</code></div>
<p>Ok cool.  Now I have the latest PCRE installed <em>WITH</em> UTF8 support.  Now I can recompile PHP.  Wait a second&#8230; where the hell is my PHP source?  Oh that&#8217;s right, I am on a server with everything pre-installed.  Son of a &#8230; I&#8217;ve installed PHP hundreds of times over the years, so one more shouldn&#8217;t be an issue.  Thankfully, the only prerequisite was <a href="http://aspell.net/" title="PSPELL" target="_blank">PSPELL</a>.  Once PSPELL was installed, I could compile PHP with everything I need, or didn&#8217;t.</p>
<p>I backed up my modules/libphp5.so before running <code>make install</code> as a just in case.  Guess what!?  I needed it because for some reason I had compiled PHP with &#8216;&#8211;without-mysql&#8217;. *smacks self*</p>
<p>So I revert to my older libphp5.so and restart apache.  Yay, I get to run my PHP compile again.  I know, I know&#8230; <code>make clean</code>.</p>
<p>Finally, my PHP is updated along with PCRE and PSPELL.  Now to check ALL of my hosted sites to make sure everything works.  Uh oh&#8230; a few of my WordPress sites aren&#8217;t working.  <i>To the error_logs, Batman!</i></p>
<script type="text/javascript"><!--
google_ad_client = "pub-3497485946459569";
/* 336x280 - Large Box */
google_ad_slot = "5516021038";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<div style="padding-left: 20px; padding-bottom: 20px"><code>PHP Parse error:  syntax error, unexpected T_ENCAPSED_AND_WHITESPACE in /scooby/doo/httpdocs/wp-content/plugins/calendar/calendar.php on line 2532</code></div>
<p>Serioulsy?  Come on people&#8230; No one wants a little single quote floating around on a line by itself.  After cleaning up the calendar.php file, all of my sites are up and running.</p>
<p>All of this just to install CodeIgniter&#8230;</p>
<!-- Facebook Comments for WordPress: http://pleer.co.uk/wordpress/plugins/facebook-comments/ --><div class="fbcomments"><h3>Comments</h3><div class="fbcommentbox"><fb:comments href="http://remoteinternetsolutions.com/system-administration/php-upgrade/" num_posts="15" width="590" colorscheme="light" ></fb:comments></div></div>
]]></content:encoded>
			<wfw:commentRss>http://remoteinternetsolutions.com/system-administration/php-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome</title>
		<link>http://remoteinternetsolutions.com/intro/hello-world/</link>
		<comments>http://remoteinternetsolutions.com/intro/hello-world/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 02:18:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Intro]]></category>

		<guid isPermaLink="false">http://remoteinternetsolutions.com/?p=1</guid>
		<description><![CDATA[Welcome to Remote Internet Solutions, Inc.]]></description>
			<content:encoded><![CDATA[<p>Welcome to Remote Internet Solutions, Inc.</p>
]]></content:encoded>
			<wfw:commentRss>http://remoteinternetsolutions.com/intro/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

