WordPress is God. Except better… as it is real
I run a lot of websites and frequently use wordpress as the basis of these sites. It is often quicker and easier to install WordPress than to fire up Dreamweaver. The power in WordPress is the ability of 3rd party plugins to transform the humble blogging platform in a tool for every occasion. Here are some of my favourite Plugins Read the rest of this entry »
it was damned hard work finding this information so for anyone else trying to find it… here you go..
This information and information for a whole lot of other makes and models was eventually found here
Found this great script for automatically backing up local mysql databases to local backup storage. Details can be found in this post
The scripts itself lives here:
http://sourceforge.net/projects/automysqlbackup/files/
http://www.freespeedtest.com/
very handy for convincing your hosting company that there really is a problem.
First, make sure procmail is installed on your server, and change to this directory:
/var/qmail/mailnames/yourdomain.com/yourusername/
Inside that directory, drop in a .procmailrc file which contains the following:
MAILDIR=/var/qmail/mailnames/yourdomain.com/yourusername/Maildir
DEFAULT=${MAILDIR}/
SPAMDIR=${MAILDIR}/.Junk/
:0
* ^X-Spam-Status: Yes.*
${SPAMDIR}
Once that file is in place, move the .qmail file out of the way, and replace it with this:
| /usr/local/psa/bin/psa-spamc accept
|preline /usr/bin/procmail -m -o .procmailrc
Any changes you or your users make in plesk will over write this!
To get around this change the file attributes to immutable:
# chattr +i .qmail .procmailrc
Credit for this trick goes to Russ Wittmann.
-
./pear upgrade-all
-
rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*
in
/app/design/frontend/default/modern/template/page/html/header.phtml
comment out
<!– <img src=”<?php echo $this->getSkinUrl(‘images/side_logo_promo.gif’) ?>” alt=”" class=”side-logo-promo”/> –>
Using the modern theme to create a menu like http://www.cl-floraldesigns.co.uk
Memo to self:
To back up the databases in shell via ssh do:
mysqldump -h localhost -u xxxxx -p db_name > backup-file.sql
restore with
mysql -h localhost -u xxxxx -p db_name < backup-file.sql

