Backup IMAP with Horde Webmail, or Outlook or Thunderbird Email Client

Overview Overview Horde Imap Configuration for thunderbird Thunderbird Plugin Thunderbird backup creation Thunderbird backup import Microsoft Outlook Backing up email locally onto your computer can be achieved through creating a backup of said email accounts through the email clients. Horde webmail allows a simple way of doing this, but you must have a client that […]

MySQL Configuration

I’ve been screwing up mysql configurations left and right.  Nothing really harmful just not efficient.  Not enough ram allocated to the right configurations. http://www.mysqlperformanceblog.com/2014/01/28/10-mysql-settings-to-tune-after-installation/ http://mysql.rjweb.org/doc.php/memory Two great resources for reading about how to properly configure mysql. Checking how much ram you need simple.  You just need a few mysql commands to get you the numbers. […]

Well I figured it out!

GTmetrix analyzes your website and you can see how many requests are being processed through GET commands to the web server. I just had to edit my .htaccess file. The inital load has 11 requests but the subsequent ones now have much less because gzip compression and mainly browser caching have been added to the […]

How do you configure that?

Before clicking on this page I had 0 connections open to my server. root@host [~]# netstat -plan|grep :80|awk {‘print $5’}|cut -d: -f 1|sort|uniq -c|sort -nk 1 1 1 0.0.0.0 1 127.0.0.1 Now I have 20. root@host [~]# netstat -plan|grep :80|awk {‘print $5’}|cut -d: -f 1|sort|uniq -c|sort -nk 1 1 1 0.0.0.0 1 69.16.208.35 20 23.28.18.128 […]