<?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>Server Sitters Tech Corner</title>
	<atom:link href="http://serversitters.com/technical/feed/" rel="self" type="application/rss+xml" />
	<link>http://serversitters.com/technical</link>
	<description>Outsourced Web Hosting Support</description>
	<lastBuildDate>Wed, 15 Dec 2010 12:03:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>ubuntu disable pointer can be controlled using the keypad</title>
		<link>http://serversitters.com/technical/ubuntu/ubuntu-disable-pointer-can-be-controlled-using-the-keypad/</link>
		<comments>http://serversitters.com/technical/ubuntu/ubuntu-disable-pointer-can-be-controlled-using-the-keypad/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 12:03:48 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=224</guid>
		<description><![CDATA[This has to be one of the most annoying &#8220;features&#8221; of ubuntu. Your computer rests or you restart it and some of your key pad numbers cause the mouse pointer to move instead of entering in numbers. I battled with it for a while and the solution is to go to: System &#8211; Preferences &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>This has to be one of the most annoying &#8220;features&#8221; of ubuntu.  Your computer rests or you restart it and some of your key pad numbers cause the mouse pointer to move instead of entering in numbers.  I battled with it for a while and the solution is to go to:<br />
System &#8211; Preferences &#8211; Keyboard &#8211; Mouse Keys &#8211; Uncheck &#8211; Pointer can be controlled using the keypad</p>
<p>However, uncheck that box and then apply the following fix which will permanently disable it.  This fix simply stops it from resetting:</p>
<p>sudo vi /usr/share/X11/xkb/compat/complete<br />
and comment out two lines:<br />
augment &#8220;mousekeys&#8221;<br />
augment &#8220;accesx(full)&#8221;</p>
<p>Actual File:<br />
// $XKeyboardConfig$<br />
// $Xorg: complete,v 1.3 2000/08/17 19:54:34 cpqbld Exp $<br />
default xkb_compatibility &#8220;complete&#8221; {<br />
include &#8220;basic&#8221;<br />
augment &#8220;iso9995&#8243;<br />
//augment &#8220;mousekeys&#8221;<br />
//augment &#8220;accessx(full)&#8221;<br />
augment &#8220;misc&#8221;<br />
augment &#8220;xfree86&#8243;<br />
augment &#8220;level5&#8243;<br />
};</p>
<p>Save the file and you will have achieved victory over the keypad!</p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/ubuntu/ubuntu-disable-pointer-can-be-controlled-using-the-keypad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Duplicate emails in Outlook</title>
		<link>http://serversitters.com/technical/outlook/duplicate-emails-in-outlook/</link>
		<comments>http://serversitters.com/technical/outlook/duplicate-emails-in-outlook/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 00:22:11 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=219</guid>
		<description><![CDATA[They probably have a corrupt POP3UIDL.DBX file. Close outlook and delete that file. It will be recreated when you re-open outlook. Please follow these steps on YOUR pc. 1) Click on &#8220;Start&#8221; 2) Highlight &#8220;Search&#8221; 3) Click on &#8220;For files or folders&#8221; 4) Search for &#8220;Pop3uidl.dbx&#8221; 5) Delete this file This should correct the issue. [...]]]></description>
			<content:encoded><![CDATA[<p>They probably have a corrupt POP3UIDL.DBX file.  Close outlook and delete that file. It will be recreated when you re-open outlook.</p>
<p>Please follow these steps on YOUR pc.</p>
<p>1) Click on &#8220;Start&#8221;</p>
<p>2) Highlight &#8220;Search&#8221;</p>
<p>3) Click on &#8220;For files or folders&#8221;</p>
<p>4) Search for &#8220;Pop3uidl.dbx&#8221;</p>
<p>5) Delete this file</p>
<p>This should correct the issue.</p>
<p>The .dbx file is a database file of downloaded emails.  If this becomes corrupt it can cause duplicate emails or make old emails appear to be unread.</p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/outlook/duplicate-emails-in-outlook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Count port connections</title>
		<link>http://serversitters.com/technical/bashfu/count-port-connections/</link>
		<comments>http://serversitters.com/technical/bashfu/count-port-connections/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 00:20:46 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[BashFu]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=216</guid>
		<description><![CDATA[Here are some handy one liners that will allow you to check the number of connections to a port: #check port 25 netstat -an &#124; grep &#8220;:25 &#8220;&#124; grep ESTABLISHED &#124; awk &#8216;{print $4&#8243;\t&#8221;$5}&#8217; &#124; sort -n -k1 #check port 80 netstat -an &#124; grep &#8220;:80 &#8220;&#124; grep ESTABLISHED &#124; awk &#8216;{print $4&#8243;\t&#8221;$5}&#8217; &#124; sort [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some handy one liners that will allow you to check the number of connections to a port:</p>
<p>#check port 25<br />
netstat -an | grep &#8220;:25 &#8220;| grep ESTABLISHED | awk &#8216;{print $4&#8243;\t&#8221;$5}&#8217; | sort -n -k1 </p>
<p>#check port 80</p>
<p>netstat -an | grep &#8220;:80 &#8220;| grep ESTABLISHED | awk &#8216;{print $4&#8243;\t&#8221;$5}&#8217; | sort -n -k1 </p>
<p>#check port 110</p>
<p>netstat -an | grep &#8220;:110 &#8220;| grep ESTABLISHED | awk &#8216;{print $4&#8243;\t&#8221;$5}&#8217; | sort -n -k1</p>
<p>#check port 587</p>
<p>netstat -an | grep &#8220;:587 &#8220;| grep ESTABLISHED | awk &#8216;{print $4&#8243;\t&#8221;$5}&#8217; | sort -n -k1</p>
<p>Here&#8217;s another great command that checks for the number of times an IP is connected to the server:<br />
netstat -an|awk &#8216;{print $5}&#8217;|cut -d &#8220;:&#8221; -f1|sort|uniq -c|sort -n</p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/bashfu/count-port-connections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sendmail attachment size limit</title>
		<link>http://serversitters.com/technical/sendmail/sendmail-attachment-size-limit/</link>
		<comments>http://serversitters.com/technical/sendmail/sendmail-attachment-size-limit/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 03:09:51 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Sendmail]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=214</guid>
		<description><![CDATA[To increase the attachment size limit in sendmail you have to locate and update the sendmail.cf file. It&#8217;s usually stored in: /etc/mail/sendmail.cf # maximum message size O MaxMessageSize=20000000 change it to what you want restart sendmail : service sendmail stop killall -9 sendmail service sendmail start]]></description>
			<content:encoded><![CDATA[<p>To increase the attachment size limit in sendmail you have to locate and update the sendmail.cf file.  It&#8217;s usually stored in:<br />
/etc/mail/sendmail.cf</p>
<p># maximum message size</p>
<p>O MaxMessageSize=20000000</p>
<p>change it to what you want</p>
<p>restart sendmail<br />
:<br />
service sendmail stop<br />
killall -9 sendmail</p>
<p>service sendmail start</p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/sendmail/sendmail-attachment-size-limit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hsphere recreate zone file</title>
		<link>http://serversitters.com/technical/hsphere/hsphere-recreate-zone-file/</link>
		<comments>http://serversitters.com/technical/hsphere/hsphere-recreate-zone-file/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 03:07:40 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[HSphere]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=212</guid>
		<description><![CDATA[To recreate a specific zone file in hsphere: Login to the cp server su -l cpanel java psoft.hsphere.tools.DNSCreator -m creation_method -[dz] -z domain.com this will switch to the cpanel user and the following line then tells the DNSCreator to recreate the zone file for domain.com]]></description>
			<content:encoded><![CDATA[<p>To recreate a specific zone file in hsphere:<br />
Login to the cp server</p>
<p>su -l cpanel</p>
<p>java psoft.hsphere.tools.DNSCreator -m creation_method -[dz] -z domain.com</p>
<p>this will switch to the cpanel user and the following line then tells the DNSCreator to recreate the zone file for domain.com</p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/hsphere/hsphere-recreate-zone-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use dig &#8211; DNS</title>
		<link>http://serversitters.com/technical/dns/how-to-use-dig-dns/</link>
		<comments>http://serversitters.com/technical/dns/how-to-use-dig-dns/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 03:05:12 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[DNS]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=210</guid>
		<description><![CDATA[Here are few examples of how to use dig from within SSH to query a nameserver: dig domain.com @NS2.hostname.COM mx This will query or ask ns2.hostname.com what the mx record is for domain.com dig domain.com @NS2.hostname.COM If you remove the mx it will simply reply with the A record for domain.com]]></description>
			<content:encoded><![CDATA[<p>Here are few examples of how to use dig from within SSH to query a nameserver:</p>
<p>dig domain.com @NS2.hostname.COM mx<br />
This will query or ask ns2.hostname.com what the mx record is for domain.com</p>
<p>dig domain.com @NS2.hostname.COM<br />
If you remove the mx it will simply reply with the A record for domain.com</p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/dns/how-to-use-dig-dns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>curl disabel curl host verify</title>
		<link>http://serversitters.com/technical/php/curl-disabel-curl-host-verify/</link>
		<comments>http://serversitters.com/technical/php/curl-disabel-curl-host-verify/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 03:03:06 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=208</guid>
		<description><![CDATA[curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);]]></description>
			<content:encoded><![CDATA[<p>                        curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);</p>
<p>                        curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);</p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/php/curl-disabel-curl-host-verify/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is PPC &#8211; pay per click</title>
		<link>http://serversitters.com/technical/miscellaneous/what-is-ppc-pay-per-click/</link>
		<comments>http://serversitters.com/technical/miscellaneous/what-is-ppc-pay-per-click/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 03:02:05 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=206</guid>
		<description><![CDATA[Almost ALL of the major search engines now charge per visitor (pay-per-click) that they send to your site. All you have to do is visit their site or the site in control of providing their listings and setup an account. Then you add money to your account and choose a series of key words that [...]]]></description>
			<content:encoded><![CDATA[<p>Almost ALL of the major search engines now charge per visitor (pay-per-click) that they send to your site.  All you have to do is visit their site or the site in control of providing their listings and setup an account.  Then you add money to your account and choose a series of key words that you would like linked to your site such as: web hosting, hosting, internet, etc&#8230;</p>
<p>Then throughout the day/week/month you bid against other competitors on the rate you&#8217;re willing to pay.  Each time a visitor goes to the search engine and searches for one of your keywords your link is displayed in accordance with your bid.  For instance if one company is willing to bid/pay $0.50 per visitor their listing may be number on and if you were to bid $0.49 per visitor your link would follow right after theirs and so on.  This allows you to control exactly where you are placed in the search engines at any given time and the bids are managed in real-time.  Even the world&#8217;s largest search engine Yahoo.com &#8211; manages it&#8217;s first 3 listings for almost every keyword or combination of keywords this way.  To rank within the top 3 listings at Yahoo.com you would have to establish an advertising account with Overture.com which is the search engine that controls Yahoo&#8217;s top listings.</p>
<p>Here&#8217;s a listing of some of the other popular pay-per-click search engines.</p>
<p>http://findwhat.com (now http://miva.com)</p>
<p>http://epilot.com</p>
<p>http://kanoodle.com</p>
<p>http://sprinks.com</p>
<p>http://pageseeker.com</p>
<p>http://bay9.com</p>
<p>http://sprinks.com</p>
<p>http://about.com</p>
<p>http://yahoo.com (http://overture.com)</p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/miscellaneous/what-is-ppc-pay-per-click/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ColdFusion Flash Forms</title>
		<link>http://serversitters.com/technical/coldfusion/coldfusion-flash-forms/</link>
		<comments>http://serversitters.com/technical/coldfusion/coldfusion-flash-forms/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 18:08:57 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Coldfusion]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=204</guid>
		<description><![CDATA[Enabling Flash Forms &#8211; via coldfusion Setup a virtual directory that maps from the domains home folder to the system CFIDE folder - Open IIS Find the site Enter the domain.com folder Right Click &#8211;> New &#8211;> Virtual Directory &#8211; Click Next Alias &#8211; CFIDE Click Next Path: Browse to the system CFIDE folder for [...]]]></description>
			<content:encoded><![CDATA[<p>Enabling Flash Forms &#8211; via coldfusion</p>
<p>Setup a virtual directory that maps from the domains home folder to the system CFIDE folder -</p>
<p>Open IIS</p>
<p>Find the site</p>
<p>Enter the domain.com folder</p>
<p>Right Click &#8211;> New &#8211;> Virtual Directory &#8211; Click Next</p>
<p>Alias &#8211; CFIDE</p>
<p>Click Next</p>
<p>Path: Browse to the system CFIDE folder for coldfusion</p>
<p>Select CFIDE Click OK</p>
<p>Click Next</p>
<p>Permissions: Read, Run, Execute</p>
<p>Click Next</p>
<p>Click Finish</p>
<p>Restart IIS</p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/coldfusion/coldfusion-flash-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Block access to files by extension</title>
		<link>http://serversitters.com/technical/security/block-access-to-files-by-extension/</link>
		<comments>http://serversitters.com/technical/security/block-access-to-files-by-extension/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 18:07:45 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://serversitters.com/technical/?p=202</guid>
		<description><![CDATA[It&#8217;s often required to block access to files in a folder by the file extension. For example &#8211; customer has an outdated version of oscommerce that they refuse to upgrade. It requires the images folder to have the permissions 777. The only thing that should be stored in the folder is images. To ensure a [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s often required to block access to files in a folder by the file extension.  For example &#8211; customer has an outdated version of oscommerce that they refuse to upgrade.  It requires the images folder to have the permissions 777.  The only thing that should be stored in the folder is images.  To ensure a script kiddie doesn&#8217;t upload php/html files and run them we&#8217;ll often add the following to the .htaccess file within the folder:</p>
<p><Files *.html></p>
<p>order deny,allow</p>
<p>deny from all</p>
<p></Files></p>
<p><Files *.php></p>
<p>order deny,allow</p>
<p>deny from all</p>
<p></Files></p>
<p><Files *.htm></p>
<p>order deny,allow</p>
<p>deny from all</p>
<p></Files></p>
<p><Files *.cgi></p>
<p>order deny,allow</p>
<p>deny from all</p>
<p></Files></p>
<p><Files *.txt></p>
<p>order deny,allow</p>
<p>deny from all</p>
<p></Files></p>
<p>This stops script kiddies from uploading hacking scripts and then loading them in their browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://serversitters.com/technical/security/block-access-to-files-by-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

