Archive for August, 2007

Ensim friendly phpMyAdmin upgrade 2.11.0 (final)

This one is easy to do, and is 100% Ensim compatible. This will also work as a stand alone application. Side note: the 2.11 series is the last series that will support php4. Afterwards, php5 will be the only thing considered.

SSH into the server as root,

cd /root
rm -f upgrade_phpMyAdmin
wget http://www.customensimbackup.com/download/upgrade_phpMyAdmin
chmod 700 upgrade_phpMyAdmin
./upgrade_phpMyAdmin

Enjoy!

2 Comments »

Proftpd error – IPv6 getaddrinfo ‘localhost’ error:

This nasty little error pops up when restarting proftpd on a virgin machine and a clean install. Another easy fix for this.
Just use the following and replace $HOST with the FQDN (fully qualified domain name) and replace the $HOSTSHORT with the actual name of the machine. For example: hostname.somedomain.com hostname

::1 localhost6.localdomain6 localhost6 $HOST $HOSTSHORT

No Comments »

Ensim friendly phpMyAdmin upgrade 2.11.0-rc1

This one is easy to do, and is 100% Ensim compatible. This will also work as a stand alone application. Side note: the 2.11 series is the last series that will support php4. Afterwards, php5 will be the only thing considered.

SSH into the server as root,

cd /root
rm -f upgrade_phpMyAdmin
wget http://www.customensimbackup.com/download/upgrade_phpMyAdmin
chmod 700 upgrade_phpMyAdmin
./upgrade_phpMyAdmin

Enjoy!

No Comments »

How to change the time zone for a particular site

Steps involved:
1) Make a copy of the original
2) Run “timeconfig”, and pick the timezone and accept. This creates a new /etc/localtime file with this timezone.
3) copy the new /etc/localtime to the users domain: domain.com (remember to change this)
4) restore your real timezone file:

cp /etc/localtime /etc/localtime.save
timeconfig
cp /etc/localtime /home/virtual/domain.com/etc/localtime
cp /etc/localtime.save /etc/localtime

No Comments »