<?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>MetaTask Website Design, LLC</title>
	<atom:link href="http://www.metawebreno.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.metawebreno.com/blog</link>
	<description>Website Design, Web Development, Search Engine Optimizaition</description>
	<lastBuildDate>Sun, 08 Apr 2012 19:58:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The Google &#8220;+1&#8243; Button</title>
		<link>http://www.metawebreno.com/blog/2011/09/the-google-1-button/</link>
		<comments>http://www.metawebreno.com/blog/2011/09/the-google-1-button/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 02:12:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.metawebreno.com/blog/?p=216</guid>
		<description><![CDATA[Google+ makes it obvious that offering readers the ability to click a Google +1 button on your site is a must. While Google has indicated that it may use the Google +1 button statistics as a factor in search results, more important will be having all those Google+ users see the things their friends clicked [...]]]></description>
			<content:encoded><![CDATA[<p>Google+ makes it obvious that offering readers the ability to click a Google +1 button on your site is a must. While Google has indicated that it may use the Google +1 button statistics as a factor in search results, more important will be having all those Google+ users see the things their friends clicked +1 on showing up in search results.</p>
<p>&nbsp;</p>
<p>My biggest complaint with Google’s implementation of the Google +1 button code is that it loads slowly. For a company obsessed with speed in the search results it returns, Google did a lousy job of making the +1 button load fast on Web sites. Thankfully, Aaron Peters did a full analysis of Google +1 button performance and provided a solution to make Google +1 buttons run faster everywhere. You should definitely read all the why behind the configuration in Aaron’s post, but I’ll cut to the meat of it so that you can tweak your own button code.</p>
<p>&nbsp;</p>
<p>In running a performance testing using Pingdom tools, I had already caught the fact that Google +1 redirects the JavaScript provided from an http URL to an https URL. That redirect to https will slow a page load by .5 seconds for many users, which, on top of all the other things going on in most sites, adds to an already obvious load time. If you do nothing else, change the JavaScript call for the Google +1 button from this:</p>
<p>&nbsp;</p>
<p>&lt;script src=”http://apis.google.com/js/plusone.js” type=”text/javascript”&gt;&lt;/script&gt;</p>
<p>&nbsp;</p>
<p>to this:</p>
<p>&nbsp;</p>
<p>&lt;script src=”https://apis.google.com/js/plusone.js” type=”text/javascript”&gt;&lt;/script&gt;</p>
<p>&nbsp;</p>
<p>If you want to go all the way in speeding up your page load, use the asynchronous code tweak below to load the Google +1 button in a non-blocking way. I tend to place all my asynchronous JavaScript files just before the closing /head tag, but Aaron recommends placing this code just before the closing /body tag at the end of your page as noted in his comment. Either option is much faster than trying to use the stock code provided by Google.</p>
<div id="wpcr_respond_1"></div>]]></content:encoded>
			<wfw:commentRss>http://www.metawebreno.com/blog/2011/09/the-google-1-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook: How to Select All Friends</title>
		<link>http://www.metawebreno.com/blog/2010/11/facebook-how-to-select-all-friends/</link>
		<comments>http://www.metawebreno.com/blog/2010/11/facebook-how-to-select-all-friends/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 01:49:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.metawebreno.com/?p=133</guid>
		<description><![CDATA[Some recent upgrades to Facebook have made it rather difficult to invite or select all of your friends to an event or a page. I have a way to make it much easier. Open up the invite or suggest friends box. Copy and paste the following code into the explorer bar of your web browser. [...]]]></description>
			<content:encoded><![CDATA[<p>Some recent upgrades to Facebook have made it rather difficult to invite or select all of your friends to an event or a page. I have a way to make it much easier.</p>
<li>Open up the invite or suggest friends box.</li>
<li>Copy and paste the following code into the explorer bar of your web browser.</li>
<li><textarea id="javascript" cols="45" rows="5" name="javascript">javascript:elms=document.getElementById(&#8216;friends&#8217;).getElementsByTagName(&#8216;li&#8217;);for(var fid in elms){if(typeof elms[fid] === &#8216;object&#8217;){fs.click(elms[fid]);}}</textarea></li>
<li>Hit the return button.</li>
<p>It&#8217;s that easy. You will see that all of your friends are now highlighted. QED.</p>
<div id="wpcr_respond_1"></div>]]></content:encoded>
			<wfw:commentRss>http://www.metawebreno.com/blog/2010/11/facebook-how-to-select-all-friends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure PHP on XP Pro with IIS (Internet Information Service)</title>
		<link>http://www.metawebreno.com/blog/2009/11/configure-php-on-xp-pro-with-iis-internet-information-service/</link>
		<comments>http://www.metawebreno.com/blog/2009/11/configure-php-on-xp-pro-with-iis-internet-information-service/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 19:08:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computer Setup]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.metawd.com/blog/?p=3</guid>
		<description><![CDATA[Recently, I had the rather unpleasant experience of having to reformat the hard drive on my computer, and subsequently re-install Windows XP Pro, PHP, MySQL, and a host of other programs. This turned out to be entirely worth my time investment, as it now runs like it was brand new. However, I had some difficulty [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Arial; font-size: 13px;">Recently, I had the rather unpleasant experience of having to reformat the hard drive on my computer, and subsequently re-install Windows XP Pro, PHP, MySQL, and a host of other programs. This turned out to be entirely worth my time investment, as it now runs like it was brand new. However, I had some difficulty with Microsoft’s IIS (Internet Information Service) and PHP/MySQL, so I have decided to list off the specific directions to help anyone else that may be in my predicament. If you follow these steps exactly then you shouldn’t have any issues.</span></p>
<p>My System (for comparison)<br />
• MS XP Pro<br />
• Service Pack 2<br />
• Intel Core 2 Duo @2GHz<br />
• 3.25 GB RAM</p>
<p>1) Install Microsoft IIS onto your computer. For this step you will probably need the Windows software cd that came with your computer.<br />
a. Go to Control Panel<br />
b. Click on Add/Remove Windows Components<br />
c. Check IIS, hit &#8220;Next&#8221; follow on-screen directions</p>
<p>2) Download PHP from http://www.php.net/downloads.php. Currently I am using version 5.2.9.<br />
a. Extract the Zipped files to C:\PHP. (PHP’s website</p>
<p>3) PHP 5 includes a CGI executable and a CLI executable as well as the server modules. All .dll files for PPHP can be found in the folder C:\PHP\ext</p>
<p>4) Add php5ts.dll to the Environmental Services PATH<br />
a. Click on &#8220;Start&#8221;<br />
b. Right-click on &#8220;My Computer&#8221;<br />
c. Select &#8220;Properties&#8221;<br />
d. Select &#8220;Advanced&#8221;<br />
e. Select &#8220;Environmental Variables&#8221;<br />
f. In the bottom panel, scroll to and double-click on &#8220;PATH&#8221; at the end of the statement, add &#8220;;C:\PHP&#8221; Do NOT forget the semi-colon, and do NOT change anything else!<br />
g. Click &#8220;OK&#8221; on the Environmental Variables window and then on the System Properties window. Restart Computer.</p>
<p>5) Configure PHP.<br />
a. Navigate to C:\PHP<br />
b. Rename php.ini-recommended to php.ini and open in any text editor<br />
c. Search for &#8220;doc_root&#8221;<br />
d. Delete preceding semi-colon and change to &#8220;doc_root=C:\inetpub\wwwroot<br />
e. Search for &#8220;cgi.force_redirect&#8221;<br />
f. Delete preceding semi-colon and change to &#8220;cgi.force_redirect=0&#8243;</p>
<p>6) Configure IIS<br />
a. Click on &#8220;Start&#8221;<br />
b. Right-click on &#8220;My Computer&#8221;<br />
c. Select &#8220;Manage&#8221;<br />
d. Maximize &#8220;Services and Applications&#8221;<br />
e. Right-click on &#8220;Web Sites&#8221; and select &#8220;Properties&#8221;<br />
f. Under the &#8220;ISAPI Filters&#8221; tab click on &#8220;Add&#8221;, set filter name to &#8220;PHP&#8221;, set Executable to &#8220;C:\PHP\php5isapi.dll&#8221;<br />
g. Under the &#8220;Home Directory&#8221; tab set &#8220;Execute Permissions&#8221; to &#8220;Scripts Only&#8221;<br />
h. Under the &#8220;Documents&#8221; tab click &#8220;Add&#8221; and enter &#8220;index.php&#8221; and Click &#8220;ok&#8221;<br />
i. Click on &#8220;OK&#8221; for the &#8220;Web Sites Properties&#8221; window.<br />
j. Restart IIS<br />
i. Right-click on &#8220;Internet Information Services&#8221; in the &#8220;Computer Management&#8221; window<br />
ii. Select &#8220;ALL Tasks&#8221; then &#8220;Restart IIS&#8221;, then select &#8220;OK&#8221;</p>
<p>7) Test PHP<br />
a. Open a text editor (such as Notepad)<br />
b. Enter in this:<br />
c. Make sure to save as &#8220;phpinfo.php&#8221; in the directory &#8220;C:\inetpub\wwwroot&#8221;;<br />
d. in Notepad, when saving, select the file type as &#8220;All Files&#8221;. If the file is saved as .txt it will not work.<br />
e. Open up your favorite browser and use this link:<br />
i. http://localhost/phpinfo.php<br />
f. Your browser should now display a complete listing of PHP attributes.</p>
<p>Done!</p>
<p>Next time, configuring MySQL to work with PHP.</p>
<p>Please don’t hesitate to link to this article!</p>
<div id="wpcr_respond_1"></div>]]></content:encoded>
			<wfw:commentRss>http://www.metawebreno.com/blog/2009/11/configure-php-on-xp-pro-with-iis-internet-information-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

