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

<channel>
	<title>Garbage In Garbage Out : Tech Blog &#187; How-To</title>
	<atom:link href="http://www.gigoblog.com/category/technology/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gigoblog.com</link>
	<description>A collection of technology tips and other words</description>
	<lastBuildDate>Mon, 05 Dec 2011 23:12: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>
	<copyright>2006-2008 </copyright>
	<managingEditor>pontificate.maximus@gmail.com (Garbage In Garbage Out : Tech Blog)</managingEditor>
	<webMaster>pontificate.maximus@gmail.com (Garbage In Garbage Out : Tech Blog)</webMaster>
	<ttl>1440</ttl>
	<image>
		<url>http://www.gigoblog.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>Garbage In Garbage Out : Tech Blog</title>
		<link>http://www.gigoblog.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>WTMB. WYSIWYG (YABB), but YKTD: GIGO.</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &#38; Culture" />
	<itunes:author>Garbage In Garbage Out : Tech Blog</itunes:author>
	<itunes:owner>
		<itunes:name>Garbage In Garbage Out : Tech Blog</itunes:name>
		<itunes:email>pontificate.maximus@gmail.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.gigoblog.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>iMessage and push notifications not working on your wi-fi network?</title>
		<link>http://www.gigoblog.com/2011/11/11/imessage-not-working-on-your-wi-fi-network/</link>
		<comments>http://www.gigoblog.com/2011/11/11/imessage-not-working-on-your-wi-fi-network/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 14:36:44 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gigoblog.com/?p=310</guid>
		<description><![CDATA[Apple&#8217;s new iOS 5 includes a feature that allows text messages to be delivered directly to iOS devices, bypassing your carrier&#8217;s cellular network completely. It&#8217;s nice, insofar as it includes delivery confirmation messages. So, iPhones know when a message is being sent to another iPhone, and automatically uses this new service called iMessage. The downside [...]]]></description>
			<content:encoded><![CDATA[<p>Apple&#8217;s new iOS 5 includes a feature that allows text messages to be delivered directly to iOS devices, bypassing your carrier&#8217;s cellular network completely. It&#8217;s nice, insofar as it includes delivery confirmation messages. So, iPhones know when a message is being sent to another iPhone, and automatically uses this new service called iMessage.</p>
<p>The downside is that if you connect automatically to a wi-fi network that has blocked ports, you&#8217;ll find that iMessage text messages aren&#8217;t delivered. They often just pause midway through sending.</p>
<p>Also, you may find that other push notifications for other apps (like Facebook, Calendar, etc.) don&#8217;t get pushed to iPhones.</p>
<p>Not to worry, it&#8217;s an easy fix (so long as your network administrator is amenable to fully supporting iOS features like this!).</p>
<p>iMessage and push notifications works over the APNS (Apple Push Notification Service) channel. That is TCP Port 5223 outbound to 17.0.0.0/8 (Apple). Your admin will know what to do with this information!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2011/11/11/imessage-not-working-on-your-wi-fi-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change permissions on all files and/or all directories</title>
		<link>http://www.gigoblog.com/2011/09/14/change-permissions-on-all-files-o-directories/</link>
		<comments>http://www.gigoblog.com/2011/09/14/change-permissions-on-all-files-o-directories/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 21:12:29 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gigoblog.com/?p=306</guid>
		<description><![CDATA[I recently needed to change the permissions of all files inside a directory, including subdirectories. From the command line in Mac OS X, I ran this command with success which changed all files recursively to 666 (rw-rw-rw-): sudo find . -type f -exec chmod 666 {} \; Likewise, to change only directories to 777 (rwxrwxrwx), [...]]]></description>
			<content:encoded><![CDATA[<p>I recently needed to change the permissions of all files inside a directory, including subdirectories. From the command line in Mac OS X, I ran this command with success which changed all files recursively to 666 (rw-rw-rw-):</p>
<p><code>sudo find . -type f -exec chmod 666 {} \;</code></p>
<p>Likewise, to change only directories to 777 (rwxrwxrwx), I used:</p>
<p><code>sudo find . -type d -exec chmod 775 {} \;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2011/09/14/change-permissions-on-all-files-o-directories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache runs slow in Mac OS X Lion? Speed up Apache in 10.7!</title>
		<link>http://www.gigoblog.com/2011/09/06/apache-runs-slow-in-mac-os-x-lion-speed-up-apache-in-10-7/</link>
		<comments>http://www.gigoblog.com/2011/09/06/apache-runs-slow-in-mac-os-x-lion-speed-up-apache-in-10-7/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 16:11:53 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gigoblog.com/?p=304</guid>
		<description><![CDATA[Apache runs very slowly in Mac OS X 10.7.1 Lion. I checked out the /etc/apache2/httpd.conf file and noticed that Apple shipped Lion with every single module turned on, meaning Apache is chewing up a lot of memory and CPU cycles on modules that (typically) aren&#8217;t needed! Here&#8217;s how to reclaim the speed of Snow Leopard [...]]]></description>
			<content:encoded><![CDATA[<p>Apache runs very slowly in Mac OS X 10.7.1 Lion. I checked out the /etc/apache2/httpd.conf file and noticed that Apple shipped Lion with every single module turned on, meaning Apache is chewing up a lot of memory and CPU cycles on modules that (typically) aren&#8217;t needed!</p>
<p>Here&#8217;s how to reclaim the speed of Snow Leopard in Mac OS X Lion&#8217;s Apache configuration:</p>
<p>First, make a backup of /etc/apache2/httpd.conf.</p>
<p>Next, edit /etc/apache2/httpd.conf in your favorite editor.</p>
<p>Search for LoadModule.</p>
<p>Then, comment out the modules that you don&#8217;t need by adding a hash character (#) at the beginning of the line. Be judicious in what you turn off. For example, I turned off mod_userdir.so, which then caused Apache to fail on startup.</p>
<p>Running httpd -t from the terminal showed that Apple&#8217;s default httpd.conf file is using the mod_userdir.so module, so I left it on (since it presumably supports using home directories for serving Sites).</p>
<p>For me, the modules I turned off are:</p>
<p>#LoadModule authn_dbm_module libexec/apache2/mod_authn_dbm.so<br />
#LoadModule authn_anon_module libexec/apache2/mod_authn_anon.so<br />
#LoadModule authn_dbd_module libexec/apache2/mod_authn_dbd.so<br />
#LoadModule authn_default_module libexec/apache2/mod_authn_default.so<br />
#LoadModule authz_groupfile_module libexec/apache2/mod_authz_groupfile.so<br />
#LoadModule authz_user_module libexec/apache2/mod_authz_user.so<br />
#LoadModule authz_dbm_module libexec/apache2/mod_authz_dbm.so<br />
#LoadModule authz_owner_module libexec/apache2/mod_authz_owner.so<br />
#LoadModule authz_default_module libexec/apache2/mod_authz_default.so<br />
#LoadModule auth_basic_module libexec/apache2/mod_auth_basic.so<br />
#LoadModule auth_digest_module libexec/apache2/mod_auth_digest.so<br />
#LoadModule dbd_module libexec/apache2/mod_dbd.so<br />
#LoadModule mime_magic_module libexec/apache2/mod_mime_magic.so<br />
#LoadModule unique_id_module libexec/apache2/mod_unique_id.so<br />
#LoadModule proxy_connect_module libexec/apache2/mod_proxy_connect.so<br />
#LoadModule proxy_ftp_module libexec/apache2/mod_proxy_ftp.so<br />
#LoadModule proxy_scgi_module libexec/apache2/mod_proxy_scgi.so<br />
#LoadModule proxy_ajp_module libexec/apache2/mod_proxy_ajp.so<br />
#LoadModule dav_module libexec/apache2/mod_dav.so<br />
#LoadModule dav_fs_module libexec/apache2/mod_dav_fs.so<br />
#LoadModule bonjour_module     libexec/apache2/mod_bonjour.so<br />
#LoadModule fastcgi_module     libexec/apache2/mod_fastcgi.so</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2011/09/06/apache-runs-slow-in-mac-os-x-lion-speed-up-apache-in-10-7/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t display content hosted by Mac OS X server in an iframe? Here&#8217;s how!</title>
		<link>http://www.gigoblog.com/2011/07/23/cant-display-content-hosted-by-mac-os-x-server-in-an-iframe-heres-how/</link>
		<comments>http://www.gigoblog.com/2011/07/23/cant-display-content-hosted-by-mac-os-x-server-in-an-iframe-heres-how/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 17:06:44 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gigoblog.com/?p=293</guid>
		<description><![CDATA[Apache on Mac OS X is configured with security in mind. Apple has chosen to ship it with a setting that causes the x-frame-options header to be sent, which has the effect of causing content hosted on a Mac OS X server to not show up inside and iframe on another site. Well-written web apps [...]]]></description>
			<content:encoded><![CDATA[<p>Apache on Mac OS X is configured with security in mind. Apple has chosen to ship it with a setting that causes the x-frame-options header to be sent, which has the effect of causing content hosted on a Mac OS X server to not show up inside and iframe on another site.</p>
<p>Well-written web apps (like WordPress) already send the x-frame-options header. My personal preference is to turn this off globally and then ensure that my web apps send it as needed.</p>
<p>Here&#8217;s how to disable it:<br />
<span id="more-293"></span><br />
In Mac OS X 10.6, it is included in the /etc/apache2/httpd_teams_required.conf file. Edit this file in your favorite editor and find the line that reads:</p>
<p><code>&lt;ifmodule mod_headers.c&gt;<br />
&nbsp;&nbsp;&nbsp;Header set X-Frame-Options "SameOrigin"<br />
&lt;/ifmodule></code></p>
<p>It&#8217;s obvious that Apple intends for this setting for the wiki/blog server in Mac OS X server, so let&#8217;s make sure it&#8217;s set up to still provide the protection needed by the wiki/blog server. </p>
<p><code>&lt;ifmodule mod_headers.c&gt;<br />
&nbsp;&nbsp;&nbsp;&lt;location /groups&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Header set X-Frame-Options "SameOrigin"<br />
&nbsp;&nbsp;&nbsp;&lt;/location&gt;<br />
&lt;/ifmodule&gt;</code></p>
<p>Thankfully, it looks like Mac OS X 10.7 Lion is more judicious in how this header is applied.</p>
<p>BTW, for those interested, I located this line originally from the terminal using this command:</p>
<p><code>$sudo grep -ir 'x-frame-options' /etc/apache2</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2011/07/23/cant-display-content-hosted-by-mac-os-x-server-in-an-iframe-heres-how/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>SocialEngine 4.1.6 CDN support requires SSH2; Install instructions here</title>
		<link>http://www.gigoblog.com/2011/06/23/socialengine-4-1-6-cdn-support-requires-ssh2-install-instructions-here/</link>
		<comments>http://www.gigoblog.com/2011/06/23/socialengine-4-1-6-cdn-support-requires-ssh2-install-instructions-here/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 15:23:06 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Mac OS X Server]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SocialEngine]]></category>

		<guid isPermaLink="false">http://www.gigoblog.com/?p=287</guid>
		<description><![CDATA[You can easily install the PHP SSH2 extension to PHP5 on Mac OS X Server to support the new CDN features of SocialEngine 4.1.6. Here’s how: Download and install MacPorts from http://macports.org. The following steps are performed in the Terminal: Force MacPorts to update: sudo port -v selfupdate Now, install memcached: sudo port install php5-ssh2 [...]]]></description>
			<content:encoded><![CDATA[<p>You can easily install the PHP SSH2 extension to PHP5 on Mac OS X Server to support the new CDN features of SocialEngine 4.1.6. Here’s how:</p>
<p>Download and install MacPorts from http://macports.org.</p>
<p>The following steps are performed in the Terminal:</p>
<p>Force MacPorts to update:<br />
sudo port -v selfupdate</p>
<p>Now, install memcached:<br />
sudo port install php5-ssh2</p>
<p><span id="more-287"></span>Copy the newly created shared object for mcrypt into Mac OS X’s default PHP5 extension directory:<br />
sudo cp /opt/local/lib/php/extensions/no-debug-non-zts-20090626/ssh2.so /usr/lib/php/extensions/no-debug-non-zts-20090626/</p>
<p>Next, you need to edit php.ini to add the extensions. Find the phrase Dynamic Extensions, and add:</p>
<p>extension=ssh2.so</p>
<p>And finally, restart Apache:<br />
sudo apachectl restart</p>
<p>To confirm installation, create a new PHP document called phpinfo.php with the following contents:<br />
< ?php phpinfo(); ?></p>
<p>Point your browser to the URL of that file. If all went well, you’ll see this block:<br />
<img src="http://www.gigoblog.com/wp-content/uploads/2011/06/Screen-shot-2011-06-23-at-11.21.02-AM.png" alt="" title="Screen shot 2011-06-23 at 11.21.02 AM" width="602" height="210" class="alignnone size-full wp-image-288" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2011/06/23/socialengine-4-1-6-cdn-support-requires-ssh2-install-instructions-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add MySQL to terminal shell in Mac OS X</title>
		<link>http://www.gigoblog.com/2011/03/13/add-mysql-to-terminal-shell-in-mac-os-x/</link>
		<comments>http://www.gigoblog.com/2011/03/13/add-mysql-to-terminal-shell-in-mac-os-x/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 21:15:27 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.gigoblog.com/?p=281</guid>
		<description><![CDATA[Mac OS X 10.6 snow leopard uses the bash shell by default. If you install MySQL from the disk image (dmg) from http://dev.mysql.com/downloads/, you can make it easy to access the mysql binary from the command line by adding it to your bash path. Here&#8217;s how: Open terminal, and type: echo 'export PATH=/usr/local/mysql/bin:$PATH' >> ~/.bash_profile [...]]]></description>
			<content:encoded><![CDATA[<p>Mac OS X 10.6 snow leopard uses the bash shell by default. If you install MySQL from the disk image (dmg) from http://dev.mysql.com/downloads/, you can make it easy to access the mysql binary from the command line by adding it to your bash path.</p>
<p>Here&#8217;s how:</p>
<p>Open terminal, and type:</p>
<p><code>echo 'export PATH=/usr/local/mysql/bin:$PATH' >> ~/.bash_profile</code></p>
<p>This adds the default location of the MySQL binary to your shell environment.</p>
<p>Then, you need to force the system to reload your .bash_profile file. Again, from terminal, enter:</p>
<p><code>. ~/.bash_profile</code></p>
<p>You can check your environment variables by entering:</p>
<p><code>env</code></p>
<p>Now, to access MySQL from the command line, you only need enter:</p>
<p><code>mysql</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2011/03/13/add-mysql-to-terminal-shell-in-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add mcrypt to Mac OS X Server</title>
		<link>http://www.gigoblog.com/2011/01/27/add-mcrypt-to-mac-os-x-server/</link>
		<comments>http://www.gigoblog.com/2011/01/27/add-mcrypt-to-mac-os-x-server/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 02:52:25 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Mac OS X Server]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.gigoblog.com/?p=275</guid>
		<description><![CDATA[You can easily install the mcrypt extension to PHP5 on Mac OS X Server. Here&#8217;s how: Download and install MacPorts from http://macports.org. The following steps are performed in the Terminal: Force MacPorts to update: sudo port -v selfupdate Now, install memcached: sudo port install php5-mcrypt Copy the newly created shared object for mcrypt into Mac [...]]]></description>
			<content:encoded><![CDATA[<p>You can easily install the mcrypt extension to PHP5 on Mac OS X Server. Here&#8217;s how:</p>
<p>Download and install MacPorts from http://macports.org.</p>
<p>The following steps are performed in the Terminal:</p>
<p>Force MacPorts to update:<br />
<code>sudo port -v selfupdate</code></p>
<p>Now, install memcached:<br />
<code>sudo port install php5-mcrypt</code></p>
<p>Copy the newly created shared object for mcrypt into Mac OS X’s default PHP5 extension directory:<br />
<code>sudo cp /opt/local/lib/php/extensions/no-debug-non-zts-20090626/mcrypt.so /usr/lib/php/extensions/no-debug-non-zts-20090626/</code></p>
<p>Next, you need to edit php.ini to add the extensions. Find the phrase Dynamic Extensions, and add:</p>
<p><code>extension=mcrypt.so</code></p>
<p>And finally, restart Apache:<br />
<code>sudo apachectl restart</code></p>
<p>To confirm installation, create a new PHP document called phpinfo.php with the following contents:<br />
<code>< ?php phpinfo(); ?></code></p>
<p>Point your browser to the URL of that file. If all went well, you’ll see this block:</p>
<div id="attachment_276" class="wp-caption aligncenter" style="width: 618px"><a href="http://www.gigoblog.com/wp-content/uploads/2011/01/Screen-shot-2011-01-27-at-9.48.58-PM.png"><img src="http://www.gigoblog.com/wp-content/uploads/2011/01/Screen-shot-2011-01-27-at-9.48.58-PM.png" alt="" title="mcrypt installed in Mac OS X Server&#039;s native PHP5" width="608" height="307" class="size-full wp-image-276" /></a><p class="wp-caption-text">mcrypt installed in Mac OS X Server's native PHP5</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2011/01/27/add-mcrypt-to-mac-os-x-server/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Install memcache and APC on Mac OS X Server (snow leopard 10.6)</title>
		<link>http://www.gigoblog.com/2011/01/23/install_memcache_and_apc_on_mac_os_x_server/</link>
		<comments>http://www.gigoblog.com/2011/01/23/install_memcache_and_apc_on_mac_os_x_server/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 23:00:15 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Mac OS X Server]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.gigoblog.com/?p=255</guid>
		<description><![CDATA[Looking to speed up your SocialEngine, Drupal, or other PHP/MySQL web site? The combination of APC and Memcache can really speed up sites based on these platforms. If you&#8217;re an admin of a server running Mac OS X Server (10.6), here&#8217;s how to install APC and memcache on Mac OS X server: Download and install [...]]]></description>
			<content:encoded><![CDATA[<p>Looking to speed up your SocialEngine, Drupal, or other PHP/MySQL web site? The combination of APC and Memcache can really speed up sites based on these platforms. If you&#8217;re an admin of a server running Mac OS X Server (10.6), here&#8217;s how to install APC and memcache on Mac OS X server:</p>
<p>Download and install MacPorts from <a href="http://macports.org">http://macports.org</a>.</p>
<p>The following steps are performed in the Terminal:</p>
<p>Force MacPorts to update:</p>
<p><code>sudo port -v selfupdate</code></p>
<p>Now, install memcached:<br />
<code>sudo port install memcached</code></p>
<p>Set memcached to load on startup:<br />
<code>sudo port load memcached</code></p>
<p>Install the PHP5 module for memcache:<br />
<code>sudo port install php5-memcache</code></p>
<p>Copy the newly created shared object for memcache into Mac OS X&#8217;s default PHP5 extension directory:<br />
<code>sudo cp /opt/local/lib/php/extensions/no-debug-non-zts-20090626/memcache.so /usr/lib/php/extensions/no-debug-non-zts-20090626/</code></p>
<p>Install APC (Alternative PHP Cache):<br />
<code>sudo port install php5-apc</code></p>
<p>Copy the newly created shared object for APC into Mac OS X&#8217;s default PHP5 extension directory:<br />
<code>sudo cp /opt/local/lib/php/extensions/no-debug-non-zts-20090626/apc.so /usr/lib/php/extensions/no-debug-non-zts-20090626/</code></p>
<p>Next, you need to edit php.ini to add the extensions. Find the phrase Dynamic Extensions, and add:</p>
<p><code>extension=memcache.so<br />
extension=apc.so</code></p>
<p>And finally, restart Apache:<br />
<code>sudo apachectl restart</code></p>
<p>To confirm installation, create a new PHP document called phpinfo.php with the following contents:<br />
<code>< ?php phpinfo(); ?></code></p>
<p>Point your browser to that file. If all went well, you&#8217;ll see these blocks:<br />
<img src="http://www.gigoblog.com/wp-content/uploads/2011/01/Screen-shot-2011-01-23-at-5.37.56-PM.png" alt="" title="Memcache is loaded!" width="607" height="298" class="aligncenter size-full wp-image-259" /></p>
<p><img src="http://www.gigoblog.com/wp-content/uploads/2011/01/Screen-shot-2011-01-23-at-5.37.41-PM.png" alt="" title="APC is loaded!" width="609" height="862" class="aligncenter size-full wp-image-260" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2011/01/23/install_memcache_and_apc_on_mac_os_x_server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install and run Maya 2009 on Snow Leopard</title>
		<link>http://www.gigoblog.com/2010/04/12/install-and-run-maya-2009-on-snow-leopard/</link>
		<comments>http://www.gigoblog.com/2010/04/12/install-and-run-maya-2009-on-snow-leopard/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 00:34:07 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gigoblog.com/?p=243</guid>
		<description><![CDATA[Did you upgrade to Maya 2010 because you found that you couldn&#8217;t install Maya 2009 on Snow Leopard 10.6? Are you finding that Maya 2010 on Snow Leopard is flakey, giving you lots of rainbow beach balls? No worries. Ian Herzog over on MacLearning.org has the answer, and it&#8217;s simple as tweaking the Maya 2009 [...]]]></description>
			<content:encoded><![CDATA[<p>Did you upgrade to Maya 2010 because you found that you couldn&#8217;t install Maya 2009 on Snow Leopard 10.6? Are you finding that Maya 2010 on Snow Leopard is flakey, giving you lots of rainbow beach balls? No worries. Ian Herzog over on MacLearning.org has the answer, and it&#8217;s simple as tweaking the Maya 2009 installer to work on Mac OS X Snow Leopard. <a href="http://maclearning.org/Ian/blog/44/">Check it out</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2010/04/12/install-and-run-maya-2009-on-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable AVI, FLV and DivX encoding in Podcast Producer</title>
		<link>http://www.gigoblog.com/2009/01/31/enable-avi-flv-and-divx-encoding-in-podcast-producer/</link>
		<comments>http://www.gigoblog.com/2009/01/31/enable-avi-flv-and-divx-encoding-in-podcast-producer/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 20:50:37 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Mac OS X Server]]></category>
		<category><![CDATA[Podcast Producer]]></category>
		<category><![CDATA[QuickTime]]></category>

		<guid isPermaLink="false">http://www.gigoblog.com/?p=204</guid>
		<description><![CDATA[Excited at the prospect of using Flip Ultra and Flip Mino cameras and uploading the video via Podcast Producer, I was disappointed to discover that both Flip cameras wrap their video in AVI files, and use the 3ivx codec, effectively thwarting my Podcast Producer plans. Videos uploaded via the Podcast Capture utility resulted in audio-only [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float:right" title="Podcast Capture icon" src="http://www.gigoblog.com/wp-content/uploads/2009/01/picture-121.png" alt="Podcast Capture icon" width="123" height="137" />Excited at the prospect of using <a href="http://www.gigoblog.com/wp-content/uploads/2009/01/picture-13.png" target="_blank">Flip Ultra and Flip Mino cameras</a> and uploading the video via Podcast Producer, I was disappointed to discover that both Flip cameras wrap their video in AVI files, and use the 3ivx codec, effectively thwarting my Podcast Producer plans. Videos uploaded via the Podcast Capture utility resulted in audio-only posts to the wiki/blog server.</p>
<p>That highlights one common complaint I&#8217;ve made and heard about Podcast Producer &#8212; that it demonstrates it&#8217;s heritage with a decided bias for Apple-endorsed wrappers and codecs (read: QuickTime).</p>
<p>In my quest to use these fantastic(ly inexpensive-but-handy) Flip video cameras, I recently found out that simply adding a QuickTime plugin to Mac OS X 10.5 server provides the capability to transcode far more file formats and encodings than the stock installation of Podcast Producer allows: AVI, FLV, 3ivx, DivX, MS-MPEG4 v1 &amp; v2, Flash Video, Indeo 1 &amp; 2, to name a few!</p>
<p>The solution is drop dead simple (as any Mac OS X endeavor ought to be):<span id="more-204"></span></p>
<p>First, download the Perian plugin: <a href="http://www.perian.org/" target="_blank">http://www.perian.org/</a></p>
<p>Second, open the disk image.</p>
<p><img class="size-full wp-image-205 alignnone" title="Perian_1.1.3.dmg icon" src="http://www.gigoblog.com/wp-content/uploads/2009/01/picture-12.png" alt="The Perian disk image" width="101" height="87" /></p>
<p>Third, double click the Perian.prefpane icon in the disk image window.</p>
<p><img class="size-full wp-image-206 alignnone" title="Perian disk image window" src="http://www.gigoblog.com/wp-content/uploads/2009/01/picture-9.png" alt="picture-9" width="359" height="289" /></p>
<p><span style="color: #ff0000;"><strong>IMPORTANT:</strong></span> Make sure you install for all users of the computer. This is because the Podcast Producer service runs as its own user. If you do not, it *will not* work for Podcast Producer.</p>
<p><img class="size-full wp-image-207 alignnone" title="Perian - install as all users" src="http://www.gigoblog.com/wp-content/uploads/2009/01/picture-10.png" alt="Perian - install as all users" width="243" height="137" /></p>
<p>Finally, confirm that the preference pane indicates and &#8220;Installed Version #.#.#&#8221;, and set the Audio Output to &#8220;Stereo&#8221;.</p>
<p><img class="alignnone size-full wp-image-209" title="Perian Preference Pane" src="http://www.gigoblog.com/wp-content/uploads/2009/01/picture-11.png" alt="Perian Preference Pane" width="449" height="296" /></p>
<p>Restart Podcast Producer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2009/01/31/enable-avi-flv-and-divx-encoding-in-podcast-producer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

