Version error?

Re: Version error?

by Gordon Bateson -
Number of replies: 0
Picture of Core developers Picture of Peer reviewers Picture of Plugin developers
Mandy,
thank you very much for sending me the access information. I have modified your Moodle database, so that it is back to how it should be in order for the install of the HotPot module for Moodle 1.6 to work.

Please now do the following:
  1. download the HotPot module for Moodle 1.6 from here:
http://bateson.kanazawa-gu.ac.jp/moodle/hotpot-module.2.1.x.zip replace your current "mod/hotpot" folder with the files in the above zip. There is no need to move across the "lang" and "pix" folders included in the above zip file.login as administrator to your Moodle sitepoint your browser at the "admin/index.php" page on your Moodle siteThe install should be short and successful.

good luck!
Gordon

For reference, here are the MySQL commands I used to reset the HotPot tables and settings in your Moodle database:

## remove "md5key" field and index from "hotpot_questions" table
ALTER TABLE `mdl_hotpot_questions` DROP INDEX `hotpot_questions_md5key_idx`;
ALTER TABLE `mdl_hotpot_questions` DROP `md5key`;

## remove "md5key" field and index from "hotpot_strings" table
ALTER TABLE `mdl_hotpot_strings` DROP INDEX `hotpot_strings_md5key_idx`;
ALTER TABLE `mdl_hotpot_strings` DROP `md5key`;

## adjust version number for HotPot module
UPDATE `mdl_modules` SET `version` = '2006080700' WHERE `name` = 'hotpot';