<?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>Unpopular Posts</title>
	<atom:link href="http://www.unpopularposts.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.unpopularposts.com</link>
	<description>Articles, tutorials and random blurbs worth your search</description>
	<lastBuildDate>Tue, 20 Jul 2010 07:18:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Running OpenSSL in Apache2.2.x on Windows</title>
		<link>http://www.unpopularposts.com/web-development/running-openssl-in-apache2-2-x-on-windows/</link>
		<comments>http://www.unpopularposts.com/web-development/running-openssl-in-apache2-2-x-on-windows/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 07:18:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[mod_ssl]]></category>
		<category><![CDATA[openssl]]></category>

		<guid isPermaLink="false">http://www.unpopularposts.com/?p=263</guid>
		<description><![CDATA[You can Google this to find working tutorial of the above but I&#8217;ll try to make this short and direct to the point. You should have installed by now the Apache2.2.x HTTP Server with OpenSSL version for Windows on your server. If not, Download and install Apache2.2.x HTTP Server with OpenSSL version for Windows. Copy [...]]]></description>
			<content:encoded><![CDATA[<p>You can Google this to find working tutorial of the above but I&#8217;ll try to make this short and direct to the point. You should have installed by now the Apache2.2.x HTTP Server with OpenSSL version for Windows on your server. If not,</p>
<ol>
<li>Download and install Apache2.2.x HTTP Server with OpenSSL version for Windows.</li>
<li>Copy libeay32.dll and ssleay32.dll to your C:/WINDOWS/system32 folder. Usually the files are located in the /bin directory of your installation.</li>
<li>Download openssl.cnf from neilstuff.com and place it where openssl.exe is located. Usually in the /bin directory.</li>
<li>Create self-signed SSL
<ul>
<li>Open a command prompt in the directory where you openssl.exe is located (/bin folder).</li>
<li>Generate a CSR<br />
<code>openssl req –config openssl.cnf –new –out –server.csr –keyout –server.pem</code></li>
<li>Create the key<br />
<code>openssl rsa –in server.pem –out server.key</code></li>
<li>Create the cert<br />
<code>openssl x509 –in server.csr –out server.crt –req –signkey server.key –days 365</code></li>
</ul>
</li>
<li>Enable SSL in Apache2.2.x
<ul>
<li>Open conf/httpd.conf and uncomment the line that loads mod_ssl (LoadModule ssl_module modules/mod_ssl.so), and the line which loads the httpd-ssl.conf file (Include conf/extra/httpd-ssl.conf).</li>
<li>Open conf/extra/httpd-ssl.conf and change VirtualHost settings (DocumentRoot, ServerAdmin, ServerName, ErrorLog, TransferLog). Also, change SSLCertificateFile and SSLCertficateKeyFile to point to your .crt and .key files.</li>
</ul>
</li>
<li>Restart Apache</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.unpopularposts.com/web-development/running-openssl-in-apache2-2-x-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another snapshot agent for the subscription or subscriptions is running, or the server is working on a previous request by the same agent</title>
		<link>http://www.unpopularposts.com/databases/another-snapshot-agent-for-the-subscription-or-subscriptions-is-running-or-the-server-is-working-on-a-previous-request-by-the-same-agent/</link>
		<comments>http://www.unpopularposts.com/databases/another-snapshot-agent-for-the-subscription-or-subscriptions-is-running-or-the-server-is-working-on-a-previous-request-by-the-same-agent/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 19:37:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[merge replication]]></category>
		<category><![CDATA[MSSQL Server 2005]]></category>
		<category><![CDATA[snapshot agent]]></category>

		<guid isPermaLink="false">http://www.unpopularposts.com/?p=261</guid>
		<description><![CDATA[When creating publication in a merge replication in MSSQL Server 2005, especially for beginners, it&#8217;s not new that while doing it in SSMS, you run into steps that makes your publication incorrectly configured thus forcing you to abort the process. Now when you cancel the publication and you&#8217;re in the middle of generating the snapshot, [...]]]></description>
			<content:encoded><![CDATA[<p>When creating publication in a merge replication in MSSQL Server 2005, especially for beginners, it&#8217;s not new that while doing it in SSMS, you run into steps that makes your publication incorrectly configured thus forcing you to abort the process. Now when you cancel the publication and you&#8217;re in the middle of generating the snapshot, this could potentially harm your data and even your system. In my case, I tried to undo everything, did a cleanup, run the <em>sp_removedbreplication</em> and even tried to detach and attach the database just to make sure all processes orphaned to that database will be gone but I had no luck. After some time, it always gives me this message:</p>
<p><code>Another snapshot agent for the subscription or subscriptions is running, or the server is working on a previous request by the same agent</code></p>
<p>I have searched for solutions in MSSQL forums and documentations but I cannot find any. To my desperation, I tried to look on the properties of the job that&#8217;s being created in the process above and changed the account that run the snapshot agent associated to it to SQL Agent and that solved my problem. I spent too much wasted hours on this and wanted to share how I worked around to find the solution.</p>
<p>Hope this will help those who had the same experience with mine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unpopularposts.com/databases/another-snapshot-agent-for-the-subscription-or-subscriptions-is-running-or-the-server-is-working-on-a-previous-request-by-the-same-agent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to setup Oracle10g linked server in an MSSQL Server 2005 64-bit cluster</title>
		<link>http://www.unpopularposts.com/databases/how-to-setup-oracle10g-linked-server-in-an-mssql-server-2005-64-bit-cluster/</link>
		<comments>http://www.unpopularposts.com/databases/how-to-setup-oracle10g-linked-server-in-an-mssql-server-2005-64-bit-cluster/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 20:49:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.unpopularposts.com/?p=259</guid>
		<description><![CDATA[The process in creating Oracle linked server on a 64-bit SQL Server instance should be: Install Oracle 10g Release 2 64-bit client software (available from Oracle website) Install Oracle 10g Release 2 64-bit ODAC software (available from Oracle website) Restart SQL services Configure OraOLEDB.Oracle under \Linked Servers\Providers in SSMS in its properties making sure that [...]]]></description>
			<content:encoded><![CDATA[<p>The process in creating Oracle linked server on a 64-bit SQL Server instance should be:</p>
<ul>
<li>Install Oracle 10g Release 2 64-bit client software (available from Oracle website)</li>
<li>Install Oracle 10g Release 2 64-bit ODAC software (available from Oracle website)</li>
<li>Restart SQL services</li>
<li>Configure OraOLEDB.Oracle under \Linked Servers\Providers in SSMS in its properties making sure that &#8220;Allow inprocess&#8221; is enabled</li>
<li>Create the linked server</li>
<li>Test it</li>
</ul>
<p>If you still can&#8217;t figure out how to do the above, see detailed step here <a title="How to setup linked server to Oracle from an MSSQL Server 2005 64-bit cluster" href="http://www.mssqltips.com/tip.asp?tip=1433" target="_self">http://www.mssqltips.com/tip.asp?tip=1433</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.unpopularposts.com/databases/how-to-setup-oracle10g-linked-server-in-an-mssql-server-2005-64-bit-cluster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring distribution in an MSSQL Server 2005 cluster</title>
		<link>http://www.unpopularposts.com/databases/configuring-distribution-in-an-mssql-server-2005-cluster/</link>
		<comments>http://www.unpopularposts.com/databases/configuring-distribution-in-an-mssql-server-2005-cluster/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 20:16:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cluster]]></category>
		<category><![CDATA[distributor]]></category>
		<category><![CDATA[MSSQL Server 2005]]></category>
		<category><![CDATA[replication]]></category>

		<guid isPermaLink="false">http://www.unpopularposts.com/?p=257</guid>
		<description><![CDATA[For some reason that you receive an error trying to configure distribution on your MSSQL Server 2005 cluster and it will ask you to use the actual server name when connecting to the server, verify that your server name in the sys.servers catalogue is the same as your instance name. To verify, while connected to [...]]]></description>
			<content:encoded><![CDATA[<p>For some reason that you receive an error trying to configure distribution on your MSSQL Server 2005 cluster and it will ask you to use the actual server name when connecting to the server, verify that your server name in the sys.servers catalogue is the same as your instance name. To verify, while connected to the SQL Server instance issue this in SSMS:</p>
<p><code>SELECT * FROM sys.servers</code></p>
<p>If the server name does not reflect the name of your clustered instance, rename it by dropping the old name and adding the corrected name. Drop the incorrect server name by this command</p>
<p><code>sp_dropserver @server='SERVERNAME_INCORRECT'</code></p>
<p>Then add the new and correct virtual server name as</p>
<p><code>sp_addserver @server='SERVERNAME_CORRECT', @local='LOCAL'</code></p>
<p>Then restart SQL Server service and replication should work fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unpopularposts.com/databases/configuring-distribution-in-an-mssql-server-2005-cluster/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cannot manage or see shared drives/LUNs within MSSQL Server 2005 cluster</title>
		<link>http://www.unpopularposts.com/databases/cannot-manage-or-see-shared-drivesluns-within-mssql-server-2005-cluster/</link>
		<comments>http://www.unpopularposts.com/databases/cannot-manage-or-see-shared-drivesluns-within-mssql-server-2005-cluster/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 08:18:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cluster]]></category>
		<category><![CDATA[MSSQL Server 2005]]></category>

		<guid isPermaLink="false">http://www.unpopularposts.com/?p=255</guid>
		<description><![CDATA[This happens when the shared drives/LUNs in the cluster are not included in the dependency of your SQL Server resource. To fix this issue, go to SQL Server resource in the cluster&#8217;s SQL Group and go to properties. Under Dependency tab, modify it to include all the resources you wanted to be visible within your [...]]]></description>
			<content:encoded><![CDATA[<p>This happens when the shared drives/LUNs in the cluster are not included in the dependency of your SQL Server resource. To fix this issue, go to SQL Server resource in the cluster&#8217;s SQL Group and go to properties. Under Dependency tab, modify it to include all the resources you wanted to be visible within your SQL cluster installation. Save your changes and you should be able to now see the shared drives in the cluster from within SQL Server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unpopularposts.com/databases/cannot-manage-or-see-shared-drivesluns-within-mssql-server-2005-cluster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannot recreate publication: Invalid object name &#8216;dbo.sysmergepublications&#8217; in MSSQL Server 2005 replication</title>
		<link>http://www.unpopularposts.com/databases/cannot-recreate-publication-invalid-object-name-dbo-sysmergepublications-in-mssql-server-2005-replication/</link>
		<comments>http://www.unpopularposts.com/databases/cannot-recreate-publication-invalid-object-name-dbo-sysmergepublications-in-mssql-server-2005-replication/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 08:48:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[MSSQL Server 2005]]></category>
		<category><![CDATA[replication]]></category>

		<guid isPermaLink="false">http://www.unpopularposts.com/?p=243</guid>
		<description><![CDATA[This happens when you delete subscription and publication directly from Replication node in SSMS tool. Run below against the database you deleted the replication before setting it up again. USE [database] EXEC sp_removedbreplication GO]]></description>
			<content:encoded><![CDATA[<p>This happens when you delete subscription and publication directly from Replication node in SSMS tool. Run below against the database you deleted the replication before setting it up again.</p>
<p>USE [database]</p>
<p>EXEC sp_removedbreplication</p>
<p>GO</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unpopularposts.com/databases/cannot-recreate-publication-invalid-object-name-dbo-sysmergepublications-in-mssql-server-2005-replication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento 1.4.0.1: Cannot login to admin</title>
		<link>http://www.unpopularposts.com/web-development/magento-1-4-0-1-can-not-login-to-admin/</link>
		<comments>http://www.unpopularposts.com/web-development/magento-1-4-0-1-can-not-login-to-admin/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 16:03:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.unpopularposts.com/?p=241</guid>
		<description><![CDATA[If you are installing magento in your local computer, chances are, you will get the above error as magento is unable to store cookies due to the fact that localhost is not a valid domain. There are a few workarounds to this like working on your hosts file but the below procedure worked for me. [...]]]></description>
			<content:encoded><![CDATA[<p>If you are installing magento in your local computer, chances are, you will get the above error as magento is unable to store cookies due to the fact that localhost is not a valid domain. There are a few workarounds to this like working on your hosts file but the below procedure worked for me.</p>
<p>Go to your installation and edit /app/code/core/Mage/Core/Model/Session/Abstract/varien.php as suggested below</p>
<pre>
$cookieParams = array(
   ‘lifetime’ =&gt; $cookie-&gt;getLifetime(),
   ‘path’  =&gt; $cookie-&gt;getPath() /*,
   ‘domain’ =&gt;  $cookie-&gt;getConfigDomain(),
   ‘cookieParams’ =&gt;  $cookie-&gt;isSecure(),
   ‘httponly’ =&gt; $cookie-&gt;getHttponly()*/
);

/*
 if (!$cookieParams['httponly']) {
   unset($cookieParams['httponly']);
   if  (!$cookieParams['secure']) {
      unset($cookieParams['secure']);
      if  (!$cookieParams['domain']) {
         unset($cookieParams['domain']);
      }
   }
}

if  (isset($cookieParams['domain'])) {
   $cookieParams['domain'] =  $cookie-&gt;getDomain();
}
*/</pre>
<p>This works for Magento 1.4.0.1.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unpopularposts.com/web-development/magento-1-4-0-1-can-not-login-to-admin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Loading mcrypt dynamically into PHP on Mac OS X 10.6.1 Snow Leopard</title>
		<link>http://www.unpopularposts.com/web-development/loading-mcrypt-dynamically-into-php-on-mac-os-x-10-6-1-snow-leopard/</link>
		<comments>http://www.unpopularposts.com/web-development/loading-mcrypt-dynamically-into-php-on-mac-os-x-10-6-1-snow-leopard/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 16:34:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[MacOSX]]></category>
		<category><![CDATA[mcrypt]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.unpopularposts.com/?p=236</guid>
		<description><![CDATA[By default, mcrypt is not loaded in PHP that comes in Snow Leopard fresh install. This tutorial will come handy when you don&#8217;t want to completely recompile PHP. First, you may need an administrator account like root to execute below. When enabling the root account, make sure you know what you&#8217;re doing. It&#8217;s not a [...]]]></description>
			<content:encoded><![CDATA[<p>By default, mcrypt is not loaded in PHP that comes in Snow Leopard fresh install. This tutorial will come handy when you don&#8217;t want to completely recompile PHP.</p>
<p>First, you may need an administrator account like root to execute below. When enabling the root account, make sure you know what you&#8217;re doing. It&#8217;s not a good practice to enable it. You need the following:<br />
1. libmcrypt-2.5.8, which you can pick up <a title="Download libmcrypt-2.5.8" href="http://sourceforge.net/projects/mcrypt/files/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz/download" target="_self">here</a><br />
2. PHP 5.3.0 source, which you grab <a title="Download PHP 5.3.0" href="http://us.php.net/get/php-5.3.0.tar.gz/from/a/mirror" target="_self">here</a> and<br />
3. Xcode 3.2 tools, from the Snow Leopard installer</p>
<p>Next, create a /src directory in root and place the downloaded files. Move to the libmcrypt-2.5.8 directory, and type in this …</p>
<p><code>MACOSX_DEPLOYMENT_TARGET=10.6 CFLAGS='-O3 -fno-common -arch i386 -arch x86_64' LDFLAGS='-O3 -arch i386 -arch x86_64' CXXFLAGS='-O3 -fno-common -arch i386 -arch x86_64' ./configure --disable-dependency-tracking</code></p>
<p>Next, type in &#8230;</p>
<p><code>make -j6</code></p>
<p>Then finally &#8230;</p>
<p><code>make install</code></p>
<p>Libmcrypt is now ready. Proceed with configuring PHP.</p>
<p>Move back to /src, then down to php-5.3.0/ext/mcrypt – type …</p>
<p><code>/usr/bin/phpize</code></p>
<p>Then configure as</p>
<p><code>MACOSX_DEPLOYMENT_TARGET=10.6 CFLAGS='-O3 -fno-common -arch i386 -arch x86_64' LDFLAGS='-O3 -arch i386 -arch x86_64' CXXFLAGS='-O3 -fno-common -arch i386 -arch x86_64' ./configure --with-php-config=/Developer/SDKs/MacOSX10.6.sdk/usr/bin/php-config</code></p>
<p><code>make -j6</code></p>
<p><code>make install</code></p>
<p>Rename /etc/php.ini.default to /etc/php.ini. Edit it and ensure that <code>enable_dl = On</code> but do not remove the <code>;</code> from in front of <code>;extension_dir = "./"</code>.  Add one line to the .ini file in the Dynamic Extensions section… <code>extension=mcrypt.so</code></p>
<p>Save your /etc/php.ini and restart Apache. You should be all set. Verify using phpinfo().</p>
<p>For MacPorts users, there is a good tuts <a title="Loading mcrypt into PHP using MacPorts in Snow Leopard" href="http://blog.xeonxai.com/2009/09/02/146/" target="_self">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unpopularposts.com/web-development/loading-mcrypt-dynamically-into-php-on-mac-os-x-10-6-1-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Macs are getting cheaper and more powerful</title>
		<link>http://www.unpopularposts.com/technology/macs-are-getting-cheaper-and-more-powerful/</link>
		<comments>http://www.unpopularposts.com/technology/macs-are-getting-cheaper-and-more-powerful/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 14:21:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random Blurbs]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.unpopularposts.com/?p=232</guid>
		<description><![CDATA[I&#8217;m glad that Macs are lowering their cost of ownership even if its computational power and features are just superb. This means that a lot of us now can justifiably own a Mac. In Cebu, Macs are still expensive gadget to own but for those who would like to be ahead in technology it&#8217;s worth [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.unpopularposts.com/wp-content/uploads/2010/03/file_19_151.png"><img class="alignnone size-full wp-image-234" title="iMac" src="http://www.unpopularposts.com/wp-content/uploads/2010/03/file_19_151.png" alt="iMac" width="500" height="401" /></a></p>
<p>I&#8217;m glad that Macs are lowering their cost of ownership even if its computational power and features are just superb. This means that a lot of us now can justifiably own a Mac. In Cebu, Macs are still expensive gadget to own but for those who would like to be ahead in technology it&#8217;s worth an investment.</p>
<p>You can shop online <a title="Get a Mac at Find And Grab Avenue" href="http://www.fagavenue.com/at-home/electronics.aspx" target="_self">here</a> for cheaper Macs, way cheaper than <a title="iStore Cebu" href="http://www.istore.ph" target="_self">iStore</a> Cebu. And for the rest of your needs learning how great a Mac is, visit iShop store in Basak Mambaling, Cebu City.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unpopularposts.com/technology/macs-are-getting-cheaper-and-more-powerful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable root account in Snow Leopard</title>
		<link>http://www.unpopularposts.com/tutorials/enable-root-account-in-snow-leopard/</link>
		<comments>http://www.unpopularposts.com/tutorials/enable-root-account-in-snow-leopard/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 16:34:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[MacOSX]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[snow leopard]]></category>

		<guid isPermaLink="false">http://www.unpopularposts.com/?p=230</guid>
		<description><![CDATA[Accessing the root account is disabled by default in Snow Leopard. Enabling the root account can leave your Mac vulnerable to security threats. Only enable it if you are aware of the risks and know what you are doing. If you do need to enable it, the terminal provides a simple solution that appears to [...]]]></description>
			<content:encoded><![CDATA[<p>Accessing the root account is disabled by default in Snow Leopard. Enabling the root account can leave your Mac vulnerable to security  threats. Only enable it if you are aware of the risks and know what you  are doing. If you do need to enable it, the terminal provides a simple solution  that appears to work in 10.6: <em><tt>sudo passwd root</tt></em>. Enter  your admin user password, then it will ask for a new password for root, and you&#8217;re done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unpopularposts.com/tutorials/enable-root-account-in-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
