GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   going premium with wordpress part 1 of 2 (https://gfy.com/showthread.php?t=879564)

Sarah_Jayne 01-06-2009 06:31 AM

very nice...I now need a tool to help me go look at all of these without taking up too much time :)

Sarah_Jayne 01-06-2009 06:34 AM

Also..what I think I need is something that will easily backup my blog (posts, settings, etc) and then reinstall it somewhere else. There are times I have near panic attacks at the thought of having to move hosts and not knowing what to do to make transferring the blogs intact as painless and as quick as possible.

adult-help 01-06-2009 07:27 AM

Sarah, try this http://wordpress.org/extend/plugins/wp-db-backup/.

fris 01-06-2009 08:04 AM

Code:

#!/usr/bin/bash

date="`eval date +%Y%m%d`";
mysqluser="mysqluser"
mysqlpass="mysqlpassword"
mysqldb="blogdatabase"
backupsource="/home/user/public_html/"
backupdest="/home/user/backups/"

echo "creating database backup"
mysqldump -q -e -h localhost -u ${mysqluser} -p${mysqlpass} ${mysqldb} | gzip - > ~/${backupdest}${date}_db-backup.sql.gz
echo "done"
echo "creating file system backup"
cd ~/${backupsource}
tar cf - . | gzip - > ~/${backupdest}${date}_files.tar.gz
echo "done"
echo "wordpress backup complete"

handy shell script I use

martinsc 01-06-2009 08:27 AM

great thread, fris :thumbsup

ideaworx 01-08-2009 12:23 AM

thanks for the infos there fris, good stuff

Brujah 01-08-2009 12:28 AM

Have you tried using SVN to easily update multiple blogs?
http://codex.wordpress.org/Installin...ith_Subversion

Does the Export (xml) tool grab everything or does it miss important data? If it grabs everything in an xml format, can this be automated from commandline?

selena 01-08-2009 05:15 AM

Quote:

Originally Posted by fris (Post 15286661)
yes it does, but only per blog basis.

wpautoinstaller can upgrade all blogs with one click, plus install new ones without grabbing wordpress and ftping.

its a centralized utility to manage all your installs/upgrades from.

That is uber sweet.

Killer thread, fris, thanks for sharing the info. :thumbsup

adult-help 01-08-2009 05:41 AM

Hi, Fris. May I publish this tut at www.adult-help.com giving you all the credits?

fris 01-08-2009 07:04 AM

Quote:

Originally Posted by adult-help (Post 15297704)
Hi, Fris. May I publish this tut at www.adult-help.com giving you all the credits?

yep no problem.

Kard63 01-10-2009 02:20 PM

I'm eager to check out the review plugin. thanks for the links!


All times are GMT -7. The time now is 03:32 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123