October 7, 2024, Monday, 280

MediaWiki On OSX

From NeoWiki

Revision as of 10:54, 13 November 2007 by Neo (Talk | contribs)
Jump to: navigation, search

To transfer a whole running MediaWiki box from Debian to Mac OSX(10.4.10), follow the steps:

  • Backup the database in Debian.
mysqldump -ac --add-drop-table --user="wikiuser" --password="blahblah" wikidb |gzip -f > ~/wikidb.gz
  • Backup all uploaded staff in Debian.
sudo tar czf  /var/lib/mediawiki1.7/upload ~/upload.tar.gz
  • Transfer these two backup files to OSX by SFTP or whatever.
  • Prepare required env in OSX.
  • Download the newest MediaWiki pack from the official site.
  • Unpack MediaWiki to /Library/WebServer/Documents/mediawiki-*.*.*, and a good habit is to make a soft link 'wiki' to it, which allow you to manage multi-version of MediaWiki more comfortable.
  • Open CocoaMySQL, add DB, add user, give it privileges, and import wikidb from the backup.
  • Open Safari and access: http://localhost/wiki and follow the common setup steps(change config folder permission, etc.), and the end the script will check and upgrade the database, let it be. When it ends, do NOT go to the home page yet for now.
  • Move LocalSettings.php to up one level, make wiki/images folder writable to apache user.
  • Unpack the whole upload.tar.gz and move all the content(many folder named '0' '1' 'A' etc. and 'thumb' 'archives' and so on) under the upload/ folder to wiki/images folder.
  • Now go to http://localhost/wiki and get all the old stuff back!