After setting up HotPot I can't open homepage

Re: After setting up HotPot I can't open homepage

by Gordon Bateson -
Number of replies: 0
Picture of Core developers Picture of Peer reviewers Picture of Plugin developers

Hi Tatyana,
thanks for the screenshots. Moodle is looking for this file:

  • question/format/hotpot/version.php

but it cannot find, or at least it cannot read it.

Probably you have put the hotpot folder in the wrong place. Maybe you have put the version.php here:

  • question/format/hotpot/hotpot/version.php

Please could you confirm the following:

  • there is a file at "question/format/hotpot/version.php" on your moodle site
  • the file contains the following:

    defined('MOODLE_INTERNAL') || die();

    if (empty($plugin) || ! is_object($plugin)) {
    $plugin = new stdClass();
    }

    $plugin->component = 'qformat_hotpot';
    $plugin->maturity = MATURITY_STABLE; // = 200
    $plugin->release = 'v2.0.8';
    $plugin->requires = 2010112400; // Moodle 2.0
    $plugin->version = 2010112408;

regards
Gordon