What is the method for beta testing a copy of a production moodle

What is the method for beta testing a copy of a production moodle

by n - -
Number of replies: 3
Is there an explanation somewhere of how to clone the existing site, so that it can be tested on the new version?
Average of ratings: -
In reply to n -

Re: What is the method for beta testing a copy of a production moodle

by Anthony Borrow -
Picture of Core developers Picture of Plugin developers Picture of Testers
Essentially think of it as a restore of your production site except to the location where your test server is. In other words, restore the database and restore a copy of the production site moodledata folders. Adjust your config.php file so that it uses the test database and the restored moodledata folders. It is a nice way of testing your restore process. You may want to take a look at: http://docs.moodle.org/en/Backup_FAQ

Peace - Anthony
In reply to Anthony Borrow

Re: What is the method for beta testing a copy of a production moodle

by Séverin Terrier -
Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Testers Picture of Translators
I think that you should better read :
http://docs.moodle.org/en/Moodle_migration

Hope this helps...
In reply to Séverin Terrier

Re: What is the method for beta testing a copy of a production moodle

by Séverin Terrier -
Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Testers Picture of Translators
Note also that when testing a copy of a Moodle production site, you don't want Moodle to send mails to people, so you should disable it with this line in config.php :
$CFG->noemailever = true;

See MDL-13483 for details smile

Hope this helps