Thats Tops: whatever I think about as cool enough to blog it

Choose a Topic:

Posts Tagged ‘media temple’

Wordpress 2.5

Friday, April 4th, 2008

Those insiders reaching this blog might get aware about in seconds, for all others I perhaps should mention that it is running on Wordpress.

When I started with this blog I wanted something basic and easy, to ensure a quick and painless start with my new site. Not having and making too much effort with it, as for it wasn’t really planned to do.
It was more or less just an actual “mood thingy” I grasped for, when I got aware about the offer to request a new “sponsored” and therefor cheap new domain combinde with the new hosting I took with Media Temple.

Nevertheless this blog is now running for nearly 3 month and I’m still happy about blogging … curious eh?!

In between I have alread updated the underlaying Wordpress twice (it is me loving to run on recent and actual versions) and both updates worked like a charm! Especially about that upgrade to Wordpress 2.5 (it’s out for 6 days now) I did yesterday, I was a bit curious about whether or not it could force trouble.

Far away from that! Hey guys, you did a great job writing these update instruction and routines …. The one only question I have …. is about: What is really new at the end? The design of the admin area?! ;-)

Doing it yourself

Wednesday, January 30th, 2008

Unfortunately there seems to be no sunshine without shade! So even moving to Media Temple was easy doing and since being there I had no issues anymore, I started to feel annoyed about them not offering a working home directory backup utility like the prior provider did within his CPanel.

Just I thought complaining about will not really help you to get your back-ups done and so I decidedĀ  to write my own little replacement script for it. Perhaps someone will be happy using it too …

#!/bin/bash
# FTP Backup by Michael Lohmar
# Script: ftpbackup.sh
# Author: Michael Lohmar
# Contact? info@mikelo.com

if [ $# != 3 ];then
echo “”
echo “Shell script for backing up one given domain.”
echo “Usage: $(basename $0) domain_to_backup [FTP/NOFTP] [DEL/NODEL]”
echo “”
exit
fi

version=1.0

##### INSTALL INSTRUCTIONS: STEP 1 #####
##### START ENTER YOUR INFO HERE #####

serverip=yourserver.com
# Your remote servers IP address
# EG: serverip=192.168.1.1

serveruser=youruser
# The FTP login for the remote server
# EG: serveruser=bob

serverpass=yourpassword
# The FTP password for the remote server
# EG: serverpass=mypassword

localdir=/home/your/local/folder
# WHERE LOCAL FILES ARE TO BACKUP
# NO TRAILING SLASH
# EG: localdir=/backup/folder/daily

sourcedir=/home/your/source/folder
# WHERE LOCAL FILES ARE TO BACKUP
# NO TRAILING SLASH
# EG: localdir=/domain/source/folder

remotedir=your/remote/folder
# FTP directory where you want to save files to
# This directory must exist on the FTP server!
# NO TRAILING SLASH
# EG: remotedir=/serverdirectory

##### END YOUR INFO HERE #####

##### INSTALL INSTRUCTIONS: STEP 2 #####
# CHMOD the script to 755: # chmod 755 ftpbackup.sh

# Add the script to a scheduled cron job to run as often as you like (if wished!)

# In SSH do crontab -e, then paste in the following
# 0 6 * * 0,1,3,5 /home/admin/ftpbackup.sh
# This does a FTP backup every second day of the week, lookup cronjobs for more info on setting dates and times.
# Don’t forget to substitue the path info to the script with your details
##### INSTALL COMPLETE #####
# DO NOT MODIFY ANYTHING BELOW #

host=`hostname`
cd $sourcedir

echo “Starting FTP Backup on ” $host

# Creating a local tar.gz Archive
tar cfvz $localdir/$1_`date +%y_%m_%d`.tar.gz $1

# Transfer the tar.gz Archive to remote server
if [ $2 == FTP ];then
cd $localdir
echo “user $serveruser $serverpass
cd $remotedir
bin
verbose
put $1_`date +%y_%m_%d`.tar.gz
” | ftp -i -n $serverip
fi

# Delete local tar.gz Archive again
if [ $3 == DEL ];then
rm $localdir/$1_`date +%y_%m_%d`.tar.gz
fi

echo “Ftp backup complete on ” $host
exit 0

All is good!?

Wednesday, January 23rd, 2008

I have spoken with my friend today. After our earlier chat about the hosting, she also had decided to take out new hosting and we both moved over to MT now. Glad to hear her moving turned out similar painless than mine. :-)

Me and a Blog?!

Wednesday, January 16th, 2008

Taking out new hosting recently was a quick made decission. After looking at things for a while, submitting countless tickets complaining about their downhill going service and reliability and finally coming back from a longer trip and seeing things haven’t changed for me it was a plain must to go on.

Discussing new hosting possibilities with a friend brought up Media Temple as a possible option to choose. Reading through their pages and finding out about they do grid-Hosting finally was the trigger to choose them.

Moving an existing domain or grabbing their offer to register a new one for less? Why are things never easy?!
Anyway you can’t have to much domains and as for the reason that this new hosting was falling together with something else I’m very much happy about I was the opinion “THATS TOPS” and my new blog was born. ;-)