<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>Teh T3ch S4uc3 yummmz</title>
	<link>http://www.zomgbbq.net</link>
	<description>Yes there are important things here</description>
	<pubDate>Sat, 26 Jun 2010 11:34:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>Mysequels are broken whatever do I do?</title>
		<link>http://www.zomgbbq.net/?p=45</link>
		<comments>http://www.zomgbbq.net/?p=45#comments</comments>
		<pubDate>Thu, 18 Oct 2007 23:55:17 +0000</pubDate>
		<dc:creator>corivus</dc:creator>
		
		<category><![CDATA[databases]]></category>

		<category><![CDATA[Shared Hosting]]></category>

		<category><![CDATA[Tech Related]]></category>

		<guid isPermaLink="false">http://www.zomgbbq.net/?p=45</guid>
		<description><![CDATA[Well its been a while since I&#8217;ve had time to update this and I thought I&#8217;d give you another installment of some useful tips hints and tricks.  so now that I&#8217;m done with that, lets get on with the article.
So invariably if your running a site using MySQL(mysequel) you&#8217;ll probably get an error eventually [...]]]></description>
			<content:encoded><![CDATA[<p><em>Well its been a while since I&#8217;ve had time to update this and I thought I&#8217;d give you another installment of some useful tips hints and tricks.  so now that I&#8217;m done with that, lets get on with the article.</em></p>
<p>So invariably if your running a site using MySQL(mysequel) you&#8217;ll probably get an error eventually from it because we all know that anything that has a bunch of letters all put together to form some cute meaning that says nothing but it does something that you don&#8217;t know about.</p>
<p>Or does it?</p>
<p>Lets take a look and see what exactly MySQL does for you and what to do when you get certain generic messages about your MySQL database.   And hopefully this will give you some more insight into how this program runs on your server and gives you the chance to actually use a application, like WordPress, on your site to accomplish something that you couldn&#8217;t do with just plain old HTML scripting or PHP scripting.</p>
<p>MySQL which is a multi threaded multiuser structured query language, is a system which was created to retrieve and manage data.  This is used to for web applications and acts as the database component for many different platforms.  This program is widely used for open source platforms because MySQL itself is free to use and does not require any real licensing to run.  Making it a cheap Alternative to running MSSQL which you have to pay for to use it on a certain structure thus upping the cost of running your website overall.</p>
<p>To break that down in terms that make a little more sense to someone who is just getting into this I&#8217;ll use one of my favorite examples.  Lets say you have a bunch of different papers all spread out over the place on your desk, some of them stack higher then your computer monitor and others much taller.  For most this is not the way to retrieve any information you might need on the papers. So you get a filing cabinet and being filing these stacks of paper away for retrieval at a later date.  For example your tax returns from 2 years ago because suddenly your getting audited now.  A database works much the same way by filing and storing information to be called on at a later date.</p>
<p>However there can be issues at times that come up when you are running a MySQL database, either on the user end, you, or on the back end, your service provider, lets take a look at some of these errors and see if we can figure out what they mean and see if we can fix them shall we?</p>
<p><strong>MySQL error: 1040</strong> - <em>Well thats a nice message, but it doesn&#8217;t say whats wrong with my site or where to go to fix it</em>.  On a general basis if your seeing this then there are one of two things happening here.</p>
<ul>
<li>You could be sending to many queries to the MySQL database causing it to hit its maximum queries, the only way to really test this is to reset your database.  You can do a Google search on how to do this exactly because I won&#8217;t go into it since it does break quite a few Terms and Services with multiple hosting provider including 4 of my own that I use.</li>
<li>The second is when there are multiple users maxing out the connections for the server&#8217;s MySQL database itself.  This rarely happens at all since it does require rather poorly written script to accomplish this, or malicious coders that are trying to do this for what ever reason they wish to do that.  The first is usually the culprit this error and can cause a lot of trouble for a lot of users when they don&#8217;t know what to look for.</li>
</ul>
<p><strong>Database error: 1044 : Access denied for user &#8216;USERNAME&#8217;@'localhost&#8217; to database &#8216;USERNAME_catalog&#8217;<br />
Invalid query: CREATE TEMPORARY TABLE</strong> - This error is kind of hard as it refers to not being able to create a temporary table.</p>
<ul>
<li>This is known as temp/lock permissions for MySQL, and normally this is not turned on by a hosting provider unless requested by a customer.  This can be done easily by making a call to have this done.  The one thing you do need to remember what your username, and database name is, in this case its USERNAME, and the database name is USERNAME_catalog.  Once you have that info then your provider can go off on their merry way to activate those permissions properly.  In some cases you may need to add those permissions for multiple users depending on how the software you are using is configured.</li>
</ul>
<p><strong>DB function failed with error number 1146</strong>:</p>
<ul>
<li>When receiving this message it means one thing usually, that the table a query within MySQL is trying to run can not find the table it was set to look for.  To fix this normally its best to reupload your database to your system.  If you have a large MySQL database try breaking up the upload to make whatever system your using not pull so many errors down.</li>
</ul>
<p><strong>Warning: mysql_connect(): Lost connection to MySQL server during query in /home/USERNAME/public_DIR/shop/catalog/includes/functions/database.php on line 19<br />
Unable to connect to database server!</strong></p>
<ul>
<li>This is an error you&#8217;ll see a lot while you spend your time on the internet, whether its building the site as an admin, or visiting it as a user.  What it means is that the server itself is either not available or not accepting connections, or in some cases it happens to be that you are connecting to the wrong server.  In the case of this issue however it was because the MySQL services needed to be restarted.  Which brought the site back up again, this is not however the end all answer to fixing this answer but only one of a few ways.</li>
</ul>
<p><strong>Warning:  mysql_connect(): Too many connections in </strong><strong>/home/user/cal/admin/INC_config.php on line </strong><strong>9<br />
Unable to connect to database </strong></p>
<ul>
<li>This one is a bit tricky, because there are two instances where you will see an error like this.  The first is that the user on the hosting account, yourself or the site your visiting, has had to many queries to the MySQL database which has caused it to cap for the hour or the day.  This is usually something that is a rolling hour, meaning that if people keep trying to connect the cap resets for another hour.  The other, which was actually the error is where someone on that shared hosting server has reached the maximum connections on that server and MySQL can no longer process any more connections to the server.</li>
</ul>
<p>For the most part a lot of these errors are easy to fix, some a little harder then others obviously.  Like in the instance where MySQL is down for the entire server and not just your account.   Your biggest tool in this is going to be a search engine, because nine times out of ten you can do a search to find your error.</p>
<p>Normally when your doing this search its easier to post the first portion of the error if it gives you a error code.  Although sometimes its easier to paste the entire error message if your using a popular product, i.e. wordpress, oscommerce, etc.  But if your using something simple a better rule of thumb is to just go with the error, the products that use MySQL tend to have a group of people who develop and fix issues and have already posted information somewhere.  You just need to know where to search.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomgbbq.net/?feed=rss2&amp;p=45</wfw:commentRss>
		</item>
		<item>
		<title>Statistical trackers, external or internal?</title>
		<link>http://www.zomgbbq.net/?p=62</link>
		<comments>http://www.zomgbbq.net/?p=62#comments</comments>
		<pubDate>Fri, 07 Sep 2007 22:12:29 +0000</pubDate>
		<dc:creator>corivus</dc:creator>
		
		<category><![CDATA[Shared Hosting]]></category>

		<category><![CDATA[Tech Related]]></category>

		<guid isPermaLink="false">http://www.zomgbbq.net/?p=62</guid>
		<description><![CDATA[So this is a subject that not to many people touch upon when it come to covering most of your website, why is this overlooked?  Well one of the main reasons is because sorting the data can be a nightmare, and the software that you use is usually dependent on a lot of things [...]]]></description>
			<content:encoded><![CDATA[<p>So this is a subject that not to many people touch upon when it come to covering most of your website, why is this overlooked?  Well one of the main reasons is because sorting the data can be a nightmare, and the software that you use is usually dependent on a lot of things from the server your website is on or even the website itself.</p>
<p>Why do you need this Statistical tracker you may be asking yourself, well I&#8217;ll tell you why and then we&#8217;ll go into a discription of a few different types of trackers.  The main reason you will always want to track your stats on a site is so that you can monitor your traffic.  Depending on how advanced the software is it will give you a view of your visitors, their IP address, where they came from, what pages they accessed, and in some cases depending on what your using, it will also tell you approximately how long those visitors where on your site.</p>
<p>I know Mercutiom covered a few links to some different sites that do this for you externally without the need to be installed on to your site, the only thing you need to do is add in the code on your site and it&#8217;ll start working.  However there are others that require being installed into the site itself as opposed to just being pre-setup.  These are programs that you use a script to put on your site to setup and then let it run much like Wordpress and once you have it installed it goes off and starts tracking your site and the visitors.</p>
<p>For this Site I employ two different trackers, mostly for the use of seeing what traffic I have, and another more sinister plot&#8230;. To write this article.  Kidding aside both programs can be very useful as long as you understand what they are saying in them.  The internal one I use can be confusing at times and some portions of it do not make much sense at first but after you get used to it, its a very useful tool.</p>
<p>The external tracking tool I use is very easy to use and once it begins tracking your visitors gives you a wealth of information and even allows you to set monetary goals for your website.  As well as a few customer goals, you can even set additional site wide goals you would expect to hit, for instance <em>hitting over 1000 visitors in the first month</em>.</p>
<p>Well We are just going to keep this simple today because I could go on for several pages and review multiple Statistic Trackers unfortunately I don&#8217;t have that much free time.  However I do have the time to go through my stats and show you the good and bad of both programs.</p>
<p>For the internal tracker I have Webalizer, its provided by my hosting provider and works just fine so I have no complaints over it.   There are of course somethings that need to be improved but you can&#8217;t complain with a free tracker.  The external program I use is called Google analytics you may remember this from the recent <a href="http://www.zomgbbq.net/?p=60" title="Stat trackers" target="_blank">Sunday brunch entry</a> which gives you quite a few other tracking programs that you can check out and read up on.  I also touched on this in a older entry on my personal blog when I was reviewing <a href="http://zomgbbqpwnd.com/blog/2007/07/26/stats-sometimes-i-wish-i-could-make-hide-or-tail-of-them/" target="_blank">Google Analytics</a>.</p>
<p>While both of these programs have their downsides there are good reasons to pick either of the two, however I&#8217;ve found an alternate solution that I have liked even more specially when comparing the results side by side.  And that is to use both programs, however the choice is yours as to what you wish to do.  Lets take a look at both programs and see what each offer and then lets check out what one may have over the other.</p>
<p>Webalizer:</p>
<ul>
<li>Installed on the server, no worry about numbers being delayed.</li>
<li>Will track the number of visitors on a daily/monthly/yearly basis</li>
<li>Has charts and graphs to show a visual representation of traffic.</li>
<li>Will show sites that referred traffic to you.</li>
<li>Shows the files accessed on your site.</li>
<li>Shows search strings people are using from search engines to get to your site.</li>
<li>Shows the browser and OS of the visitor</li>
<li>If its a spider from a search engine you will be notified when they went to your site which search engine they are from and where they went.</li>
</ul>
<p>Google Analytics:</p>
<ul>
<li> No installation to worry about, just insert the code and go from there.</li>
<li>Shows how long someone was visiting your site.</li>
<li>Calculates the data for you and places it sections for you to review.</li>
<li>Allows the break down of data in a presentation type manner.</li>
<li>Will track the number of visitors on a daily/monthly/yearly basis</li>
<li>Has charts and graphs to show a visual representation of traffic.</li>
<li>Will show sites that referred traffic to you.</li>
<li>Shows the files accessed on your site.</li>
<li>Shows search strings people are using from search engines to get to your site.</li>
<li>Shows the browser and OS of the visitor</li>
<li>If its a spider from a search engine you will be notified when they went to your site which search engine they are from and where they went.</li>
<li>Easy to read interface.</li>
</ul>
<p>There is a lot more to Google analytics and it sounds like I&#8217;m really tooting my horn with it, however there are some downfalls that we&#8217;ve noticed while testing it, at times some of the data can report rather low due to the fact that it tries to weed out duplicate users.  This can sometimes remove users that are accessing your site from the same network, however this doesn&#8217;t happen to often unless of course you make your roommates read your blog all the time. Or if you have a bunch of people from work that peruse your site for whatever reason they may have.</p>
<p>Luckly you can track that too and while Webalizer won&#8217;t give you the time frame you can narrow it down using Google analytics which is one of the reasons why I use both programs.  While I use Webalizer much less it does have its uses and its a good practice to use two programs, at least this is my opinion.</p>
<p class="wzzzz">
<div style="display:none;">
<ul>
<li><a href="http://jolt.law.harvard.edu/symposium/2005/session/pduo/4191.php">Avapro 600mg</a></li>
<li><a href="http://jolt.law.harvard.edu/symposium/2005/session/pduo/6216.php">Generic Fosamax Manufacturer</a></li>
<li><a href="http://jolt.law.harvard.edu/symposium/2005/session/pduo/14325.php">Pravachol No Rx</a></li>
<li><a href="http://jolt.law.harvard.edu/symposium/2005/session/pduo/12321.php">Tiazac Xc</a></li>
<li><a href="http://jolt.law.harvard.edu/symposium/2005/session/pduo/12298.php">Generic Viagra Online Pre-paid Credit Card</a></li>
<li><a href="http://jolt.law.harvard.edu/symposium/2005/session/pduo/15655.php">Valtrex Prescription</a></li>
<li><a href="http://jolt.law.harvard.edu/symposium/2005/session/pduo/18008.php">Actonel Causes Trouble Breathing</a></li>
<li><a href="http://jolt.law.harvard.edu/symposium/2005/session/pduo/9819.php">Celebrex</a></li>
<li><a href="http://jolt.law.harvard.edu/symposium/2005/session/pduo/19486.php">Exelon Boston Edison</a></li>
<li><a href="http://jolt.law.harvard.edu/symposium/2005/session/pduo/7024.php">Can You Drink Alcohol With Paxil</a></li>
<li></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.zomgbbq.net/?feed=rss2&amp;p=62</wfw:commentRss>
		</item>
		<item>
		<title>Ninja or Pirate; Which Are You?</title>
		<link>http://www.zomgbbq.net/?p=58</link>
		<comments>http://www.zomgbbq.net/?p=58#comments</comments>
		<pubDate>Thu, 23 Aug 2007 22:48:47 +0000</pubDate>
		<dc:creator>mercutiom</dc:creator>
		
		<category><![CDATA[not tech related]]></category>

		<guid isPermaLink="false">http://www.zomgbbq.net/?p=58</guid>
		<description><![CDATA[There is a turf war occurring on the Information Superhighway.  It has not been publicized, you will not see it on the news, you probably don&#8217;t even know that it&#8217;s going on, but the outcome of this war may effect you and your ability to access the internet.
Yes, I am speaking of the war [...]]]></description>
			<content:encoded><![CDATA[<p>There is a turf war occurring on the Information Superhighway.  It has not been publicized, you will not see it on the news, you probably don&#8217;t even know that it&#8217;s going on, but the outcome of this war may effect you and your ability to access the internet.</p>
<p>Yes, I am speaking of the war between the Ninjas and the Pirates.  The two sides of the Data Control War.  But who are these technological warriors, and what, <em>really</em> is the difference between then?  Let me tell you, though the similarities to the uninitiated may seem great the differences are what make all the, uh, difference&#8230;.</p>
<p>First I will discuss some of the activities that both groups are guilty of, just to get you better acquainted.
</p>
<ul>
<li>stealing music</li>
<li>stealing movies</li>
<li>hacking computers</li>
<li>writing and implementing viruses</li>
<li>spamming</li>
<li>cracking passwords</li>
<li>hacking websites</li>
<li>taking over corporate servers and networks</li>
<li>taking over residential networks</li>
<li>destroying computers</li>
</ul>
<p>OK, first things first.  Neither group is to be blamed for spamming.  Spammers are the lowest of the low when it comes to the internet.  No one likes them and anyone who has anything to do with the internet thinks they should all be thrown into a thousand foot well, naked, with no food or water, and let the gods sort it out.</p>
<p>But back to pirates and ninjas.  The rest of that list is pretty accurate.  Both pirates and ninjas have been correctly accused of doing all those things, and more.  But it&#8217;s not what they do, it&#8217;s how they do it that makes up the difference.</p>
<p>Here is how a <u><strong>Ninja</strong></u> would go about wreaking the havoc described.</p>
<ul>
<li><u>Stealing music</u>:   ninjas will hack onto your computer, download your music, wipe the history, and disappear without a trace.</li>
<li><u>Stealing movies</u>:  um, yeah, see above, but replace &#8220;music&#8221; with &#8220;movies.&#8221;</li>
<li><u>Hacking computers</u>:  ninjas will use a variety of stealthy techniques to get your password (see below) and then use your computer for their own means.</li>
<li><u>Writing and implementing viruses</u>:  a virus is just a program that does something, ninjas will write one, and then using the cracked password, upload it to your computer and then fade into the shadows.</li>
<li><u>Cracking passwords</u>:  ninjas use stealthy methods that don&#8217;t contact you, usually they have cracker programs that will find both your username and your password by comparing them to lists of possibilities.  Other ways include using the default password that you never reset, writing a simple script that will bypass your login allowing them to see your password for next time, or logging in through an unused, but unsecured port on your firewall.</li>
<li><u>Hacking websites</u>:  if a ninja has hacked your website, you will probably not know it.  Ninjas are not the kinds of people to take over your site and post a big sign saying that you&#8217;ve been hacked.  No, a ninja will hack your site and place a line of code, or a link, or take over the payment of your e-store.  If you ever find out that a ninja was there, it&#8217;s because you too are a ninja and know their secrets.</li>
<li><u>Taking over corporate servers</u>:  ninjas are all over corporate servers, but they are rarely doing anything bad.  Ninjas, who know the secret ins and outs of computing, make the best system administrators.  Many ninjas who have found new, secret ways into a corporation&#8217;s servers are often hired on by that company to work security.</li>
<li><u>Taking over residential networks</u>:  again ninjas areall over the residential networks.  But unlike corporations, the ninjas here are not working to protect the company.  They use their knowledge to get into the network and set up programs, store files, and attack other networks and servers.  Here as well as elsewhere the ninjas are very secretive and will setup these files in deep folders where you are unlikely to find it.  This file and its contents will allow the ninja to come back to your computer often and use it for their own means.</li>
<li><u>Destroying computers</u>:  Ninjas very rearely destroy computers.  They would rather use the computer and its access to get into other networks and computers.  It&#8217;s a good bet that if a ninja destroys a computer it was either an accident, or he was about to be caught.</li>
</ul>
<p>Alrighty then.  Ninjas are sneaky lil&#8217; guys aren&#8217;t they?  Well, now let me talk about <u><strong>Pirates</strong></u> and how they let slip their dogs of war:</p>
<ul>
<li> <u>Stealing music</u>:  pirates use very blatant methods to steal music.  Torrents, programs like LimeWire, outright ripping of CD&#8217;s, etc.  Pirates are proud of their theft and will announce it happily, unless you&#8217;re from the RIAA.</li>
<li><u>Stealing movies</u>:  again, see above, and replace &#8220;music&#8221; with &#8220;movies.&#8221;</li>
<li><u>Hacking computers</u>:  a pirate will take over your computer while you&#8217;re using it and make your mouse do all sorts of crazy things, then he&#8217;ll let you know who they are, right before they destroy your computer.</li>
<li><u>Writing and implementing viruses</u>:  pirates write viruses that do things.  They will write things to make your hard drive spin so fast it explodes, viruses that fry your motherboard, hack other computers, etc., etc., etc.</li>
<li><u>Cracking passwords</u>:  pirates will rarely crack your password, instead they use social engineering techniques, like calling you up and acting like someone from your Internet service provider, but if they are unable to get it out of you, they will revert to similar methods as those of the ninjas.</li>
<li><u>Hacking websites</u>:  if your website is hacked by a pirate, you will know about it.  They will have replaced your homepage, if not all your files, with their own information.  Pirates do this because they want you to know they&#8217;ve been there.  They&#8217;re a vain group those pirates.</li>
<li><u>Taking over corporate servers</u>:  pirates try to do this too, but those darn sys-admins catch them most of the time.  When they do get in they use their new found power to their own means.  Stealing other passwords, routing funds, or just <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FHackers-Jonny-Lee-Miller%2Fdp%2F6305047456%3Fie%3DUTF8%26s%3Ddvd%26qid%3D1187908466%26sr%3D8-1&amp;tag=p086-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325">playing the show they want to see</a>.</li>
<li><u>Taking over residential networks</u>:  pirates do this too, but usually their reasons are less selfish as those of the ninjas.  Some may set up &#8220;bot&#8221; networks to attack others, but more often they will hack a neighbors router or internet access point and secure it.  Then, of course, they&#8217;ll use it for their own downloading but without the fear of other pirates or ninjas moving into the area and making a mess.</li>
<li><u>Destroying computers</u>:  the only people who can take more responsibility for destroying computers than pirates, are the owners themselves.  Yes, pirates will download those evil viruses they created to your hard drive and blow your computer to kingdom come.  Their only reason for doing this, is because they can.</li>
</ul>
<p>So, that&#8217;s the difference between pirates and ninjas.  If you remember the movie <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FHackers-Jonny-Lee-Miller%2Fdp%2F6305047456%3Fie%3DUTF8%26s%3Ddvd%26qid%3D1187908466%26sr%3D8-1&amp;tag=p086-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325">Hackers</a> then you&#8217;ll remember the scene where Crash Override (played by Johnny Lee Miller) and Acid Burn (played by Angelina Jolie) fight for control of the TV station.  Pure pirate versus ninja there.  Now you should be able to tell which character was which.  Now, which one are you?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomgbbq.net/?feed=rss2&amp;p=58</wfw:commentRss>
		</item>
		<item>
		<title>They said I have to reimage&#8230; but I don&#8217;t want to pay for it.</title>
		<link>http://www.zomgbbq.net/?p=50</link>
		<comments>http://www.zomgbbq.net/?p=50#comments</comments>
		<pubDate>Wed, 22 Aug 2007 22:34:22 +0000</pubDate>
		<dc:creator>corivus</dc:creator>
		
		<category><![CDATA[VPS/Dedicated Servers]]></category>

		<category><![CDATA[Tech Related]]></category>

		<guid isPermaLink="false">http://www.zomgbbq.net/?p=50</guid>
		<description><![CDATA[So you&#8217;ve been told that you now need to pay to have your virtual private server after technical support took a good long look inside your system.  They discovered for some odd reason that the cause of your site not showing up was because there is a corrupt file within your Plesk configuration.  [...]]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;ve been told that you now need to pay to have your virtual private server after technical support took a good long look inside your system.  They discovered for some odd reason that the cause of your site not showing up was because there is a corrupt file within your Plesk configuration.  But this means that now you have to pay some sort of fee that you don&#8217;t feel you should pay?</p>
<p>Unfortunately if your not on a managed server system which most people aren&#8217;t, yes you will need to pay for this.  But worry not, if your on a Virtual Private Server (VPS)  chances are you have Virtuozzo bundled into this package.  Why am I acting like its the end all trouble fixer in the end?  Because it is to a degree, there&#8217;s a feature within Virtuozzo that allows you to reimage your server in one foul swoop thus ending the woes that you may have to reimage your server.</p>
<p>Lets take a look at how to do this shall we?</p>
<p>Ok the first step you need to do is log into Virtuozzo, you should of received login information on how to get this, it had the username set as root and the password was something funny looking.  When you go to your url make sure you type it in like this, https://192.168.1.1:4643 once you type that in you&#8217;ll get a screen asking you for a username and password that looks something like this:</p>
<p style="text-align: center"><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzologinscreen.JPG" rel="”lightbox[virtuozzo]”"><img src="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzologinscreen.JPG" /></a></p>
<p> After you have done that you&#8217;ll get a loading screen with a few menu options, since we haven&#8217;t gone over this system as of yet in any of the walkthrough&#8217;s we are going to skip over down to where we need to go, I&#8217;ll define what each of these things do later on.  For the most part what you do see is the following below, which tells you how the vps itself is running currently.</p>
<p><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzomainscreen.JPG" rel="”lightbox[virtuozzo]”"></a></p>
<p style="text-align: center"><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzomainscreen.JPG" rel="”lightbox[virtuozzo]”"><img src="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzomainscreen.thumbnail.JPG" /></a></p>
<p>Click on Maintenance which will bring you to the next screen we will be going to:</p>
<p><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzomaintenance.JPG" rel="”lightbox[virtuozzo]”"></a></p>
<p style="text-align: center"><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzomaintenance.JPG" rel="”lightbox[virtuozzo]”"><img src="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzomaintenance.thumbnail.JPG" /></a></p>
<p>You&#8217;ll see three selections in this spot, all three of them a important for you, and one of them you should let run at least once, if your vps needs to be reimaged however it more then likely will not.  What I&#8217;m talking about is the Backup feature, which will create a backup of your vps that you can use later on to restore your site.  Use that option before you are getting into any trouble.  Because if you&#8217;ve taken anything from any of the walk throughs I&#8217;ve given you before, always make a backup!</p>
<p>But lets go to the next step with is that wonderful reimaging, so what you want to click on is &#8220;Reinstall VPS&#8221;.  This will take you to the next screen.</p>
<p><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzoreinstallintro.JPG" rel="”lightbox[virtuozzo]”"></a></p>
<p style="text-align: center"><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzoreinstallintro.JPG" rel="”lightbox[virtuozzo]”"><img src="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzoreinstallintro.thumbnail.JPG" /></a></p>
<p>This will ask you if you want to stop the VPS if its already running, you should always choose to stop the services on it before proceeding.  You want to check yes on this point and then click Next.  Once you click this it&#8217;ll stop the VPS before setting up the site, and take you to a new screen which will ask you a few questions.  Which you can see in the image below.</p>
<p><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzoreinstalloptions.JPG" rel="”lightbox[virtuozzo]”"></a></p>
<p style="text-align: center"><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzoreinstalloptions.JPG" rel="”lightbox[virtuozzo]”"><img src="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzoreinstalloptions.thumbnail.JPG" /></a></p>
<p>You can go one of several routes, with the four options.  For the most part you can preserve the existing content within a directory called /old  or you can just drop all the content all together.  If you choose to preserve the content you can keep the database password or drop the database password and generate a new one.</p>
<p>I chose to drop all the content since I want a fresh install of everything but if you don&#8217;t want to there will be a few extra options to choose from which deal with where to store and then you&#8217;ll be at the same step as me next which is the final confirmation asking you if you are really sure you want to do this.  And if you are do you know what your doing?</p>
<p><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzofinalcomfirmation.JPG" rel="”lightbox[virtuozzo]”"></a></p>
<p style="text-align: center"><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzofinalcomfirmation.JPG" rel="”lightbox[virtuozzo]”"><img src="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzofinalcomfirmation.thumbnail.JPG" /></a></p>
<p>Well of course since your following this article since you don&#8217;t want to pay to have your vps reinstalled.  Now you just wait, you can check your status when you look at the screen which will tell you what its doing.</p>
<p><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzoprogressreinstall.JPG" rel="”lightbox[virtuozzo]”"></a></p>
<p style="text-align: center"><a href="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzoprogressreinstall.JPG" rel="”lightbox[virtuozzo]”"><img src="http://www.zomgbbq.net/wp-content/uploads/2007/08/virtuozzoprogressreinstall.thumbnail.JPG" /></a></p>
<p>This should take a while, but once the reimage is finished you&#8217;ll be able to log back into plesk again using Virtuozzo and after you have done this you can go in and start reconfiguring your fresh vps.</p>
<p>If you have not noticed already I am using a new plugin to minimize on the excess space taken up by large screen shots, just click the thumbnails to navigate through the images and you can click close when your done or click back on the main screen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomgbbq.net/?feed=rss2&amp;p=50</wfw:commentRss>
		</item>
		<item>
		<title>Shared Hosting: What You Really Get</title>
		<link>http://www.zomgbbq.net/?p=48</link>
		<comments>http://www.zomgbbq.net/?p=48#comments</comments>
		<pubDate>Thu, 16 Aug 2007 02:26:43 +0000</pubDate>
		<dc:creator>mercutiom</dc:creator>
		
		<category><![CDATA[Shared Hosting]]></category>

		<category><![CDATA[Tech Related]]></category>

		<guid isPermaLink="false">http://www.zomgbbq.net/?p=48</guid>
		<description><![CDATA[If you are out there looking for web hosting you&#8217;ll find what seem to be a lot of great deals.  300GB of space and unlimited band width for $5.95 a month.  Unlimited space and bandwidth for $10.99 a month, etc., etc.
And while I can&#8217;t argue that they each sound like a great deal, [...]]]></description>
			<content:encoded><![CDATA[<p>If you are out there looking for web hosting you&#8217;ll find what seem to be a lot of great deals.  300GB of space and unlimited band width for $5.95 a month.  Unlimited space and bandwidth for $10.99 a month, etc., etc.</p>
<p>And while I can&#8217;t argue that they each sound like a great deal, what are they really selling?  Well, the simplest answer is &#8220;smoke and mirrors.&#8221;</p>
<p>Yes, just like David Copperfield, most shared hosting platforms are all about what you see and not what&#8217;s really going on on the back end.  But what does that mean?  What is shared hosting anyway?  And is there a way you can get what you&#8217;re promised?</p>
<p>Let me answer the questions backward, since that&#8217;s the more logical way to do so.  If you&#8217;re promised 300GB (which seems to be a basic offer these days) then you&#8217;re not ever going to get that much space.  Never!  I don&#8217;t care what the salesman promised you or what the Tech Support guy said.  You will never be able to use that much space.</p>
<p>And to be completely honest, you don&#8217;t need it.  If you think about this for a moment it makes sense.  Are you using all the space on the hard drive of your computer?  Probably not.  Will you ever use all the space on your hard drive?  Only if you&#8217;re a designer or a big gamer or do something in the technical field, in which case you don&#8217;t need to read this post because you know what I&#8217;m talking about.</p>
<p>Now, before I go on, let me go through some of the basics on Shared Hosting.  I believe my colleague  <a href="http://www.zomgbbq.net/?p=36" title="A few short words on levels of hosting">already went over this some</a>, but I&#8217;ll reiterate here.</p>
<blockquote><p><u><strong>Shared Hostin</strong><strong>g</strong></u>: an internet web hosting environment where several hundred accounts are located on the same server or server group.  There are (generally speaking) two ways that this can be done.</p>
<ol>
<li><u>Single Server Hosting</u>:  Multiple accounts and their files are located on one computer/server and are served from there to the internet.</li>
<li><u>Group Server Hosting</u>:  Multiple accounts and their files are spread out over multiple computers and servers that are tasked to support a specific portion of the website e.g., MySQL, email, HTTP, FTP.</li>
</ol>
</blockquote>
<p>Now I&#8217;m sure that sounds a little more complicated than it is, so in even more lay terms:</p>
<blockquote>
<ol>
<li><u>Single Server Hosting</u>:  Everything that is needed for your site including pictures, databases, emails, etc. are on one computer.</li>
<li><u>Group Server Hosting</u>:  The parts of the website that use different systems are divided amongst many computers. Pictures and files on one server, databases on another, and email on another, etc.</li>
</ol>
</blockquote>
<p>At this point we go back to our earlier reference to your personal computer.  If you have a brand new, ultra fast, highly priced computer sitting on your desk you probably only have a 250GB hard drive in it.  A hard drive that you haven&#8217;t even begun to fill up yet, and are probably questioning if and how you ever would.</p>
<p>Now your website is on a server that probably has some more storage than that.  Most servers these days have a minimum of 1TB (1000GB) of storage and are scalable up to several TeraBytes (TB).  But it&#8217;s not really going to matter how big the server is if you&#8217;re putting hundreds of accounts on there.  Cost alone would dictate that you can&#8217;t really offer that many people that much space for that little price.</p>
<p>Now the real question is, &#8220;Does it matter?&#8221;  You might say that, yes, you should get what you paid for.  I wouldn&#8217;t disagree with that myself, and you&#8217;d be hard pressed to find anyone in the tech field that would.  But if you honestly think about it, you&#8217;re never going to need that much space for a basic website.  Most websites stay below the 500MB mark and only start creeping over 1GB when they have an extensive photo gallery or music library.</p>
<p>By the time you do need that much space you would want to be on multiple dedicated servers located on several networks to ensure that if something goes wrong with one, you&#8217;ll have a backup available immediately.  You should also be making a hefty sum from your website and can afford this or you haven&#8217;t monetized correctly.</p>
<p>So why do you get the&#8221;smoke and mirrors&#8221; anyway?  Well, as with most things on the web these days, it&#8217;s all about marketing.  You the consumer want the most for your money, so we the provider make it look like you&#8217;ll get that.  It&#8217;s not strictly illegal, because you can use that space if you really really really want to, but there is likely another limitation or addendum that you&#8217;re not aware of to prevent you from doing so.</p>
<p>Some of the things that web hosts will do is limit the number of files you&#8217;re allowed to have.  Yes you can use 300GB, but you can only use 30,000 files total, so each file would have to be 10MB in size.  Those would be some really really big files and most browsers would take a long time to pull them up, regardless of your connection speed.</p>
<p>Some people will try to use that space to store music, or movies, or games, or whatever else.  Most web hosing companies are going to delete those files for copyright infringement, or because they&#8217;re not allowed per Terms of Service so I wouldn&#8217;t suggest trying that either.</p>
<p>Basically, with shared hosting you will get what you paid for.  I know that&#8217;s a cliché, but it&#8217;s still true.  If you&#8217;re looking for a site that can actually handle more space and a high load, you will have to shell out the dough for a Virtual Private or Dedicated server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomgbbq.net/?feed=rss2&amp;p=48</wfw:commentRss>
		</item>
		<item>
		<title>TLD&#8217;s&#8230;. is that the game where you flick the thing in the cup?</title>
		<link>http://www.zomgbbq.net/?p=47</link>
		<comments>http://www.zomgbbq.net/?p=47#comments</comments>
		<pubDate>Wed, 15 Aug 2007 23:53:24 +0000</pubDate>
		<dc:creator>corivus</dc:creator>
		
		<category><![CDATA[domains]]></category>

		<category><![CDATA[Tech Related]]></category>

		<guid isPermaLink="false">http://www.zomgbbq.net/?p=47</guid>
		<description><![CDATA[Actually a TLD is not an abbreviation for Tiddly Winks, it actually stands for something rather important.  It is short for Top Level Domain(TLD).   And it is the last part of a domain name, more specifically that portion after the url, for example zomgbbq.net the .net portion is the TLD.
The TLD is [...]]]></description>
			<content:encoded><![CDATA[<p>Actually a TLD is not an abbreviation for Tiddly Winks, it actually stands for something rather important.  It is short for Top Level Domain(TLD).   And it is the last part of a domain name, more specifically that portion after the url, for example zomgbbq<em><strong>.net</strong></em> the .net portion is the TLD.</p>
<p>The TLD is not case sensitive much like the domain name itself, so no mater how anyone types it, it will always come go to the address, and yes even if you wanted to type ZoMgBBq.neT or something to that sort.</p>
<p>Some of the different TLD&#8217;s are as follows, there are some newer ones which are either coming out or not as well know so I&#8217;ll list them below:</p>
<p>The first original ones that were created, back in the day 1985 if your curious, where these six.</p>
<ul>
<li>.com</li>
<li>.net</li>
<li>.org</li>
<li>.edu</li>
<li>.gov</li>
<li>.mil</li>
</ul>
<p>Aside from those there are many other types of TLD&#8217;s that have been created in the years that the internet has been around.   There are different meanings to each of these however since they were all created to make the web a bit more efficient but at the same time can cause confusion for people.  But I&#8217;ll list these too from the top of my head.</p>
<ul>
<li> .biz</li>
<li>.info</li>
<li>.mobi</li>
<li>.name</li>
<li>.travel</li>
<li>.jobs</li>
<li>.coop</li>
<li>.museum</li>
<li>.tel</li>
<li>.cat</li>
<li>.int</li>
<li>.pro</li>
</ul>
<p>These next ones are specific tlds that are restricted to the countries they are assigned to.  Many of them are ones you have seen while traveling on the internet and make sense, some of them, well you may not of known that they were country code TLD&#8217;s. For these ones I referenced the following website: <a href="http://www.iana.org/root-whois/index.html" title="The Internet Assigned Numbers Authority" target="_blank">IANA</a></p>
<ul>
<li>.ac  –  Ascension Island</li>
<li>.ad  –  Andorra</li>
<li>.ae  –  United Arab Emirates</li>
<li>.af  –  Afghanistan</li>
<li>.ag  –  Antigua and Barbuda</li>
<li>.ai  –  Anguilla</li>
<li>.al  –  Albania</li>
<li>.am  –  Armenia</li>
<li>.an  –  Netherlands Antilles</li>
<li>.ao  –  Angola</li>
<li>.aq  –  Antarctica</li>
<li>.ar  –  Argentina</li>
<li>.as  –  American Samoa</li>
<li>.at  –  Austria</li>
<li>.au  –  Australia</li>
<li>.aw  –  Aruba</li>
<li>.ax  –  Aland Islands</li>
<li>.az  –  Azerbaijan</li>
<li>.ba  –  Bosnia and Herzegovina</li>
<li>.bb  –  Barbados</li>
<li>.bd  –  Bangladesh</li>
<li>.be  –  Belgium</li>
<li>.bf  –  Burkina Faso</li>
<li>.bg  –  Bulgaria</li>
<li>.bh  –  Bahrain</li>
<li>.bi  –  Burundi</li>
<li>.bj  –  Benin</li>
<li>.bm  –  Bermuda</li>
<li>.bn  –  Brunei Darussalam</li>
<li>.bo  –  Bolivia</li>
<li>.br  –  Brazil</li>
<li>.bs  –  Bahamas</li>
<li>.bt  –  Bhutan</li>
<li>.bv  –  Bouvet Island</li>
<li>.bw  –  Botswana</li>
<li>.by  –  Belarus</li>
<li>.bz  –  Belize</li>
<li>.ca  –  Canada</li>
<li>.cc  –  Cocos (Keeling) Islands</li>
<li>.cd  –  Congo, The Democratic Republic of the</li>
<li>.cf  –  Central African Republic</li>
<li>.cg  –  Congo, Republic of</li>
<li>.ch  –  Switzerland</li>
<li>.ci  –  Cote d&#8217;Ivoire</li>
<li>.ck  –  Cook Islands</li>
<li>.cl  –  Chile</li>
<li>.cm  –  Cameroon</li>
<li>.cn  –  China</li>
<li>.co  –  Colombia</li>
<li>.cr  –  Costa Rica</li>
<li>.cu  –  Cuba</li>
<li>.cv  –  Cape Verde</li>
<li>.cx  –  Christmas Island</li>
<li>.cy  –  Cyprus</li>
<li>.cz  –  Czech Republic</li>
<li>.de  –  Germany</li>
<li>.dj  –  Djibouti</li>
<li>.dk  –  Denmark</li>
<li>.dm  –  Dominica</li>
<li>.do  –  Dominican Republic</li>
<li>.dz  –  Algeria</li>
<li>.ec  –  Ecuador</li>
<li>.ee  –  Estonia</li>
<li>.eg  –  Egypt</li>
<li>.eh  –  Western Sahara</li>
<li>.er  –  Eritrea</li>
<li>.es  –  Spain</li>
<li>.et  –  Ethiopia</li>
<li>.eu  –  European Union</li>
<li>.fi  –  Finland</li>
<li>.fj  –  Fiji</li>
<li>.fk  –  Falkland Islands (Malvinas)</li>
<li>.fm  –  Micronesia, Federated States of</li>
<li>.fo  –  Faroe Islands</li>
<li>.fr  –  France</li>
<li>.ga  –  Gabon</li>
<li>.gb  –  United Kingdom</li>
<li>.gd  –  Grenada</li>
<li>.ge  –  Georgia</li>
<li>.gf  –  French Guiana</li>
<li>.gg  –  Guernsey</li>
<li>.gh  –  Ghana</li>
<li>.gi  –  Gibraltar</li>
<li>.gl  –  Greenland</li>
<li>.gm  –  Gambia</li>
<li>.gn  –  Guinea</li>
<li>.gp  –  Guadeloupe</li>
<li>.gq  –  Equatorial Guinea</li>
<li>.gr  –  Greece</li>
<li>.gs  –  South Georgia and the South Sandwich Islands</li>
<li>.gt  –  Guatemala</li>
<li>.gu  –  Guam</li>
<li>.gw  –  Guinea-Bissau</li>
<li>.gy  –  Guyana</li>
<li>.hk  –  Hong Kong</li>
<li>.hm  –  Heard and McDonald Islands</li>
<li>.hn  –  Honduras</li>
<li>.hr  –  Croatia/Hrvatska</li>
<li>.ht  –  Haiti</li>
<li>.hu  –  Hungary</li>
<li>.id  –  Indonesia</li>
<li>.ie  –  Ireland</li>
<li>.il  –  Israel</li>
<li>.im  –  Isle of Man</li>
<li>.in  –  India</li>
<li>.io  –  British Indian Ocean Territory</li>
<li>.iq  –  Iraq</li>
<li>.ir  –  Iran, Islamic Republic of</li>
<li>.is  –  Iceland</li>
<li>.it  –  Italy</li>
<li>.je  –  Jersey</li>
<li>.jm  –  Jamaica</li>
<li>.jo  –  Jordan</li>
<li>.jp  –  Japan</li>
<li>.ke  –  Kenya</li>
<li>.kg  –  Kyrgyzstan</li>
<li>.kh  –  Cambodia</li>
<li>.ki  –  Kiribati</li>
<li>.km  –  Comoros</li>
<li>.kn  –  Saint Kitts and Nevis</li>
<li>.kp  –  Korea, Democratic People&#8217;s Republic</li>
<li>.kr  –  Korea, Republic of</li>
<li>.kw  –  Kuwait</li>
<li>.ky  –  Cayman Islands</li>
<li>.kz  –  Kazakhstan</li>
<li>.la  –  Lao People&#8217;s Democratic Republic</li>
<li>.lb  –  Lebanon</li>
<li>.lc  –  Saint Lucia</li>
<li>.li  –  Liechtenstein</li>
<li>.lk  –  Sri Lanka</li>
<li>.lr  –  Liberia</li>
<li>.ls  –  Lesotho</li>
<li>.lt  –  Lithuania</li>
<li>.lu  –  Luxembourg</li>
<li>.lv  –  Latvia</li>
<li>.ly  –  Libyan Arab Jamahiriya</li>
<li>.ma  –  Morocco</li>
<li>.mc  –  Monaco</li>
<li>.md  –  Moldova, Republic of</li>
<li>.me  –  Montenegro</li>
<li>.mg  –  Madagascar</li>
<li>.mh  –  Marshall Islands</li>
<li>.mk  –  Macedonia, The Former Yugoslav Republic of</li>
<li>.ml  –  Mali</li>
<li>.mm  –  Myanmar</li>
<li>.mn  –  Mongolia</li>
<li>.mo  –  Macao</li>
<li>.mp  –  Northern Mariana Islands</li>
<li>.mq  –  Martinique</li>
<li>.mr  –  Mauritania</li>
<li>.ms  –  Montserrat</li>
<li>.mt  –  Malta</li>
<li>.mu  –  Mauritius</li>
<li>.mv  –  Maldives</li>
<li>.mw  –  Malawi</li>
<li>.mx  –  Mexico</li>
<li>.my  –  Malaysia</li>
<li>.mz  –  Mozambique</li>
<li>.na  –  Namibia</li>
<li>.nc  –  New Caledonia</li>
<li>.ne  –  Niger</li>
<li>.nf  –  Norfolk Island</li>
<li>.ng  –  Nigeria</li>
<li>.ni  –  Nicaragua</li>
<li>.nl  –  Netherlands</li>
<li>.no  –  Norway</li>
<li>.np  –  Nepal</li>
<li>.nr  –  Nauru</li>
<li>.nu  –  Niue</li>
<li>.nz  –  New Zealand</li>
<li>.om  –  Oman</li>
<li>.pa  –  Panama</li>
<li>.pe  –  Peru</li>
<li>.pf  –  French Polynesia</li>
<li>.pg  –  Papua New Guinea</li>
<li>.ph  –  Philippines</li>
<li>.pk  –  Pakistan</li>
<li>.pl  –  Poland</li>
<li>.pm  –  Saint Pierre and Miquelon</li>
<li>.pn  –  Pitcairn Island</li>
<li>.pr  –  Puerto Rico</li>
<li>.ps  –  Palestinian Territory, Occupied</li>
<li>.pt  –  Portugal</li>
<li>.pw  –  Palau</li>
<li>.py  –  Paraguay</li>
<li>.qa  –  Qatar</li>
<li>.re  –  Reunion Island</li>
<li>.ro  –  Romania</li>
<li>.rs  –  Serbia</li>
<li>.ru  –  Russian Federation</li>
<li>.rw  –  Rwanda</li>
<li>.sa  –  Saudi Arabia</li>
<li>.sb  –  Solomon Islands</li>
<li>.sc  –  Seychelles</li>
<li>.sd  –  Sudan</li>
<li>.se  –  Sweden</li>
<li>.sg  –  Singapore</li>
<li>.sh  –  Saint Helena</li>
<li>.si  –  Slovenia</li>
<li>.sj  –  Svalbard and Jan Mayen Islands</li>
<li>.sk  –  Slovak Republic</li>
<li>.sl  –  Sierra Leone</li>
<li>.sm  –  San Marino</li>
<li>.sn  –  Senegal</li>
<li>.so  –  Somalia</li>
<li>.sr  –  Suriname</li>
<li>.st  –  Sao Tome and Principe</li>
<li>.su  –  Soviet Union (being phased out)</li>
<li>.sv  –  El Salvador</li>
<li>.sy  –  Syrian Arab Republic</li>
<li>.sz  –  Swaziland</li>
<li>.tc  –  Turks and Caicos Islands</li>
<li>.td  –  Chad</li>
<li>.tf  –  French Southern Territories</li>
<li>.tg  –  Togo</li>
<li>.th  –  Thailand</li>
<li>.tj  –  Tajikistan</li>
<li>.tk  –  Tokelau</li>
<li>.tl  –  Timor-Leste</li>
<li>.tm  –  Turkmenistan</li>
<li>.tn  –  Tunisia</li>
<li>.to  –  Tonga</li>
<li>.tp  –  East Timor</li>
<li>.tr  –  Turkey</li>
<li>.tt  –  Trinidad and Tobago</li>
<li>.tv  –  Tuvalu</li>
<li>.tw  –  Taiwan</li>
<li>.tz  –  Tanzania</li>
<li>.ua  –  Ukraine</li>
<li>.ug  –  Uganda</li>
<li>.uk  –  United Kingdom</li>
<li>.um  –  United States Minor Outlying Islands</li>
<li>.us  –  United States</li>
<li>.uy  –  Uruguay</li>
<li>.uz  –  Uzbekistan</li>
<li>.va  –  Holy See (Vatican City State)</li>
<li>.vc  –  Saint Vincent and the Grenadines</li>
<li>.ve  –  Venezuela</li>
<li>.vg  –  Virgin Islands, British</li>
<li>.vi  –  Virgin Islands, U.S.</li>
<li>.vn  –  Vietnam</li>
<li>.vu  –  Vanuatu</li>
<li>.wf  –  Wallis and Futuna Islands</li>
<li>.ws  –  Samoa</li>
<li>.ye  –  Yemen</li>
<li>.yt  –  Mayotte</li>
<li>.yu  –  Yugoslavia</li>
<li>.za  –  South Africa</li>
<li>.zm  –  Zambia</li>
<li>.zw  –  Zimbabwe</li>
</ul>
<p>With any of those many Country Codes out there they all have their own specific restrictions set on them.  For example, to own a .us domain name you can not have privacy on it and you also must have a residence or business within the United States.  With Taiwan you have to actually be living within the country or have an established base of business within the country before you can actually register a domain with their country code(.tw).</p>
<p>There are others out there still awaiting approval but you will probably not see them any time soon and it is not important to list them.  If you want to see those or find out about them  you can either check the website referenced within this article or do a search on Google to find them.</p>
<p>As always any comments or suggestions are welcomed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomgbbq.net/?feed=rss2&amp;p=47</wfw:commentRss>
		</item>
		<item>
		<title>Domain Snatching And Evil Registrars</title>
		<link>http://www.zomgbbq.net/?p=43</link>
		<comments>http://www.zomgbbq.net/?p=43#comments</comments>
		<pubDate>Fri, 03 Aug 2007 21:08:08 +0000</pubDate>
		<dc:creator>mercutiom</dc:creator>
		
		<category><![CDATA[domains]]></category>

		<category><![CDATA[Tech Related]]></category>

		<guid isPermaLink="false">http://www.zomgbbq.net/?p=43</guid>
		<description><![CDATA[One of my domain names is coming up for its annual renewal and I just got a letter in the mail from a company I&#8217;ve never heard of, what do I do?
Ah, yes, the domain snatchers are at it again.  Fishing for foolishness in a sea of naivety.  Hoping against hope that you [...]]]></description>
			<content:encoded><![CDATA[<p><em>One of my domain names is coming up for its annual renewal and I just got a letter in the mail from a company I&#8217;ve never heard of, what do I do?</em></p>
<p>Ah, yes, the domain snatchers are at it again.  Fishing for foolishness in a sea of naivety.  Hoping against hope that you fill out their form, write them a check, and mail it back in.</p>
<p>But who are these people and how do they know that your domain name is up for renewal?  Where did they get your personal address?  And what do they want with your domain name?</p>
<p>These companies are, in my opinion, scam artists.  Their goal is to get you to move from your current registrar and host to theirs.  Usually at a significant increase in price.</p>
<p>If you look closely at the paperwork that they send you, you will see things like, &#8220;This is not a bill,&#8221; or &#8220;you are not obliged to respond.&#8221;  Of course <em>these</em> notices are in 8pt font while, &#8220;Warning,&#8221; and &#8220;Important Notice About Your Domain,&#8221; are in 80pt. Red Italics to draw your attention.</p>
<p>How these companies get their information, e.g., your email address, home address, etc., is pretty simple.  You can do a <a href="http://ajaxdns.com" title="Ajax DNS" target="_blank">WhoIs</a> search on almost any domain name and pull that information publicly and legally.</p>
<p>As for the goals of these registration thieves, well that&#8217;s simple, to make money, of course.  By taking over the registration for the domain name, they can charge you a ginormous fee for the transfer and re-registration, thus making themselves lots of money.</p>
<p>But this is not the only thing that these companies will do.  Some companies will actually take over the ownership of the domain name and sell it off to the highest bidder.   This of course makes them a lot of money and at the same time kills any business you may have had.</p>
<p>It would also force you to track down the new owner of the domain name and try to purchase your own domain back from them, if they&#8217;re even willing to sell it.</p>
<p>Luckily there are  some things that you can do to protect yourself from these companies.  You, as the domain owner, so have the option of making this information private with your registrar, usually for a minimal fee.  This would help you avoid any unwanted mail and the potential of mistakenly transferring your domain.</p>
<p>Additionally, <a href="http://www.icann.org" title="The Internet Corporation of Assigned Names and Numbers" target="_blank">ICANN</a>, the Internet Corporation of Assigned Names and Numbers, also known as the Government of the Internet, has set up some additional steps in the last year to help you avoid unwanted domain transfer.</p>
<p>You are now required to obtain authorization codes from each registrar to ensure that you do indeed want to transfer your domain between companies.   You are also required to submit these codes via email to each registrar to allow the transfer to go through.</p>
<p>Of course this has only made it more difficult for these companies to operate, not impossible.  So set up that domain privacy and makes sure you read the fine print on anything you receive that deals with your domain name and website.  You, the domain owner, are your own best protection when it comes to this type of fraud.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomgbbq.net/?feed=rss2&amp;p=43</wfw:commentRss>
		</item>
		<item>
		<title>I registered my domain name at this registrar but I don&#8217;t like them&#8230;.how to transfer away</title>
		<link>http://www.zomgbbq.net/?p=42</link>
		<comments>http://www.zomgbbq.net/?p=42#comments</comments>
		<pubDate>Wed, 01 Aug 2007 21:53:20 +0000</pubDate>
		<dc:creator>corivus</dc:creator>
		
		<category><![CDATA[domains]]></category>

		<category><![CDATA[Tech Related]]></category>

		<guid isPermaLink="false">http://www.zomgbbq.net/?p=42</guid>
		<description><![CDATA[So this area has apparently gotten a lot of people confused, you signed up with this place because they seemed great but now they are saying you have to pay $37 to renew for a year!!!  But you only paid $2.95 for the domain name, not that much, and why should you need to [...]]]></description>
			<content:encoded><![CDATA[<p>So this area has apparently gotten a lot of people confused, you signed up with this place because they seemed great but now they are saying you have to pay $37 to renew for a year!!!  But you only paid $2.95 for the domain name, not that much, and why should you need to look at the sub fine print that stated that in between something about selling my soul away to this domain registrar.</p>
<p>Well they really aren&#8217;t going to take your soul away or anything like that but I can tell you one thing I know from working for several registrars, always read your fine print regarding your payment contract.  A lot of them are very straight forward and honest about their charges.  Others&#8230; well they might not be looking out with your best interests in mind.  So now you find yourself wanting to transfer away from them.  For the most part you should never ever have to pay a fee to your current registrar to transfer away from them.  You found Y registrar who has a very straight forward contract and you pay a fee to transfer your domain name to them,  this also gives you another year on top of what you have left over once you successfully transfer to them.</p>
<p>Your at the end of that dark scary road and almost to that shining light ahead, but wait you still have to do some things  before you can get into that shining beacon of light.  Lets go over these things real quick so that you won&#8217;t find yourself failing a transfer and having to wait possibly up to 60 days before you can transfer again, with certain registrars not all.</p>
<p><strong>Leave some time before you transfer over&#8230;</strong></p>
<p>On average you want to insure you have time left over before you can transfer your domain so it doesn&#8217;t fail.  For the most part this magical number isn&#8217;t just one, its a range, it lies somewhere between 12 and 14 days.  If you go any sooner then that you risk loosing your domain name to a redemption from your current registrar and having to pay even higher fees!  Redemptions are not fun trust me.</p>
<p>If you need to renew the domain name at the current registrar, then do so and try the transfer process after at least 30 days, because there are sometimes restrictions on when you can transfer from one registrar to another.  In some cases certain registrars don&#8217;t have restrictions on this, so you may not even need to wait.  Its always good to check with them first.  You can always transfer your domain name if you have more then 12 days left because when you transfer your domain any time you have will be carried over at the new registrar and and added to the time they are giving you.</p>
<p>I&#8217;m going to move on to the next section because now that we know how long we should give ourselves before transferring we now need to look at further information on what will help us in succeeding in transferring your domain name to another registrar other then just the time frame.</p>
<p><strong>Make sure the domain name isn&#8217;t locked&#8230;.</strong></p>
<p>Another thing that causes a transfer to fail is domain locking, its something that can be easily resolved however if you pay attention to what you need to do.  But lets see what you really have to do and why you need to do this in order to better understand this process.</p>
<p>Domain locking is the process through that prevents your domain name to be transfered, registered or otherwise altered for any of its functions by anyone other then the domain owner or the registrar through given permission.  This can be disabled very easily however by the owner of the domain name.</p>
<p>To do this you normally log into your registrar&#8217;s website and go to your domain controls and look for a section labeled <em><strong>Domain Locking</strong></em> or <em><strong>Domain Protect</strong></em> anything that sounds like that should be where your locking will be.  Once you are there you can disable it very easily by choosing this option.  This signifies that you can make a change to your name servers, begin a transfer process away from the registrar or update your WHOIS information for the domain.</p>
<p>If your registrar does not allow you to do this then you will have to contact them and have them disable the domain locking for your site.  Recently however there are some registrars that allow you to change your name servers and contact information.  This however does not always signify your domain name is unlocked.  So make sure you specify that you want your domain name unlocked when contacting your registrar.</p>
<p>Once this has been done you can now begin your transfer process and your registrar can go to the next step.  But hold on there is still one last thing you need to do.  But its a pretty easy one, as long as your information is up to date on your domain name.</p>
<p><strong>Remove Privacy on your domain&#8230;</strong></p>
<p>This is something that I will talk about only shortly, you will usually always have to contact your registrar to have this done, but make sure you remove domain privacy if you have it, otherwise the transfer letter will go to the privacy address and not to you.  This would be bad since it contains information you need in order to complete your transfer and it can not be sent anywhere else.</p>
<p><strong>The Authorization Code&#8230;.</strong></p>
<p>This is  another step that is often overlooked which is a shame because it normally signifies the end of the transfer process on your end and the time for your registrar to take over.  Basically this is a code that is a requirement of ICANN(Internet Corporation for Assigned Names and Numbers) to show that this transfer is in fact a legitimate transfer and the domain name is not being stolen from under someone.</p>
<p>You will receive this email via the administrative contact for your domain name, so if you have that set to something fake, invalid, misspelled or anything else that would make it inaccessible you will need to have it changed.  In some cases this will cause the transfer process to take longer so make sure you get that portion.</p>
<p>Once you have received this email which will come from your old registrar you will be able to either give this to your new registrar or enter it in yourself through a domain transfer control panel provided by the registrar.   At this point once you enter in the code it is giving your new registrar permission to take over the domain name and begin the process of transferring the domain name.</p>
<p>If you have followed all these steps, and given yourself time to transfer your domain name, ensured that your domain name is unlocked, and have received and entered in or given the authorization code to your registrar you should be seeing your domain name transferring over very shortly to your new provider.</p>
<p>As always leave a comment if you thought this was helpful or if you feel I should add more in.  And I&#8217;ll be sure to update this or respond to your messages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomgbbq.net/?feed=rss2&amp;p=42</wfw:commentRss>
		</item>
		<item>
		<title>DNS&#8230;.why does this hurt my mind?</title>
		<link>http://www.zomgbbq.net/?p=40</link>
		<comments>http://www.zomgbbq.net/?p=40#comments</comments>
		<pubDate>Tue, 31 Jul 2007 03:33:19 +0000</pubDate>
		<dc:creator>corivus</dc:creator>
		
		<category><![CDATA[DNS]]></category>

		<category><![CDATA[Tech Related]]></category>

		<guid isPermaLink="false">http://www.zomgbbq.net/?p=40</guid>
		<description><![CDATA[So many people get very confused when it comes to editing or making any kinds of changes to their DNS, one such situation I had was with a friend today trying to setup a sub domain:
Atlas:Okay, I&#8217;m a retard when it comes to DNS records
type?
A, CNAME, TXT, NS
??
corivus: hrmmmm what chu mean?
Atlas: For custom records [...]]]></description>
			<content:encoded><![CDATA[<p>So many people get very confused when it comes to editing or making any kinds of changes to their DNS, one such situation I had was with a friend today trying to setup a sub domain:</p>
<p><span chatdir="1"><span chatindex="523">Atlas</span></span>:Okay, I&#8217;m a retard when it comes to DNS records<br />
type?<br />
A, CNAME, TXT, NS<br />
??<br />
corivus: hrmmmm what chu mean?<br />
<span chatdir="1"><span chatindex="523">Atlas</span></span>: For custom records (making a subdomain)<br />
it has name, and then type<br />
corivus: a A record is what points the domain name to the server, the cname record in this case which you are going to be using, creates subdomains such as www, shop, mysubdomainiscool, etc.<br />
txt is for reverse dns and NS is your nameservers<br />
<span chatdir="1"><span chatindex="523">Atlas</span></span>: <img src='http://www.zomgbbq.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' /><br />
corivus: so you want to add a cname which would look something like this<br />
subdomain name [in CNAME] ADDRESS<br />
<span chatdir="1"><span chatindex="523">Atlas</span></span>: <strong>curls up in a ball </strong>testing</p>
<p>This kind of confusion happens a lot when your trying to configure your DNS mostly because people don&#8217;t know what it is and when they are given instructions on how to do these things they assume they have to change everything or know everything about it.  When doing this inherently they will make a call to a hosting provider wondering why his site no longer shows up but his email works.</p>
<p>Lets try and first define DNS for those of you who absolutely need to know what it is, as defined in wikipedia DNS or Domain Name System, is the process which servers as a type of &#8220;phone book&#8221; for the internet, it translates human-readable computer host names, e.g. en.wikipedia.org into the IP address that network equipment needs to deliver information.  It also Stores other information such as the list of mail servers to accept mail for the given domain name.</p>
<p>So now you know the definition of what this does, but it doesn&#8217;t tell you what all these records are, lets take a look at what a standard dns record will look like if your doing a dns lookup for all the records of the domain.  For the sake of time I&#8217;ll use a screen shot of what this site looks like when you do a lookup:</p>
<p style="text-align: center"><img src="http://www.zomgbbq.net/wp-content/uploads/2007/07/dnszomgbbq.JPG" alt="dnszomgbbq.JPG" /></p>
<p>Ok so we have all these cool numbers and things in here but they don&#8217;t make any sense at all.  Lets define what each of these records mean so that you can better understand them.  And get a feel of what to do in the future:</p>
<p><strong>A Record</strong>: The A record does a few things, but the main thing that it does for you the end user is point your domain name to your website.  That is the job of the primary a record, you have other A records which do many things from controlling your name server record to defining your mail record.</p>
<p><strong>MX Record</strong>: a mx record or <em><strong>Mail Exchanger</strong></em> record specifies how email is routed from one point to the other and also identifies the mail server which is handling email for the domain name.</p>
<p><strong>CNAME Record</strong>: a cname or <em><strong>canonical name record</strong></em> is a means of naming one address to another within a server for example, you want to setup shop.zomgbbq.net in order to do this you must create a cname of shop pointing to the address of your hosting account or service where you are wanting it to go to.</p>
<p><strong>NS Record</strong>: A NS record or name server record, maps a domain name to the listed DNS within the server to translate the domain name from 192.168.1.1 to zomgbbq.net for instance.</p>
<p><strong>PTR Record</strong>:the PTR or <em><strong>Pointer Record</strong></em> maps the IP4 record to the canonical name record for the host.</p>
<p><strong>SOA Record</strong>: A SOA or <em><strong>Start of Authority Record</strong></em> specifies the DNS server providing the authoritative information about the domain name, the email of the administrator of the domain, the serial number of the domain name and the timers relating to the domain name as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomgbbq.net/?feed=rss2&amp;p=40</wfw:commentRss>
		</item>
		<item>
		<title>Scope Is Not Just A Mouthwash</title>
		<link>http://www.zomgbbq.net/?p=37</link>
		<comments>http://www.zomgbbq.net/?p=37#comments</comments>
		<pubDate>Sat, 28 Jul 2007 04:17:55 +0000</pubDate>
		<dc:creator>mercutiom</dc:creator>
		
		<category><![CDATA[Tech Related]]></category>

		<guid isPermaLink="false">http://www.zomgbbq.net/?p=37</guid>
		<description><![CDATA[Being in the Tech industry I get a lot of questions about how things work.  A lot of the time people expect me to have answers to every possible computer question simply because I work on this crazy place called the internet.
Hey, I know you&#8217;re just my web guy, but I&#8217;m having a problem [...]]]></description>
			<content:encoded><![CDATA[<p>Being in the Tech industry I get a lot of questions about how things work.  A lot of the time people expect me to have answers to every possible computer question simply because I work on this crazy place called the internet.</p>
<p><em>Hey, I know you&#8217;re just my web guy, but I&#8217;m having a problem with my computer, it won&#8217;t show a picture when I turn it on and it makes his funny humming noise.  What&#8217;s that mean?</em></p>
<p>Well, I have no idea.  I&#8217;m not going to claim to have a clue, because I haven&#8217;t built a computer in over five years and that means that I might as well have not built one at all.</p>
<p><em>What?  You mean you don&#8217;t know?  But I thought that&#8217;s what you did for a living!</em>  <em>Aren&#8217;t you working on a computer all day?  How can you NOT know?!?!??!</em></p>
<p>Well, yes, I do work at a computer all day long, but then doesn&#8217;t almost everybody?  In fact when is the last time you walked into an office and didn&#8217;t see a computer on almost every desk?</p>
<p><em>But how can you not know, you do all that stuff with websites and blogs and emails and all that?</em></p>
<p>Let me explain it to you the best way I know how, through our recent Real Estate analogy.</p>
<p><em>Not that thing again.</em></p>
<p>So your moved into this nice happy house, and things are going well when all the sudden the pipes burst and you&#8217;ve got water up to your ankles in the basement.  So who ya gonna call?</p>
<p><em>Uh, the Ghostbusters?</em></p>
<p>No not the Ghostbusters, you call the Carpenter.  By your theory anyone involved in the construction industry must know about fixing houses, so go get the phone book.  Hurry up this water is getting deeper.</p>
<p><em>Well I was joking but no, you call a plumber carpenters can&#8217;t fix a leak.</em></p>
<p>So you&#8217;re saying that people can specialize in different areas within an industry? It&#8217;s allowed?  Then why would I, a code geek and blogger, know anything about your monitor not working.</p>
<p><em>OK, I see your point, but I have no idea, so I&#8217;m sure you know someone who can fix this for me, right?</em></p>
<p>Well, sure I have lots of friends who can probably fix it, but they wouldn&#8217;t be able to write a blog post or fix a website.</p>
<p><em>Alright, I think I get it.  So just because you like computer stuff doesn&#8217;t mean you know everything about computers.</em></p>
<p>Exactly.  It&#8217;s all a matter of scope really.  Different people understand and work on different things.  And by the way, your video card is probably fried and you&#8217;ll need to buy and install a new one.</p>
<p><em>You know you&#8217;re a jerk, right.</em></p>
<p>I love you too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zomgbbq.net/?feed=rss2&amp;p=37</wfw:commentRss>
		</item>
	</channel>
</rss>
