Archive

Archive for the ‘hosting’ Category

Case Insensitive Table And Column Names In MySQL

April 15th, 2009

While you should always uphold the case-sensitive tablenames, it can be troublesome when migrating from a host that had this option enabled (table & column names become case insensitive), to a host that doesn’t have this option – so you suddenly find yourself “stuck” with case sensitive table and column names. For instance when migrating from a Windows environment, to a Linux environment.

Table ‘database.TableName’ doesn’t exist (because the table “tablename” exists, without capitals)

To solve this, edit your /etc/my.cnf file and add the following line:

set-variable = lower_case_table_names=1

Restart your MySQLd.

service mysqld restart
or
/etc/init.d/mysqld restart

There are some serious consequences to this change, which are best explained on this page; MySQL case insensitive table and column names. And if you’re thinking of using this in combination with Plesk’s Control Panel; don’t. You’ll break Plesk’s functionality, and receive continuous notices that the server’s SMTP server is down, even though it’s not. This is because Plesk performs its checks using a case sensitive database, and those checks fail once you revert to a case insensitive system.

Matti hosting , ,

There’s No Such Thing As Unlimited

February 2nd, 2009

un-lim-it-ed [uhn-lim-i-tid]
–adjective
1. not limited; unrestricted; unconfined: unlimited trade.
2. boundless; infinite; vast: the unlimited skies.
3. without any qualification or exception; unconditional.

Here’s the short version: it simply doesn’t exist, because nothing is unlimited

And especially not a webhosting company that claims “unlimited bandwidth” or “unlimited diskspace”, such as Dreamhost or Servage.

It’s not my intention to burn both companies into the ground, because I’m sure *something* about them is good – but it’s ment to raise questions about their “unlimited” part, and the business model they encompass. Read more…

Matti hosting , ,