Old Server
mysqldump -u root -p wikidb > wikidb.sql tar -cvf wiki.tar wiki ;this is the wiki folder on document root
- mysqldump -u root -p wikidb > wikidb.sql
- tar -cvf wiki.tar wiki ;this is the wiki folder on document root
New Server:
create database wikidb; this is inside mysql, Note that both mysql versions should be same. grant create, select, insert, update, delete, lock tables on wikidb.* to wiki@localhost identified by 'YourPassword' ;
- create database wikidb; this is inside mysql, Note that both mysql versions should be same.
- grant create, select, insert, update, delete, lock tables on wikidb.* to wiki@localhost identified by 'YourPassword' ;
MediaWiki Upgrade
copy all the new files to wiki folder and then run php update.php from maintenance folder after updating AdminSettings.php
More Information
http://www.mediawiki.org/wiki/Manual:Moving_a_wiki