<?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>Web Design Philippines &#124; MikeWagan.net &#187; Work</title>
	<atom:link href="http://www.mikewagan.net/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikewagan.net</link>
	<description>Web Design, Life, and Everything in Between</description>
	<lastBuildDate>Sat, 10 Jul 2010 06:15:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Drupal &#8211; How to Diagnose a Blank White Screen: White Screen of Death (WSOD)</title>
		<link>http://www.mikewagan.net/2010/07/drupal-how-to-diagnose-a-blank-white-screen-white-screen-of-death-wsod/</link>
		<comments>http://www.mikewagan.net/2010/07/drupal-how-to-diagnose-a-blank-white-screen-white-screen-of-death-wsod/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 05:53:28 +0000</pubDate>
		<dc:creator>Mike Wagan</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[white screen of death]]></category>

		<guid isPermaLink="false">http://www.mikewagan.net/?p=351</guid>
		<description><![CDATA[While developing a Drupal website, I was testing out the created pages and suddenly on one page, nothing was loaded. There was just a blank white page &#8211; more appropriately called the Drupal White Screen of Death or WSOD. First step I did was to enable error reporting because there might also be problems with [...]


Related posts:<ol><li><a href='http://www.mikewagan.net/2010/03/9-tips-for-improving-drupal-performance/' rel='bookmark' title='Permanent Link: 9 Tips for Improving Drupal Performance'>9 Tips for Improving Drupal Performance</a> <small>I&#8217;ve started working on a Drupal Project just last month and although the learning curve is quite steep, its also...</small></li><li><a href='http://www.mikewagan.net/2010/04/upgrade-php-to-5-2-in-centos/' rel='bookmark' title='Permanent Link: How to Upgrade PHP to 5.2 in CentOS'>How to Upgrade PHP to 5.2 in CentOS</a> <small>Developing a Drupal community site has been really good for a while until I needed to search a module to...</small></li><li><a href='http://www.mikewagan.net/2010/03/create-multiple-step-forms-using-cck-fieldgroups-in-drupal/' rel='bookmark' title='Permanent Link: Create multiple-step forms using CCK Fieldgroups in Drupal'>Create multiple-step forms using CCK Fieldgroups in Drupal</a> <small>Lately I&#8217;ve been working on a Drupal project, and one aspect in our priority list is the user-friendliness for the...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>While developing a Drupal website, I was testing out the created pages and suddenly on one page, nothing was loaded. There was just a blank white page &#8211; more appropriately called the Drupal White Screen of Death or WSOD. First step I did was to enable error reporting because there might also be problems with the template I was customizing: <span id="more-351"></span>
<center>
<table><tr><td>
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 336x280, created 8/4/09 mikewagan.net */
google_ad_slot = "3873552827";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td><td>
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 160x90, created 10/8/09 mikewagan.net */
google_ad_slot = "0020347340";
google_ad_width = 160;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 160x90, created 10/8/09 mikewagan.net */
google_ad_slot = "0020347340";
google_ad_width = 160;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></td></tr></table>
</center>
</p>
<p>Temporarily edit your index.php file and add these lines at the top (after the first opening tag):<br />
<code><br />
error_reporting(E_ALL);<br />
ini_set('display_errors', TRUE);<br />
ini_set('display_startup_errors', TRUE);</code></p>
<p>// $Id: index.php,v 1.94 2007/12/26&#8230;</p>
<p>Then I went back again to the blank white page and I saw that there were some syntax errors in my template. After fixing those errors in my template I deleted again that chunk of code to avoid others seeing diagnostic errors in the site.</p>
<p>It was a quick solution, but if that did not solve your problems, try checking out these links:</p>
<ul>
<li> <a href="http://drupal.org/node/158043" target="_blank">http://drupal.org/node/158043</a></li>
<li><a href="http://www.chromaticsites.com/blog/15-common-drupal-problems-that-make-you-scream-solutions-included/" target="_blank">http://www.chromaticsites.com/blog/15-common-drupal-problems-that-make-you-scream-solutions-included/</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.mikewagan.net/2010/03/9-tips-for-improving-drupal-performance/' rel='bookmark' title='Permanent Link: 9 Tips for Improving Drupal Performance'>9 Tips for Improving Drupal Performance</a> <small>I&#8217;ve started working on a Drupal Project just last month and although the learning curve is quite steep, its also...</small></li><li><a href='http://www.mikewagan.net/2010/04/upgrade-php-to-5-2-in-centos/' rel='bookmark' title='Permanent Link: How to Upgrade PHP to 5.2 in CentOS'>How to Upgrade PHP to 5.2 in CentOS</a> <small>Developing a Drupal community site has been really good for a while until I needed to search a module to...</small></li><li><a href='http://www.mikewagan.net/2010/03/create-multiple-step-forms-using-cck-fieldgroups-in-drupal/' rel='bookmark' title='Permanent Link: Create multiple-step forms using CCK Fieldgroups in Drupal'>Create multiple-step forms using CCK Fieldgroups in Drupal</a> <small>Lately I&#8217;ve been working on a Drupal project, and one aspect in our priority list is the user-friendliness for the...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikewagan.net/2010/07/drupal-how-to-diagnose-a-blank-white-screen-white-screen-of-death-wsod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Upgrade PHP to 5.2 in CentOS</title>
		<link>http://www.mikewagan.net/2010/04/upgrade-php-to-5-2-in-centos/</link>
		<comments>http://www.mikewagan.net/2010/04/upgrade-php-to-5-2-in-centos/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 11:51:02 +0000</pubDate>
		<dc:creator>Mike Wagan</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Godaddy VPS]]></category>
		<category><![CDATA[MCRYPT]]></category>
		<category><![CDATA[MHASH]]></category>
		<category><![CDATA[upgrade php]]></category>

		<guid isPermaLink="false">http://www.mikewagan.net/?p=336</guid>
		<description><![CDATA[Developing a Drupal community site has been really good for a while until I needed to search a module to integrate Facebook Connect with it. I found this module specifically for that. Unfortunately, it requires PHP version 5.2, but the one on the Godaddy VPS (which is by default a CentOS flavor) is 5.1 I [...]


Related posts:<ol><li><a href='http://www.mikewagan.net/2010/01/how-to-install-recompile-mcrypt-in-php-centos-vps/' rel='bookmark' title='Permanent Link: How to Install/Recompile MCRYPT in PHP (CentOS VPS)'>How to Install/Recompile MCRYPT in PHP (CentOS VPS)</a> <small>I&#8217;m starting to develop sites with the Interspire Shopping Cart system, which I think is totally way better than Prestashop....</small></li><li><a href='http://www.mikewagan.net/2010/07/drupal-how-to-diagnose-a-blank-white-screen-white-screen-of-death-wsod/' rel='bookmark' title='Permanent Link: Drupal &#8211; How to Diagnose a Blank White Screen: White Screen of Death (WSOD)'>Drupal &#8211; How to Diagnose a Blank White Screen: White Screen of Death (WSOD)</a> <small>While developing a Drupal website, I was testing out the created pages and suddenly on one page, nothing was loaded....</small></li><li><a href='http://www.mikewagan.net/2009/08/wordpress-upgrade-2-8-3/' rel='bookmark' title='Permanent Link: WordPress Upgrade 2.8.3'>WordPress Upgrade 2.8.3</a> <small>Just a self note &#8211; I&#8217;ve upgraded my blog to the latest version of the best blogging platform in the...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Developing a Drupal community site has been really good for a while until I needed to search a module to integrate Facebook Connect with it. I found this <a href="http://drupal.org/project/fbconnect">module</a> specifically for that. Unfortunately, it requires PHP version 5.2, but the one on the Godaddy VPS (which is by default a <strong>CentOS</strong> flavor) is 5.1 I think. I needed to <strong>upgrade the PHP version to 5.2</strong>, and the best possible way is to install the latest rpm for CentOS and do a yum update. Here were the steps I did:</p>
<p><span id="more-336"></span>
<center>
<table><tr><td>
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 336x280, created 8/4/09 mikewagan.net */
google_ad_slot = "3873552827";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td><td>
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 160x90, created 10/8/09 mikewagan.net */
google_ad_slot = "0020347340";
google_ad_width = 160;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 160x90, created 10/8/09 mikewagan.net */
google_ad_slot = "0020347340";
google_ad_width = 160;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></td></tr></table>
</center>
</p>
<p><strong>1. Login to your server using SSH then create an updated .repo file (you need to be root user to do this)</strong></p>
<p><code>vi /etc/yum.repos.d/centos-test.repo</code></p>
<p><strong>2. Paste the following lines in it:</strong><br />
<code><br />
[c5-testing]<br />
name=CentOS-5 Testing<br />
baseurl=http://dev.centos.org/centos/5/testing/$basearch/<br />
enabled=1<br />
gpgcheck=1<br />
gpgkey=http://dev.centos.org/centos/RPM-GPG-KEY-CentOS-testing</code></p>
<p><strong>3. Run a yum update:</strong></p>
<p><code>yum update php</code></p>
<p>That&#8217;s it! Your PHP installation should be updated in about 5 seconds! :)</p>
<p><strong><em>BUT! There are known issues on this</em></strong>, specifically for Zend Optimizer, mcrypt and mhash PHP modules because they are the for the older version of PHP. I fixed the Zend Optimizer issue by re-installing the package itself by yum:</p>
<p><code>wget -q -O - http://www.atomicorp.com/installers/atomic.sh | sh<br />
yum install  php-zend-optimizer</code></p>
<p>For the mcrypt and mhash issues, I just installed updated rpm packaged for these:</p>
<p><code>wget -c ftp://ftp.muug.mb.ca/mirror/centos/5.4/extras/i386/RPMS/php-mcrypt-5.1.6-15.el5.centos.1.i386.rpm<br />
rpm -ivh --nodeps php-mhash-5.2.5-7.i386.rpm<br />
wget -c ftp://ftp.pbone.net/mirror/yum.trixbox.org/centos/5/RPMS/php-mhash-5.2.5-7.i386.rpm<br />
rpm -ivh --nodeps php-mcrypt-5.1.6-15.el5.centos.1.i386.rpm</code></p>
<p>Let me know if this helps or what issues you came across.</p>
<p><em><strong>References: </strong></em></p>
<p><em> </em><a href="http://www.freshblurbs.com/install-php-5-2-centos-5-2-using-yum"><em>http://www.freshblurbs.com/install-php-5-2-centos-5-2-using-yum</em></a></p>
<p><em><a href="http://www.atomicorp.com/wiki/index.php/PHP">http://www.atomicorp.com/wiki/index.php/PHP</a></em></p>
<p><em><br />
</em></p>


<p>Related posts:<ol><li><a href='http://www.mikewagan.net/2010/01/how-to-install-recompile-mcrypt-in-php-centos-vps/' rel='bookmark' title='Permanent Link: How to Install/Recompile MCRYPT in PHP (CentOS VPS)'>How to Install/Recompile MCRYPT in PHP (CentOS VPS)</a> <small>I&#8217;m starting to develop sites with the Interspire Shopping Cart system, which I think is totally way better than Prestashop....</small></li><li><a href='http://www.mikewagan.net/2010/07/drupal-how-to-diagnose-a-blank-white-screen-white-screen-of-death-wsod/' rel='bookmark' title='Permanent Link: Drupal &#8211; How to Diagnose a Blank White Screen: White Screen of Death (WSOD)'>Drupal &#8211; How to Diagnose a Blank White Screen: White Screen of Death (WSOD)</a> <small>While developing a Drupal website, I was testing out the created pages and suddenly on one page, nothing was loaded....</small></li><li><a href='http://www.mikewagan.net/2009/08/wordpress-upgrade-2-8-3/' rel='bookmark' title='Permanent Link: WordPress Upgrade 2.8.3'>WordPress Upgrade 2.8.3</a> <small>Just a self note &#8211; I&#8217;ve upgraded my blog to the latest version of the best blogging platform in the...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikewagan.net/2010/04/upgrade-php-to-5-2-in-centos/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>9 Tips for Improving Drupal Performance</title>
		<link>http://www.mikewagan.net/2010/03/9-tips-for-improving-drupal-performance/</link>
		<comments>http://www.mikewagan.net/2010/03/9-tips-for-improving-drupal-performance/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 07:44:28 +0000</pubDate>
		<dc:creator>Mike Wagan</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[drupal optimization]]></category>

		<guid isPermaLink="false">http://www.mikewagan.net/?p=332</guid>
		<description><![CDATA[I&#8217;ve started working on a Drupal Project just last month and although the learning curve is quite steep, its also a good thing that I chose the Drupal System over others like Joomla and WordPress for building something like an article submission site. Drupal is very advanced &#38; flexible since its got a ton of [...]


Related posts:<ol><li><a href='http://www.mikewagan.net/2010/03/create-multiple-step-forms-using-cck-fieldgroups-in-drupal/' rel='bookmark' title='Permanent Link: Create multiple-step forms using CCK Fieldgroups in Drupal'>Create multiple-step forms using CCK Fieldgroups in Drupal</a> <small>Lately I&#8217;ve been working on a Drupal project, and one aspect in our priority list is the user-friendliness for the...</small></li><li><a href='http://www.mikewagan.net/2009/10/working-paypal-module-for-prestashop/' rel='bookmark' title='Permanent Link: Working Paypal Module for Prestashop'>Working Paypal Module for Prestashop</a> <small>I just finished adding the Paypal payment option for our e-commerce site that uses Prestashop as the shopping cart application....</small></li><li><a href='http://www.mikewagan.net/2010/07/drupal-how-to-diagnose-a-blank-white-screen-white-screen-of-death-wsod/' rel='bookmark' title='Permanent Link: Drupal &#8211; How to Diagnose a Blank White Screen: White Screen of Death (WSOD)'>Drupal &#8211; How to Diagnose a Blank White Screen: White Screen of Death (WSOD)</a> <small>While developing a Drupal website, I was testing out the created pages and suddenly on one page, nothing was loaded....</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started working on a Drupal Project just last month and although the learning curve is quite steep, its also a good thing that I chose the Drupal System over others like Joomla and WordPress for building something like an article submission site. Drupal is very advanced &amp; flexible since its got a ton of available modules and themes. But it also entails some performance drawbacks if you continue to develop a Drupal website without thinking of performance optimization. And with that, here are <strong>9 tips for improving Drupal performance</strong>: <span id="more-332"></span>
<center>
<table><tr><td>
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 336x280, created 8/4/09 mikewagan.net */
google_ad_slot = "3873552827";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td><td>
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 160x90, created 10/8/09 mikewagan.net */
google_ad_slot = "0020347340";
google_ad_width = 160;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 160x90, created 10/8/09 mikewagan.net */
google_ad_slot = "0020347340";
google_ad_width = 160;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></td></tr></table>
</center>
</p>
<h2>1 – Disable Re-Building of Theme Registry</h2>
<p>When a Drupal implementation is under development, themers and/or  developers will often enable an option that forces Drupal to rebuild the  theme registry on every page load. This registry tells Drupal what  template files and overrides exist in the theme’s directory. This is a  very costly operation and would cause noticeable slow down on any  production website. It is important to disable this option upon going  live. Under Administer &gt; Appearance choose the Configure option for  your theme and scroll to the bottom of the page. Make sure the option  named “Rebuild theme registry on every page.” is disabled.</p>
<h2>2 – Enable Page and Block Cache</h2>
<p>Another simple option to enable is Drupal’s caching engine  (Administer &gt; Configuration &gt; Performance). When enabled, Drupal  will render the page and associated blocks once, and then save that  result in the database. This can drastically reduce the number of  database calls run on a page since the results are pre-rendered.</p>
<p>A point to consider about caching is that the more interactive the  site is, the less effective the cache may be. Especially if complex  permissions are at play, Drupal won’t be able to effectively cache since  most of the page content may change depending on the permissions of the  currently logged in user.</p>
<p>Drupal’s caching engine is most effective for anonymous visitors – if  your site is mostly “read only” and doesn’t have visitors logging in,  caching can make a dramatic improvement in site load speed.</p>
<h2>3 – Increase Cache Lifetime</h2>
<p>An option for some sites may be to increase the cache lifetime. This  determines how long Drupal will hold onto a cached result before it will  re-generate the page. If you have frequently changing content, you may  want to set the cache lifetime to only 5 minutes, but if your content  doesn’t change often, an acceptable value may be several hours.</p>
<p>On high-traffic sites, the less often Drupal has to re-generate  pages, the better.</p>
<h2>4 – Optimize JavaScript and CSS Files</h2>
<p>Also in the Performance settings is an option to optimize both  JavaScript and CSS files. When enabled, Drupal will consolidate all CSS  and JS files included on each page into a single file, and compress the  code by removing whitespace. This will reduce the overall file size and  improve page load speeds.</p>
<h2>5 – Disable Un-used Modules</h2>
<p>Due to the staggering array of available contrib modules listed on  Drupal.org, it’s common to download and install dozens of modules to  test out and see if they meet your site’s needs. In the process of doing  this, it’s easy to forget to uninstall the modules you don’t end up  using. Additionally, the default install of Drupal comes with a minimum  number of modules pre-enabled. Again, if your site isn’t using it,  there’s no reason to keep it enabled.</p>
<p>Drupal will fire callbacks for all enabled modules which may come  with their own database queries. Be sure to take the time to clean out  your enabled modules list before going live with a site.</p>
<h2>6 – Configure Cron to Run</h2>
<p>One thing that’s easy to overlook is setting up Drupal’s cron tasks  to run. Most web hosts provide a way to configure “scheduled tasks” or  “cron jobs” in the hosting panel. Drupal’s cron.php fires updates for  RSS aggregators, launches the search indexer, and any tasks defined in  installed modules. In addition, it will perform some basic maintenance  tasks like deleting temporary files and clearing logs.</p>
<p>The Drupal installation guide <a onclick="javascript:pageTracker._trackPageview('/outbound/article/drupal.org');" href="http://drupal.org/cron">covers  cron in detail</a> with several methods for configuring it.</p>
<h2>7 – Disable CCK Content Permissions</h2>
<p>While this tip technically falls under tip 5, I figure it’s important  enough to be explicitly outlined. The CCK module comes with several  sub-modules. One of which is “Content Permissions”. This enables site  administrators to set permissions on a per-field basis. Unless your site  absolutely needs per-field permissions, this is a no-brainer to  disable.</p>
<p>The less permission checks your site has to run the better!</p>
<h2>8 – Disable Database Logging</h2>
<p>Again, another one that technically falls under tip 5, but I feel is  especially important is disabling the database logging module. This  module will log a wide variety of actions performed on the site to the  database. If you’re the only administrator, this module’s usefulness is  greatly reduced and should be turned off. Alternatively, you can enable  the syslog module which ships with core instead. This will write the  more technical log entries to the server’s standard log on the file  system and save the database queries.</p>
<h2>9 – Use a Third Party Comment System</h2>
<p>This one isn’t necessarily Drupal specific, but an easy way to  off-load quite a bit of processing on a popular site. Since Drupal’s  caching system is far more effective when only serving to anonymous  users, if the only reason you have user registration enabled is to allow  them to write comments, you may consider off-loading that task to a  free third party service like <a onclick="javascript:pageTracker._trackPageview('/outbound/article/intensedebate.com');" href="http://intensedebate.com/">Intense  Debate</a> or <a onclick="javascript:pageTracker._trackPageview('/outbound/article/disqus.com');" href="http://disqus.com/">Disqus</a>.  A small clip of javascript is all you need to include into your  template (or include it via a block), to embed a robust comment system  into your site. Also, if your visitors read other sites that use Intense  Debate or Disqus and already have an account (or use OpenID), they’ll  already have an account to comment on your site.</p>
<p>As of this writing, there is a <a onclick="javascript:pageTracker._trackPageview('/outbound/article/drupal.org');" href="http://drupal.org/project/disqus">published  module</a> to add Disqus support as well.</p>
<hr />Hopefully you find some of these simple tips helpful in keeping your  Drupal-powered site running at peak performance! When it comes to  scaling Drupal, these hints are only the tip of the iceberg. Drupal is  perfectly capable of supporting large, high-traffic websites with the  right environment in place, but we’ll save some of the more advanced  server-side tips for another post.</p>
<p><em><strong>Source: <a href="http://fenix-solutions.com/blog/2009/12/09/tips-for-improving-drupal-performance/" target="_blank">http://fenix-solutions.com/blog/2009/12/09/tips-for-improving-drupal-performance/</a></strong></em></p>


<p>Related posts:<ol><li><a href='http://www.mikewagan.net/2010/03/create-multiple-step-forms-using-cck-fieldgroups-in-drupal/' rel='bookmark' title='Permanent Link: Create multiple-step forms using CCK Fieldgroups in Drupal'>Create multiple-step forms using CCK Fieldgroups in Drupal</a> <small>Lately I&#8217;ve been working on a Drupal project, and one aspect in our priority list is the user-friendliness for the...</small></li><li><a href='http://www.mikewagan.net/2009/10/working-paypal-module-for-prestashop/' rel='bookmark' title='Permanent Link: Working Paypal Module for Prestashop'>Working Paypal Module for Prestashop</a> <small>I just finished adding the Paypal payment option for our e-commerce site that uses Prestashop as the shopping cart application....</small></li><li><a href='http://www.mikewagan.net/2010/07/drupal-how-to-diagnose-a-blank-white-screen-white-screen-of-death-wsod/' rel='bookmark' title='Permanent Link: Drupal &#8211; How to Diagnose a Blank White Screen: White Screen of Death (WSOD)'>Drupal &#8211; How to Diagnose a Blank White Screen: White Screen of Death (WSOD)</a> <small>While developing a Drupal website, I was testing out the created pages and suddenly on one page, nothing was loaded....</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikewagan.net/2010/03/9-tips-for-improving-drupal-performance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Allow Div Layers to Float over Flash, Youtube or Vimeo Videos</title>
		<link>http://www.mikewagan.net/2010/02/allow-div-layers-to-float-over-flash-youtube-or-vimeo-videos/</link>
		<comments>http://www.mikewagan.net/2010/02/allow-div-layers-to-float-over-flash-youtube-or-vimeo-videos/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 15:11:01 +0000</pubDate>
		<dc:creator>Mike Wagan</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Tutorials]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[youtube vimeo flash]]></category>

		<guid isPermaLink="false">http://www.mikewagan.net/?p=317</guid>
		<description><![CDATA[For web designers, its always a constant struggle to get those flash, youtube, or vimeo videos tuck under divs where you need them. They somehow always behave like their z-index is close to infinity. By default Flash content in a web page will appear on top of other elements on the page, including floating menus, [...]


Related posts:<ol><li><a href='http://www.mikewagan.net/2009/02/super-bowl-2009-videos/' rel='bookmark' title='Permanent Link: Super Bowl 2009 Videos'>Super Bowl 2009 Videos</a> <small>I have here a collection of the 2009 super bowl videos which I would like to share to you. Cracked.com...</small></li><li><a href='http://www.mikewagan.net/2008/10/please-dont-watch-this-video/' rel='bookmark' title='Permanent Link: Please Don&#8217;t Watch This Video!'>Please Don&#8217;t Watch This Video!</a> <small>This was me two years ago nung adik pa ako sa gitara at pagbabanda. Ampanget ko dito, hehehe&#8230; Just a...</small></li><li><a href='http://www.mikewagan.net/2008/10/first-solid-food-ni-jian/' rel='bookmark' title='Permanent Link: First Solid Food ni Jian'>First Solid Food ni Jian</a> <small>Eto ang unang try ni Jian sa pagkain ng solid food. Five months sya kumain ng first solid food (malambot...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>For web designers, its always a constant struggle to get those flash, youtube, or vimeo videos tuck under divs where you need them. They somehow always behave like their z-index is close to infinity.</p>
<p>By default Flash content in a web page will appear on top of other elements on the page, including floating menus, inline popups etc. This can be pretty annoying if you have a flyout menu on your page and it goes behind the Flash video and this post shows how simple it is to fix. This works in all browsers inclding IE6+<span id="more-317"></span>
<center>
<table><tr><td>
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 336x280, created 8/4/09 mikewagan.net */
google_ad_slot = "3873552827";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td><td>
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 160x90, created 10/8/09 mikewagan.net */
google_ad_slot = "0020347340";
google_ad_width = 160;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript"><!--
google_ad_client = "pub-4709798263732366";
/* 160x90, created 10/8/09 mikewagan.net */
google_ad_slot = "0020347340";
google_ad_width = 160;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></td></tr></table>
</center>
</p>
<p>The first screenshot below shows the default behaviour where the  floating menu appears behind the Vimeo Flash video:</p>
<div style="text-align: center;"><img src="http://www.electrictoolbox.com/images/content/embed-transparent-off.jpg" alt="embedded flash media player without  transparency" width="396" height="270" /></div>
<p>The second screenshot below shows the desired behavioiur where the  floating menu appears on top of the video:</p>
<div style="text-align: center;"><img src="http://www.electrictoolbox.com/images/content/embed-transparent-on.jpg" alt="embedded flash media player with  transparency" width="396" height="270" /></div>
<div style="text-align: left;"><strong>THE SOLUTION:</strong></div>
<p>The following &lt;param&gt; should be added within the  &lt;object&gt;:</p>
<pre>&lt;param name="wmode" value="transparent" /&gt;</pre>
<p>And the following should be added into the &lt;embed&gt; tag:</p>
<pre>wmode="transparent"</pre>
<p>The end result will be something along these lines:</p>
<pre>&lt;object width="400" height="300"&gt;
  &lt;param name="wmode" value="transparent" /&gt;
  &lt;param value="true" name="allowfullscreen" /&gt;
  &lt;param value="always" name="allowscriptaccess" /&gt;
  &lt;param name="movie" value="..." /&gt;
  &lt;embed width="400" height="300" allowscriptaccess="always"
    allowfullscreen="true" type="application/x-shockwave-flash"
    src="..." wmode="transparent"&gt;
  &lt;/embed&gt;
&lt;/object&gt;</pre>
<p>Now floating content will appear above the video.</p>
<p><em>Source: </em><a href="http://www.electrictoolbox.com/div-layers-float-over-flash-vimeo-youtube/" target="_blank"><em>ElectricToolbox.com</em></a></p>


<p>Related posts:<ol><li><a href='http://www.mikewagan.net/2009/02/super-bowl-2009-videos/' rel='bookmark' title='Permanent Link: Super Bowl 2009 Videos'>Super Bowl 2009 Videos</a> <small>I have here a collection of the 2009 super bowl videos which I would like to share to you. Cracked.com...</small></li><li><a href='http://www.mikewagan.net/2008/10/please-dont-watch-this-video/' rel='bookmark' title='Permanent Link: Please Don&#8217;t Watch This Video!'>Please Don&#8217;t Watch This Video!</a> <small>This was me two years ago nung adik pa ako sa gitara at pagbabanda. Ampanget ko dito, hehehe&#8230; Just a...</small></li><li><a href='http://www.mikewagan.net/2008/10/first-solid-food-ni-jian/' rel='bookmark' title='Permanent Link: First Solid Food ni Jian'>First Solid Food ni Jian</a> <small>Eto ang unang try ni Jian sa pagkain ng solid food. Five months sya kumain ng first solid food (malambot...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikewagan.net/2010/02/allow-div-layers-to-float-over-flash-youtube-or-vimeo-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install/Recompile MCRYPT in PHP (CentOS VPS)</title>
		<link>http://www.mikewagan.net/2010/01/how-to-install-recompile-mcrypt-in-php-centos-vps/</link>
		<comments>http://www.mikewagan.net/2010/01/how-to-install-recompile-mcrypt-in-php-centos-vps/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 02:58:22 +0000</pubDate>
		<dc:creator>Mike Wagan</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Godaddy VPS]]></category>
		<category><![CDATA[MCRYPT]]></category>

		<guid isPermaLink="false">http://www.mikewagan.net/?p=312</guid>
		<description><![CDATA[I&#8217;m starting to develop sites with the Interspire Shopping Cart system, which I think is totally way better than Prestashop. I suggest people who want a better system than Prestashop to checkout the Interspire Shopping Cart, its worth every penny. So I&#8217;m setting it up for our company in a VPS hosting, and it requires [...]


Related posts:<ol><li><a href='http://www.mikewagan.net/2010/04/upgrade-php-to-5-2-in-centos/' rel='bookmark' title='Permanent Link: How to Upgrade PHP to 5.2 in CentOS'>How to Upgrade PHP to 5.2 in CentOS</a> <small>Developing a Drupal community site has been really good for a while until I needed to search a module to...</small></li><li><a href='http://www.mikewagan.net/2009/11/how-to-completely-backup-your-godaddy-website-files/' rel='bookmark' title='Permanent Link: How To Completely Backup your GoDaddy Website Files'>How To Completely Backup your GoDaddy Website Files</a> <small>Godaddy mainly offers domain names for sale, but they are also selling hosting plans including shared hosting, VPS and dedicated...</small></li><li><a href='http://www.mikewagan.net/2010/03/how-to-optimize-godaddy-virtual-private-server-kill-tomcat-simple-control-panel/' rel='bookmark' title='Permanent Link: How to optimize GoDaddy Virtual Private Server &#8211; Kill Tomcat &#038; Simple Control Panel'>How to optimize GoDaddy Virtual Private Server &#8211; Kill Tomcat &#038; Simple Control Panel</a> <small>While searching for some optimization tips for Virtual Private Servers, I checked out this post which claimed that Godaddy (ahem)...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m starting to develop sites with the <a href="http://www.interspire.com/shoppingcart/" target="_blank">Interspire Shopping Cart</a> system, which I think is totally way better than Prestashop. I suggest people who want a better system than Prestashop to checkout the Interspire Shopping Cart, its worth every penny.</p>
<p>So I&#8217;m setting it up for our company in a VPS hosting, and it requires the PHP installation to be compiled with MCRYPT package. Specifically, this is needed for the manual credit card processing module. And it seems that the Godaddy VPS support is NOT willing to support (ironic) so I had to deal with the challenge myself. I found this instructions from <a href="http://www.notesbit.com/index.php/web-mysql/web-scripts/how-to-install-mcrypt-in-linux-cent-os-and-recompile-php/">NotesBit.com</a> on how to recompile PHP with MCRYPT support. Here are the steps I followed &#8211; it was actually easier than I thought: <span id="more-312"></span><strong></strong></p>
<p><strong>1. Install libmcrypt</strong><span> (2.5.x or better) <a href="http://mcrypt.hellug.gr/lib/index.html">http://mcrypt.hellug.gr/lib/index.html</a></span></p>
<blockquote><p>-download and uncompress: tar z -xvf xxx.tar.gz<br />
-cd into libmcrypt dir and type: ./configure<br />
-when configure is done type: make<br />
-when make is done type: make install</p></blockquote>
<p><strong>2. Add the library dir to /etc/ld.so.conf</strong></p>
<blockquote><p>-edit /etc/ld.so.conf and add: /usr/local/lib<br />
-save file and then type the command: ldconfig</p></blockquote>
<p><strong>3. Install mcrypt &amp; mhash (enter these commands)<br />
</strong></p>
<blockquote><p>yum install mcrypt*<br />
yum install mhash*</p></blockquote>
<p><strong>4. Enable support for php. requires php-mcrypt and php-mhash packages (enter these commands):</strong></p>
<blockquote><p>yum install php-mcrypt*<br />
yum install php-mhash*</p></blockquote>
<p><strong>5. Restart Apache</strong></p>
<blockquote><p>/sbin/service httpd restart</p></blockquote>
<p>The VPS we are using is from Godaddy. Latest Apache and PHP versions. Let me know if this works for you!</p>


<p>Related posts:<ol><li><a href='http://www.mikewagan.net/2010/04/upgrade-php-to-5-2-in-centos/' rel='bookmark' title='Permanent Link: How to Upgrade PHP to 5.2 in CentOS'>How to Upgrade PHP to 5.2 in CentOS</a> <small>Developing a Drupal community site has been really good for a while until I needed to search a module to...</small></li><li><a href='http://www.mikewagan.net/2009/11/how-to-completely-backup-your-godaddy-website-files/' rel='bookmark' title='Permanent Link: How To Completely Backup your GoDaddy Website Files'>How To Completely Backup your GoDaddy Website Files</a> <small>Godaddy mainly offers domain names for sale, but they are also selling hosting plans including shared hosting, VPS and dedicated...</small></li><li><a href='http://www.mikewagan.net/2010/03/how-to-optimize-godaddy-virtual-private-server-kill-tomcat-simple-control-panel/' rel='bookmark' title='Permanent Link: How to optimize GoDaddy Virtual Private Server &#8211; Kill Tomcat &#038; Simple Control Panel'>How to optimize GoDaddy Virtual Private Server &#8211; Kill Tomcat &#038; Simple Control Panel</a> <small>While searching for some optimization tips for Virtual Private Servers, I checked out this post which claimed that Godaddy (ahem)...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikewagan.net/2010/01/how-to-install-recompile-mcrypt-in-php-centos-vps/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Thanks</title>
		<link>http://www.mikewagan.net/2009/08/thank/</link>
		<comments>http://www.mikewagan.net/2009/08/thank/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 14:04:50 +0000</pubDate>
		<dc:creator>Mike Wagan</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.mikewagan.net/?p=214</guid>
		<description><![CDATA[I&#8217;ve been in the Internet industry for almost 4 years now. I&#8217;ve worked as a C &#38; PHP programmer, a web designer, flash animator, web master, SEO guy, and occasionally as a card invitation maker. But the thing I love the most is my current work, which is basically a web developer for a foreign [...]


Related posts:<ol><li><a href='http://www.mikewagan.net/2009/06/working-from-home-but/' rel='bookmark' title='Permanent Link: Working From Home? But&#8230;'>Working From Home? But&#8230;</a> <small>I don&#8217;t know if others can relate, but some people (like family members, perhaps) have &#8220;stereotyped&#8221; college grads to be...</small></li><li><a href='http://www.mikewagan.net/2009/08/i-fell-in-love-with-the-same-woman-three-times/' rel='bookmark' title='Permanent Link: I Fell In love With the Same Woman Three Times'>I Fell In love With the Same Woman Three Times</a> <small>This was the title of the song that Jose Mari Chan sung yesterday for Cory Aquino's last mass. The lyrics...</small></li><li><a href='http://www.mikewagan.net/2009/12/merry-christmas-happy-new-year/' rel='bookmark' title='Permanent Link: Merry Christmas &#038; Happy New Year!'>Merry Christmas &#038; Happy New Year!</a> <small>I just want to shout out an early Merry Christmas greeting to everyone! Thanks Bro for giving me and my...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-215" title="thanks" src="http://www.mikewagan.net/wp-content/uploads/2009/08/thanks.png" alt="thanks" width="535" height="100" /></p>
<p>I&#8217;ve been in the Internet industry for almost 4 years now. I&#8217;ve worked as a C &amp; PHP programmer, a web designer, flash animator, web master, SEO guy, and occasionally as a card invitation maker. But the thing I love the most is my current work, which is basically a web developer for a foreign country. They have given me the opportunity to do the things I enjoy doing! It&#8217;s almost I&#8217;m not working &#8211; I love my work!<span id="more-214"></span></p>
<p>I am very thankful that I am seeing a great future with my &#8220;passion&#8221;. I learned Photoshop while in high school, using an old, grumpy, Pentium 1 computer. I really like programming, but I feel more of an artist rather than an analyst; I like colors more than code. And my heart is grateful that I&#8217;ve chosen to pursue developing web sites as a freelancer. If ever I have landed a corporate job, I might have sucked really hard in it.</p>
<p>And now, I can see that my hardships have been paying off. My bosses appreciate the work I do for them, and it motivates me to exceed their expectations when they say that I am doing a good job. They have given me trust, and its my responsibility to show them the best quality work possible. I make web sites for them, and I do it as if those sites are my own.We are now hitting a target &#8211; a goal &#8211; for the benefit of everyone in the company.</p>
<p>I am very grateful for these people who are trusting me to get the job done and are also aspiring a very good future for us too. And of course, thanks to <em>Bro </em>up there for showering us with graces. <strong><em>Maraming salamat!</em></strong></p>


<p>Related posts:<ol><li><a href='http://www.mikewagan.net/2009/06/working-from-home-but/' rel='bookmark' title='Permanent Link: Working From Home? But&#8230;'>Working From Home? But&#8230;</a> <small>I don&#8217;t know if others can relate, but some people (like family members, perhaps) have &#8220;stereotyped&#8221; college grads to be...</small></li><li><a href='http://www.mikewagan.net/2009/08/i-fell-in-love-with-the-same-woman-three-times/' rel='bookmark' title='Permanent Link: I Fell In love With the Same Woman Three Times'>I Fell In love With the Same Woman Three Times</a> <small>This was the title of the song that Jose Mari Chan sung yesterday for Cory Aquino's last mass. The lyrics...</small></li><li><a href='http://www.mikewagan.net/2009/12/merry-christmas-happy-new-year/' rel='bookmark' title='Permanent Link: Merry Christmas &#038; Happy New Year!'>Merry Christmas &#038; Happy New Year!</a> <small>I just want to shout out an early Merry Christmas greeting to everyone! Thanks Bro for giving me and my...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikewagan.net/2009/08/thank/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Logos Showcase</title>
		<link>http://www.mikewagan.net/2009/08/logos-showcase/</link>
		<comments>http://www.mikewagan.net/2009/08/logos-showcase/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 10:16:34 +0000</pubDate>
		<dc:creator>Mike Wagan</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.mikewagan.net/?p=161</guid>
		<description><![CDATA[I just wanted to share some of the logos I&#8217;ve done for my clients. I&#8217;m still learning everyday about the tricks of my trade so don&#8217;t expect too much fancy stuff with my logo works. As you can see some sites I&#8217;m working on are adult-themed. That doesn&#8217;t mean I&#8217;m a perv, its just because [...]


Related posts:<ol><li><a href='http://www.mikewagan.net/2009/10/philippine-blog-awards-2009-and-pldt-nuffnang-watchpad-launch/' rel='bookmark' title='Permanent Link: Philippine Blog Awards 2009 and PLDT+Nuffnang Watchpad Launch'>Philippine Blog Awards 2009 and PLDT+Nuffnang Watchpad Launch</a> <small>Its been a very busy month for me &#8211; we&#8217;re doing some major stuff with my bosses&#8217; websites so I...</small></li><li><a href='http://www.mikewagan.net/2010/02/allow-div-layers-to-float-over-flash-youtube-or-vimeo-videos/' rel='bookmark' title='Permanent Link: Allow Div Layers to Float over Flash, Youtube or Vimeo Videos'>Allow Div Layers to Float over Flash, Youtube or Vimeo Videos</a> <small>For web designers, its always a constant struggle to get those flash, youtube, or vimeo videos tuck under divs where...</small></li><li><a href='http://www.mikewagan.net/2009/08/thank/' rel='bookmark' title='Permanent Link: Thanks'>Thanks</a> <small>I&#8217;ve been in the Internet industry for almost 4 years now. I&#8217;ve worked as a C &amp; PHP programmer, a...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>I just wanted to share some of the logos I&#8217;ve done for my clients. I&#8217;m still learning everyday about the tricks of my trade so don&#8217;t expect too much fancy stuff with my logo works. <span id="more-161"></span></p>
<div id="attachment_162" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-162" title="KamaPad logo" src="http://www.mikewagan.net/wp-content/uploads/2009/08/footerup-add-300x59.jpg" alt="KamaPad Logo - For A Sex Furniture Site" width="300" height="59" /><p class="wp-caption-text">KamaPad Logo - For A Sex Furniture Site</p></div>
<div id="attachment_163" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-163" title="package-1-complete" src="http://www.mikewagan.net/wp-content/uploads/2009/08/package-1-complete-300x146.gif" alt="For CigaretteSmokeless.com - they sell electronic cigarettes" width="300" height="146" /><p class="wp-caption-text">For CigaretteSmokeless.com - they sell electronic cigarettes (not actually a logo but a &quot;soft ad&quot;)</p></div>
<div id="attachment_164" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-164" title="mr-delay" src="http://www.mikewagan.net/wp-content/uploads/2009/08/logo-300x77.gif" alt="For MrDelay.com - a penis numbing cream" width="300" height="77" /><p class="wp-caption-text">For MrDelay.com - a penis numbing cream</p></div>
<div id="attachment_165" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-165" title="share-files-free" src="http://www.mikewagan.net/wp-content/uploads/2009/08/logo-new-300x67.png" alt="for ShareFilesFree.com" width="300" height="67" /><p class="wp-caption-text">for ShareFilesFree.com</p></div>
<div id="attachment_166" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-166" title="drnumb-header-image" src="http://www.mikewagan.net/wp-content/uploads/2009/08/drnumb-header-image-300x64.png" alt="for DrNumb.com - tattoo numbing cream" width="300" height="64" /><p class="wp-caption-text">for DrNumb.com - tattoo numbing cream</p></div>
<p>As you can see some sites I&#8217;m working on are adult-themed. That doesn&#8217;t mean I&#8217;m a perv, its just because its a big industry nowadays and businesspeople are investing heavily on them. Although sometimes I wish they&#8217;d give me a free sample, hahaha!</p>


<p>Related posts:<ol><li><a href='http://www.mikewagan.net/2009/10/philippine-blog-awards-2009-and-pldt-nuffnang-watchpad-launch/' rel='bookmark' title='Permanent Link: Philippine Blog Awards 2009 and PLDT+Nuffnang Watchpad Launch'>Philippine Blog Awards 2009 and PLDT+Nuffnang Watchpad Launch</a> <small>Its been a very busy month for me &#8211; we&#8217;re doing some major stuff with my bosses&#8217; websites so I...</small></li><li><a href='http://www.mikewagan.net/2010/02/allow-div-layers-to-float-over-flash-youtube-or-vimeo-videos/' rel='bookmark' title='Permanent Link: Allow Div Layers to Float over Flash, Youtube or Vimeo Videos'>Allow Div Layers to Float over Flash, Youtube or Vimeo Videos</a> <small>For web designers, its always a constant struggle to get those flash, youtube, or vimeo videos tuck under divs where...</small></li><li><a href='http://www.mikewagan.net/2009/08/thank/' rel='bookmark' title='Permanent Link: Thanks'>Thanks</a> <small>I&#8217;ve been in the Internet industry for almost 4 years now. I&#8217;ve worked as a C &amp; PHP programmer, a...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikewagan.net/2009/08/logos-showcase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working From Home? But&#8230;</title>
		<link>http://www.mikewagan.net/2009/06/working-from-home-but/</link>
		<comments>http://www.mikewagan.net/2009/06/working-from-home-but/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 14:01:00 +0000</pubDate>
		<dc:creator>Mike Wagan</dc:creator>
				<category><![CDATA[Daddy Things]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.mikewagan.net/uncategorized/working-from-home-but/</guid>
		<description><![CDATA[I don&#8217;t know if others can relate, but some people (like family members, perhaps) have &#8220;stereotyped&#8221; college grads to be just for corporate or office work. That&#8217;s what I feel too. Sometimes my parents ask why I won&#8217;t try opportunities outside from companies in the metro, or offer me job vacancies where I can apply. [...]


Related posts:<ol><li><a href='http://www.mikewagan.net/2009/08/thank/' rel='bookmark' title='Permanent Link: Thanks'>Thanks</a> <small>I&#8217;ve been in the Internet industry for almost 4 years now. I&#8217;ve worked as a C &amp; PHP programmer, a...</small></li><li><a href='http://www.mikewagan.net/2009/10/working-paypal-module-for-prestashop/' rel='bookmark' title='Permanent Link: Working Paypal Module for Prestashop'>Working Paypal Module for Prestashop</a> <small>I just finished adding the Paypal payment option for our e-commerce site that uses Prestashop as the shopping cart application....</small></li><li><a href='http://www.mikewagan.net/2009/05/i-am-back-into-blogging/' rel='bookmark' title='Permanent Link: I am Back Into Blogging'>I am Back Into Blogging</a> <small>Its been a while since I blogged here again in my home site. My very first blog. And I don&#8217;t...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if others can relate, but some people (like family members, perhaps) have &#8220;stereotyped&#8221; college grads to be just for corporate or office work. That&#8217;s what I feel too. Sometimes my parents ask why I won&#8217;t try opportunities outside from companies in the metro, or offer me job vacancies where I can apply. I understand that they want me to have a stable job with all the benefits and stuff, but I&#8217;ve made a lot of considerations too why I choose to work from home in front of my own computer.<span id="more-124"></span></p>
<p>I started my home-based &#8220;career&#8221; when I was still in college. I needed a job while I am studying, and <a href="http://www.pinknotesdiary.com" class="kblinker" title="More about my wife &raquo;">my wife</a> tried to apply me to a job online as a programmer. They were looking for experienced people, and I don&#8217;t even have any work experiences yet, just some fancy school programming projects. But I got hired, surprisingly. And up to now, I still get all my jobs online. I tried applying for jobs in Makati when the &#8220;dry season&#8221; came, but I still pursued job hunting for online work.</p>
<p>Working from home is the better option for me, and I don&#8217;t pursue everyone to do the same. I can see a lot of advantage from my home-based job. Like&#8230;</p>
<ul>
<li>I save the hassle of commuting everyday and spending 1-2 hours stuck in traffic</li>
<li>Health benefits: no smoke pollution, away from viruses (H1N1!), eat healthy because I know where my food is coming from, away from road accidents</li>
<li>No annoying officemates to mingle with</li>
<li>No taxes automatically deducted from your salary</li>
<li>More family time: when I&#8217;m on a break, I eat along with my kid and wife, and after work, I can spend the time already to my family instead of commuting if I was in a corporate job</li>
<li>Even if it there&#8217;s a signal #4 typhoon, as long as there&#8217;s internet connection and electircity, I can work.</li>
<li>I learned a lot more money-making skills through self-study vs. specific task trainings with companies</li>
<li>If you&#8217;re thinking about benefits like SSS, PhilHealt, etc., we can fix those on our spare time.</li>
<li>Social life? Facebook is always there to connect with friends and family. Although I seldom use FB now because of other priorities.</li>
<li>Lastly, more time to earn online!</li>
</ul>
<p>Working from home is not for everybody. If you feel you can be more successful in a company or on a work-from-home job, its your choice. Just a word of advice for those who want to start out working from home freelancing for jobs online: you can do it! If you&#8217;re not confident enough of your work experience or you don&#8217;t have any, then get some experience online. A lot of opportunities are available all over the net from foreign companies outsourcing their works here in the Philippines. Find job opportunities that welcome &#8220;starters&#8221;, and you might just land your first job online.</p>
<p>But I want to emphasize again that this is my OWN opinion, don&#8217;t start working from home if you don&#8217;t feel it. Its a choice. This might work for some, and this worked for me that&#8217;s why I favor working from home as a freelancer.</p>


<p>Related posts:<ol><li><a href='http://www.mikewagan.net/2009/08/thank/' rel='bookmark' title='Permanent Link: Thanks'>Thanks</a> <small>I&#8217;ve been in the Internet industry for almost 4 years now. I&#8217;ve worked as a C &amp; PHP programmer, a...</small></li><li><a href='http://www.mikewagan.net/2009/10/working-paypal-module-for-prestashop/' rel='bookmark' title='Permanent Link: Working Paypal Module for Prestashop'>Working Paypal Module for Prestashop</a> <small>I just finished adding the Paypal payment option for our e-commerce site that uses Prestashop as the shopping cart application....</small></li><li><a href='http://www.mikewagan.net/2009/05/i-am-back-into-blogging/' rel='bookmark' title='Permanent Link: I am Back Into Blogging'>I am Back Into Blogging</a> <small>Its been a while since I blogged here again in my home site. My very first blog. And I don&#8217;t...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikewagan.net/2009/06/working-from-home-but/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How To Repair Corrupted MySQL Tables in Linux</title>
		<link>http://www.mikewagan.net/2008/10/how-to-repair-corrupted-mysql-tables-in-linux/</link>
		<comments>http://www.mikewagan.net/2008/10/how-to-repair-corrupted-mysql-tables-in-linux/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 19:42:00 +0000</pubDate>
		<dc:creator>Mike Wagan</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.mikewagan.net/uncategorized/how-to-repair-corrupted-mysql-tables-in-linux/</guid>
		<description><![CDATA[I had this problem for days and can&#8217;t find a solution. What I had was .frm, .MYD and .MYI backup files from a previous MySQL installation. My task was to restore these files to the newly reformatted dedicated server. I searched all over the net to find the solution, and here&#8217;s what I did (commands [...]


Related posts:<ol><li><a href='http://www.mikewagan.net/2009/11/how-to-completely-backup-your-godaddy-website-files/' rel='bookmark' title='Permanent Link: How To Completely Backup your GoDaddy Website Files'>How To Completely Backup your GoDaddy Website Files</a> <small>Godaddy mainly offers domain names for sale, but they are also selling hosting plans including shared hosting, VPS and dedicated...</small></li><li><a href='http://www.mikewagan.net/2009/11/search-and-replace-in-mysql/' rel='bookmark' title='Permanent Link: Search and Replace in MySQL'>Search and Replace in MySQL</a> <small>I just went through a domain transfer for one of our websites, and the links in the posts are all...</small></li><li><a href='http://www.mikewagan.net/2010/01/how-to-install-recompile-mcrypt-in-php-centos-vps/' rel='bookmark' title='Permanent Link: How to Install/Recompile MCRYPT in PHP (CentOS VPS)'>How to Install/Recompile MCRYPT in PHP (CentOS VPS)</a> <small>I&#8217;m starting to develop sites with the Interspire Shopping Cart system, which I think is totally way better than Prestashop....</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>I had this problem for days and can&#8217;t find a solution. What I had was <b>.frm</b>, <b>.MYD</b> and <b>.MYI</b> <b>backup files</b> from a previous <b>MySQL</b> installation. My task was to <b>restore</b> these files to the newly reformatted dedicated server. I searched all over the net to find the solution, and here&#8217;s what I did (commands are in <i>italics</i>):</p>
<p><span id="fullpost">
<ol>
<li>Make sure you log in as root. </li>
<li>All the files were in a tarball file: &#8220;admin_backup.tar.gz&#8221;, so I extracted everything to a directory. <i>tar -xvf admin_backup.tar.gz</i> </li>
<li>Now all the .frm, .MYD and .MYI files are extracted. I placed all the files in the MySQL database folder located at /var/lib/mysql/admin_mike.</li>
<li>I immediately logged into phpMyAdmin and tried to access the tables, but unfortunately it says that &#8220;Can&#8217;t find file: &#8216;./admin_mike/sometable.frm&#8217;&#8221;. What I had to do was check the ownership of the files. <i>ls -la /var/lib/mysql/admin_mike/*</i></li>
<li>The files should have the ownership like &#8220;drwx—— 2 mysql mysql<i> </i>sometable.frm&#8221; if not, chown all the backup files. <i>chown mysql:mysql *</i></li>
<li>I tried to access the tables now in phpMyAdmin, and now they are all accessible!</li>
</ol>
<p>I thought I&#8217;d share this so that others would also fix their own <b>corrupted mysql table.</b> :)<br /></span></p>


<p>Related posts:<ol><li><a href='http://www.mikewagan.net/2009/11/how-to-completely-backup-your-godaddy-website-files/' rel='bookmark' title='Permanent Link: How To Completely Backup your GoDaddy Website Files'>How To Completely Backup your GoDaddy Website Files</a> <small>Godaddy mainly offers domain names for sale, but they are also selling hosting plans including shared hosting, VPS and dedicated...</small></li><li><a href='http://www.mikewagan.net/2009/11/search-and-replace-in-mysql/' rel='bookmark' title='Permanent Link: Search and Replace in MySQL'>Search and Replace in MySQL</a> <small>I just went through a domain transfer for one of our websites, and the links in the posts are all...</small></li><li><a href='http://www.mikewagan.net/2010/01/how-to-install-recompile-mcrypt-in-php-centos-vps/' rel='bookmark' title='Permanent Link: How to Install/Recompile MCRYPT in PHP (CentOS VPS)'>How to Install/Recompile MCRYPT in PHP (CentOS VPS)</a> <small>I&#8217;m starting to develop sites with the Interspire Shopping Cart system, which I think is totally way better than Prestashop....</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikewagan.net/2008/10/how-to-repair-corrupted-mysql-tables-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS Visual Web Developer 2008</title>
		<link>http://www.mikewagan.net/2008/10/ms-visual-web-developer-2008/</link>
		<comments>http://www.mikewagan.net/2008/10/ms-visual-web-developer-2008/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 18:29:00 +0000</pubDate>
		<dc:creator>Mike Wagan</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.mikewagan.net/uncategorized/ms-visual-web-developer-2008/</guid>
		<description><![CDATA[Inaaral ko ang Visual Web Developer 2008 sa ngayon. Wala pa talaga akong experience in coding ASP, much more ASP.net. Sana lang makaya ko ang deadline ng boss ko hanggang sa Friday. Medyo mahirap din pala aralin ang isang programming language na hindi ko nakasanayan. Madalas kasi C and PHP lang ang kino-code ko. Ngayon, [...]


Related posts:<ol><li><a href='http://www.mikewagan.net/2008/10/first-solid-food-ni-jian/' rel='bookmark' title='Permanent Link: First Solid Food ni Jian'>First Solid Food ni Jian</a> <small>Eto ang unang try ni Jian sa pagkain ng solid food. Five months sya kumain ng first solid food (malambot...</small></li><li><a href='http://www.mikewagan.net/2008/10/palistuhan-with-ramon-bautista-and-francis-m/' rel='bookmark' title='Permanent Link: Palistuhan with Ramon Bautista and Francis M.'>Palistuhan with Ramon Bautista and Francis M.</a> <small>Kagagaling ko lang sa Palistuhan.com.ph at talaga namang kahanga-hanga ang pagkakagawa ng Flash site nila. Bukod dun, meron silang online...</small></li><li><a href='http://www.mikewagan.net/2009/11/ultimate-guide-to-grid-based-web-design/' rel='bookmark' title='Permanent Link: Ultimate Guide to Grid-Based Web Design'>Ultimate Guide to Grid-Based Web Design</a> <small>Web design trends now point to one aspect of using CSS for the basic website wireframe &#8211; Grid-based layouts. I...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Inaaral ko ang Visual Web Developer 2008 sa ngayon. Wala pa talaga akong experience in coding ASP, much more ASP.net. Sana lang makaya ko ang deadline ng boss ko hanggang sa Friday. Medyo mahirap din pala aralin ang isang programming language na hindi ko nakasanayan. Madalas kasi C and PHP lang ang kino-code ko. Ngayon, .NET na bigla&#8230;</p>
<p>Sana matapos ko ang website hanggang Friday. Wish me luck!</p>
<p>Kung meron kayong alam na magandang resources or tutorials about ASP.NET, pa-share naman jan, hehe..</p>


<p>Related posts:<ol><li><a href='http://www.mikewagan.net/2008/10/first-solid-food-ni-jian/' rel='bookmark' title='Permanent Link: First Solid Food ni Jian'>First Solid Food ni Jian</a> <small>Eto ang unang try ni Jian sa pagkain ng solid food. Five months sya kumain ng first solid food (malambot...</small></li><li><a href='http://www.mikewagan.net/2008/10/palistuhan-with-ramon-bautista-and-francis-m/' rel='bookmark' title='Permanent Link: Palistuhan with Ramon Bautista and Francis M.'>Palistuhan with Ramon Bautista and Francis M.</a> <small>Kagagaling ko lang sa Palistuhan.com.ph at talaga namang kahanga-hanga ang pagkakagawa ng Flash site nila. Bukod dun, meron silang online...</small></li><li><a href='http://www.mikewagan.net/2009/11/ultimate-guide-to-grid-based-web-design/' rel='bookmark' title='Permanent Link: Ultimate Guide to Grid-Based Web Design'>Ultimate Guide to Grid-Based Web Design</a> <small>Web design trends now point to one aspect of using CSS for the basic website wireframe &#8211; Grid-based layouts. I...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikewagan.net/2008/10/ms-visual-web-developer-2008/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
