<?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>ThinkSupport.net - Outsourced Web Hosting Support, Cheap Server Management, Cheap Fully Managed Dedicated Servers, Software Development, Website Designing and SEO services, Vision Helpdesk Software &#187; General</title>
	<atom:link href="http://www.thinksupport.net/blog/category/general/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thinksupport.net/blog</link>
	<description>Outsourced Web Hosting and Software Development</description>
	<lastBuildDate>Tue, 01 Feb 2011 12:42:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Apache &#8211; Address already in use: make_sock: could not bind to address</title>
		<link>http://www.thinksupport.net/blog/apache-address-already-in-use-make_sock-could-not-bind-to-address.html</link>
		<comments>http://www.thinksupport.net/blog/apache-address-already-in-use-make_sock-could-not-bind-to-address.html#comments</comments>
		<pubDate>Tue, 19 Aug 2008 06:31:21 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/apache-address-already-in-use-make_sock-could-not-bind-to-address.html</guid>
		<description><![CDATA[This error message can be caused by an improper shut down, the apache processes are still hanging around and apachectl restart won&#8217;t work. Solution just kill off the hanging processes: # fuser 80/tcp 80/tcp: 3010 3702 4088 16754 # kill -n 9 3010 # kill -n 9 3702 # kill -n 9 4088 # kill [...]]]></description>
			<content:encoded><![CDATA[<p>This error message can be caused by an improper shut down, the apache processes are still hanging around and apachectl restart won&#8217;t work.</p>
<p><strong>Solution</strong></p>
<p>just kill off the hanging processes:<br />
# fuser 80/tcp<br />
80/tcp: 3010 3702 4088 16754<br />
# kill -n 9 3010<br />
# kill -n 9 3702<br />
# kill -n 9 4088<br />
# kill -n 9 16754<br />
# apachectl start</p>
<p>or if there&#8217;s loads of processes use<br />
# for i in $(fuser 80/tcp);do kill -n 9 $i;done<br />
to kill them all off</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/apache-address-already-in-use-make_sock-could-not-bind-to-address.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Send Email from a PHP Script</title>
		<link>http://www.thinksupport.net/blog/how-to-send-email-from-a-php-script.html</link>
		<comments>http://www.thinksupport.net/blog/how-to-send-email-from-a-php-script.html#comments</comments>
		<pubDate>Sat, 12 Jan 2008 06:22:43 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[Direct Admin]]></category>
		<category><![CDATA[Ensim]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Helm]]></category>
		<category><![CDATA[HSP]]></category>
		<category><![CDATA[HSphere]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP / Mysql]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/how-to-send-email-from-a-php-script.html</guid>
		<description><![CDATA[Using php mail() function to send emails from php script. Send Email from a PHP Script Example : The first argument to this function is the recipient, the second specifies the message&#8217;s subject and the third one should contain the body. So to send a simple sample message, we could use:]]></description>
			<content:encoded><![CDATA[<p>Using  php mail() function to send emails from php script.</p>
<p>Send Email from a PHP Script Example :</p>
<p>The first argument to this function is the recipient, the second specifies the message&#8217;s subject and the third one should contain the body. So to send a simple sample message, we could use:</p>
<blockquote><p>
<? php<br />
    $to = "recipient@example.com";<br />
    $subject = "Hi!";<br />
    $body = "Hi,\n\nHow are you?";<br />
    if (mail($to, $subject, $body)) {<br />
      echo("
<p>Message successfully sent!</p>
<p>&#8220;);<br />
     } else {<br />
      echo(&#8220;
<p>Message delivery failed&#8230;</p>
<p>&#8220;);<br />
     }<br />
    ?>
</p></blockquote>
<p>Save this file as mail.php and browse from url http://yourdomain/mail.php </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/how-to-send-email-from-a-php-script.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove and uninstall or disable ModSecurity (mod_security)</title>
		<link>http://www.thinksupport.net/blog/how-to-remove-and-uninstall-or-disable-modsecurity-mod_security.html</link>
		<comments>http://www.thinksupport.net/blog/how-to-remove-and-uninstall-or-disable-modsecurity-mod_security.html#comments</comments>
		<pubDate>Sun, 09 Dec 2007 03:52:49 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[Articles -- Webhosting]]></category>
		<category><![CDATA[Direct Admin]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/how-to-remove-and-uninstall-or-disable-modsecurity-mod_security.html</guid>
		<description><![CDATA[ModSecurity is an open source embeddable web application firewall, or intrusion detection and prevention engine for web applications. ModSecurity provides protection from a range of attacks against web applications and allows for HTTP traffic monitoring and real-time analysis with no changes to existing infrastructure, by operating as an Apache Web server module mod_security or standalone, [...]]]></description>
			<content:encoded><![CDATA[<p>ModSecurity is an open source embeddable web application firewall, or intrusion detection and prevention engine for web applications. ModSecurity provides protection from a range of attacks against web applications and allows for HTTP traffic monitoring and real-time analysis with no changes to existing infrastructure, by operating as an Apache Web server module mod_security or standalone, and thus increase web application security. However, mis configured or overly strict rule sets, ModSecurity may cause your website to return various errors such as HTTP 403 Forbidden error or access denied error, login problems, or HTTP 412 Precondition Failed error, or HTTP 406 Not Acceptable error and other false positive symptoms.</p>
<p>To make matter worse, the configuration of ModSecurity rules and filters have to be done manually. Although there are free predefined certified rule set which can be used with ModSecurity out of the box, however the rule sets may be not suitable for each and every environment and may interfere with the operation of websites or blogs, and customizing and modifying the rules may be too sophisticated or complicated for some users. And for some websites that hosted on shared hosting service, the mod_security may be enable by default without options. So in this case, the best solution or workaround for mod security related issues is to disable mod_security filtering and rules.</p>
<p>If youâ€™re using Apache web server (which mostly do), mod_security can be disabled by adding a specific in .htaccess file. Locate the .htaccess file in Apache web root directory (public_html or /var/www/ or others), if it does not exist, create a new file named .htaccess, and add in the following code:</p>
<p>SecFilterEngine Off<br />
SecFilterScanPOST Off</p>
<p>The above entries in the .htaccess will disable the ModSecurity (mod_security) module for the domain.</p>
<p><strong>Uninstallation of ModSecurity (mod_security) from Apache module</strong></p>
<p>The easiest way to remove and uninstall mod_security is to comment out or delete the related mod_security entries from httpd.conf Apache configuration file. The lines that should be removed include:</p>
<p>AddModule mod_security.c<br />
LoadModule security_module modules/mod_security.so<br />
Include â€œ/usr/local/apache/conf/modsec.confâ€ This line may be different depending on what variant of Linux or Unix you used and the installation location</p>
<p>Save the httpd.conf and restart the Apache. ModSecurity will not be loaded and as if uninstalled.</p>
<p>If youâ€™re using WebHost Manager (WHM), uninstallation is even simpler. Just scroll to cPanel section, and click on Addon Modules. Then scroll to module named modsecurity. It should be checked Install and Keep Updated currently. Just click on Uninstall to remove the mod security feature from Apache web server.</p>
<p>Taken from mydigitallife.info</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/how-to-remove-and-uninstall-or-disable-modsecurity-mod_security.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Couldn&#8217;t open stream {localhost:143}INBOX</title>
		<link>http://www.thinksupport.net/blog/couldnt-open-stream-localhost143inbox.html</link>
		<comments>http://www.thinksupport.net/blog/couldnt-open-stream-localhost143inbox.html#comments</comments>
		<pubDate>Wed, 14 Nov 2007 15:23:19 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP / Mysql]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/couldnt-open-stream-localhost143inbox.html</guid>
		<description><![CDATA[Q) All my other IMAP clients can connect to my server, but TWIG says: Warning: Couldn&#8217;t open stream {localhost:143}INBOX in /var/www/html/twig/lib/mail/php-imap.inc.php3 A) Your server probably has Transport Layer Security turned on, but PHP does not support TLS. You&#8217;ll need to edit config.inc.php3: $config["imap_port"] = &#8220;143/notls&#8221;; Good read&#8230;]]></description>
			<content:encoded><![CDATA[<p>Q) All my other IMAP clients can connect to my server, but TWIG says:<br />
Warning: Couldn&#8217;t open stream {localhost:143}INBOX in<br />
/var/www/html/twig/lib/mail/php-imap.inc.php3</p>
<p>A) Your server probably has Transport Layer Security turned on, but<br />
PHP does not support TLS. You&#8217;ll need to edit config.inc.php3:<br />
$config["imap_port"] = &#8220;143/notls&#8221;;</p>
<p>Good read&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/couldnt-open-stream-localhost143inbox.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nivio, a Windows-based Online Desktop.</title>
		<link>http://www.thinksupport.net/blog/nivio-a-windows-based-online-desktop.html</link>
		<comments>http://www.thinksupport.net/blog/nivio-a-windows-based-online-desktop.html#comments</comments>
		<pubDate>Tue, 19 Jun 2007 12:51:55 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/?p=217</guid>
		<description><![CDATA[Many others like me must be waiting for something like this &#8212; Nivio, a Windows-based Online Desktop. An idea of having your desktop online sounds really great Google, eyeOS, YouOS are already in this race but Nivio going far ahead taking your windows desktop online. News is flashing all over internet and news channels &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Many others like me must be waiting for something like this &#8212; Nivio, a Windows-based Online Desktop. </p>
<p>An idea of having your desktop online sounds really great <img src='http://www.thinksupport.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Google, <a href="http://eyeos.org/">eyeOS</a>, <a href="https://www.youos.com/">YouOS</a> are already in this race but Nivio going far ahead taking your windows desktop online.</p>
<p>News is flashing all over internet and news channels &#8211; &#8220;A dozen creative young programmers at a Delhi-based start-up has announced the &#8220;world&#8217;s first Windows-based online desktop.&#8221; Called Nivio, it helps one to create a full-fledged, but entirely virtual, desktop of one&#8217;s own â€” on the web.&#8221;</p>
<p><strong>Website</strong> : <a href="http://www.nivio.com/">http://www.nivio.com/</a></p>
<p>I am off to register the Beta version <a href="http://www.nivio.com/Registration.aspx">http://www.nivio.com/Registration.aspx</a></p>
<p>Cheers<br />
Sachin<br />
<a href="http://ThinkSupport.net">ThinkSupport.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/nivio-a-windows-based-online-desktop.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>***** Important release of cPanel 11 update *****</title>
		<link>http://www.thinksupport.net/blog/important-release-of-cpanel-11-update.html</link>
		<comments>http://www.thinksupport.net/blog/important-release-of-cpanel-11-update.html#comments</comments>
		<pubDate>Fri, 08 Jun 2007 09:40:10 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Articles -- Webhosting]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/?p=212</guid>
		<description><![CDATA[Since the release of cPanel 11, we have noticed a number of instances where the cPanel 11 release update failed to complete. The symptoms can vary, including blank pages being drawn from certain features, with the most commonly reported issue being that account creations are exiting prematurely, claiming immediately that the account creation is complete. [...]]]></description>
			<content:encoded><![CDATA[<p>Since the release of cPanel 11, we have noticed a number of instances where the cPanel 11 release update failed to complete. The symptoms can vary, including blank pages being drawn from certain features, with the most commonly reported issue being that account creations are exiting prematurely, claiming immediately that the account creation is complete. Additionally, account creation, suspension, unsuspension and removal may fail.</p>
<p>======================================================</p>
<p>This is occurring because /scripts/updatenow was executed (or run from update system software in whm) without a subsequent call to upcp. As a result, /scripts is updated to the latest available modules available with cPanel 11, while the rest of the system<br />
remains configured for the older builds. </p>
<p>You can confirm whether or not this is the case on your system by executing from the command line: </p>
<p>perl -c /scripts/wwwacct</p>
<p>If this command returns errors, then you will need to update. Here is what you can expect to see if a problem exists: </p>
<p>root@localhost [~]# perl -c /scripts/wwwacct<br />
Can&#8217;t locate Whostmgr/Accounts/Create.pm in @INC (@INC contains:<br />
/usr/local/cpanel /scripts /usr/lib/perl5/5.8.7/i686-linux<br />
/usr/lib/perl5/5.8.7 /usr/lib/perl5/site_perl/5.8.7/i686-linux<br />
/usr/lib/perl5/site_perl/5.8.7 /usr/lib/perl5/site_perl/5.8.5<br />
/usr/lib/perl5/site_perl/5.8.4 /usr/lib/perl5/site_perl/5.8.3<br />
/usr/lib/perl5/site_perl/5.8.2 /usr/lib/perl5/site_perl/5.8.1<br />
/usr/lib/perl5/site_perl/5.8.0 /usr/lib/perl5/site_perl .) at<br />
/scripts/wwwacct line 10.<br />
BEGIN failed&#8211;compilation aborted at /scripts/wwwacct line 10.<br />
root@localhost [~]#</p>
<p>Suggested Fixes:</p>
<p>If you wish to stay with cPanel 10.x, you will need to execute the<br />
following commands from the command line:</p>
<p>/usr/local/cpanel/bin/checkperlmodules<br />
echo &#8220;CPANEL=stable&#8221; &gt;&gt; /etc/cpupdate.conf<br />
/scripts/upcp &#8211;force</p>
<p>If you would like to continue with the cPanel 11 updates (recommended),<br />
you will need to execute the following commands from the command line:</p>
<p>/usr/local/cpanel/bin/checkperlmodules<br />
/scripts/upcp â€“force</p>
<p>If the problems persists after applying the updates, please contact our support team ASAP with an outline of the symptoms and the login credentials for the system, and we will take care of it with the utmost priority.</p>
<p>NOTE : You can download the installer at: http://layer2.cpanel.net</p>
<p>Cpanel will also release a new 10.9 STABLE build on 06/08/2007 that will handle downgrades from cPanel 11.x more gracefully.</p>
<p>Thanks <img src='http://www.thinksupport.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/important-release-of-cpanel-11-update.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Alerts &#8211; Amazing tool.</title>
		<link>http://www.thinksupport.net/blog/google-alerts-amazing-tool.html</link>
		<comments>http://www.thinksupport.net/blog/google-alerts-amazing-tool.html#comments</comments>
		<pubDate>Tue, 29 May 2007 12:28:03 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/?p=205</guid>
		<description><![CDATA[How many of you knew you can ? * monitor a developing news story. * keep current on a competitor or industry. * getting the latest on a celebrity or event. * keep tabs on your favorite sports teams. * get to know who is talking about your website. I have set up an alert [...]]]></description>
			<content:encoded><![CDATA[<p>How many of you knew you can ?</p>
<p>    * monitor a developing news story.<br />
    * keep current on a competitor or industry.<br />
    * getting the latest on a celebrity or event.<br />
    * keep tabs on your favorite sports teams.<br />
    * get to know who is talking about your website.  </p>
<p>I have set up an alert for word &#8220;ThinkSupport&#8221; &#8212; Google Alerts me everyday! if some is talking about ThinkSupport. </p>
<p><a href='http://thinksupport.net/blog/wp-content/uploads/2007/05/google_alerts.JPG' title='Google Alerts'><img src='http://thinksupport.net/blog/wp-content/uploads/2007/05/google_alerts.JPG' alt='Google Alerts' /></a></p>
<p><a href="http://www.google.com/alerts">Google Alert</a> works great for me <img src='http://www.thinksupport.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Sachin J.<br />
<a href="http://ThinkSupport.net">ThinkSupport.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/google-alerts-amazing-tool.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fantastico De Luxe 2.10.2 r45 (LATEST and STABLE releases) has fixed Mysql Bug</title>
		<link>http://www.thinksupport.net/blog/fantastico-de-luxe-2102-r45-latest-and-stable-releases-has-fixed-mysql-bug.html</link>
		<comments>http://www.thinksupport.net/blog/fantastico-de-luxe-2102-r45-latest-and-stable-releases-has-fixed-mysql-bug.html#comments</comments>
		<pubDate>Fri, 25 May 2007 13:04:22 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[Articles -- Webhosting]]></category>
		<category><![CDATA[Fantastico / Installatron]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/?p=202</guid>
		<description><![CDATA[If you were having issues connecting to mysql through fantastico (though you have mysql server up and running ) Fantastico has released patch for mysql bug &#8211; http://netenberg.com/forum/viewtopic.php?t=5786 Fantastico De Luxe 2.10.2 r45 (LATEST and STABLE releases) Changes/Fixes: - Fixed: MySQL Bug (http://netenberg.com/forum/viewtopic.php?t=5786) Cheers Sachin J. http://thinksupport.net]]></description>
			<content:encoded><![CDATA[<p>If you were having issues connecting to mysql through fantastico (though you have mysql server up and running ) </p>
<p>Fantastico has released patch for mysql bug &#8211; <a href="http://netenberg.com/forum/viewtopic.php?t=5786">http://netenberg.com/forum/viewtopic.php?t=5786</a><br />
Fantastico De Luxe 2.10.2 r45 (LATEST and STABLE releases) </p>
<p>Changes/Fixes:<br />
- Fixed: MySQL Bug (<a href="http://netenberg.com/forum/viewtopic.php?t=5786">http://netenberg.com/forum/viewtopic.php?t=5786</a>) </p>
<p>Cheers <img src='http://www.thinksupport.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Sachin J.<br />
<a href="http://ThinkSupport.net">http://thinksupport.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/fantastico-de-luxe-2102-r45-latest-and-stable-releases-has-fixed-mysql-bug.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check out Google&#8217;s latest ideas :)</title>
		<link>http://www.thinksupport.net/blog/check-out-googles-latest-ideas.html</link>
		<comments>http://www.thinksupport.net/blog/check-out-googles-latest-ideas.html#comments</comments>
		<pubDate>Thu, 17 May 2007 08:59:10 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/?p=192</guid>
		<description><![CDATA[It&#8217;s always fun to see google experimenting new things &#8212; I picked some interesting feature images from Google Lab &#8212; http://www.google.com/experimental/ Timeline and map views Keyboard shortcuts Left-hand search navigation Right-hand contextual search navigation Cheers.. Sachin ThinkSupport.net]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s always fun to see google experimenting new things &#8212; </p>
<p>I picked some interesting feature images from Google Lab  &#8212; <a href="http://www.google.com/experimental/">http://www.google.com/experimental/</a></p>
<p><strong>Timeline and map views</strong></p>
<p><img src='http://thinksupport.net/blog/wp-content/uploads/2007/05/google1.jpg' alt='Timeline and map views' /></p>
<p><strong>Keyboard shortcuts</strong></p>
<p><img src='http://thinksupport.net/blog/wp-content/uploads/2007/05/google2.jpg' alt='Keyboard shortcuts' /></p>
<p><strong>Left-hand search navigation</strong></p>
<p><img src='http://thinksupport.net/blog/wp-content/uploads/2007/05/google3.jpg' alt='Left-hand search navigation' /></p>
<p><strong>Right-hand contextual search navigation</strong></p>
<p><img src='http://thinksupport.net/blog/wp-content/uploads/2007/05/google4.jpg' alt='Right-hand contextual search navigation' /></p>
<p>Cheers..<br />
Sachin<br />
<a href="http://ThinkSupport.net">ThinkSupport.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/check-out-googles-latest-ideas.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Participate in the HostingCon 2007 IRC Channel</title>
		<link>http://www.thinksupport.net/blog/participate-in-the-hostingcon-irc-channel.html</link>
		<comments>http://www.thinksupport.net/blog/participate-in-the-hostingcon-irc-channel.html#comments</comments>
		<pubDate>Fri, 04 May 2007 12:54:15 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/?p=169</guid>
		<description><![CDATA[HostingCon has setup IRC channel for HostingCon discussions that can be used before, during and after the show. You can connect to irc.ijnet.net and go to #hostingcon. Cheers..]]></description>
			<content:encoded><![CDATA[<p>HostingCon has setup IRC channel for HostingCon discussions that can be used before, during and after the show.  </p>
<p>You can connect to  irc.ijnet.net and go to #hostingcon.  </p>
<p>Cheers..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/participate-in-the-hostingcon-irc-channel.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

