Trouble Shooting†[edit]
Moodle 4.20 + PHP 8.2 で configlockmappings Deprecated のエラー†[edit]
- cache/classes/config.php の L42辺りに #[AllowDynamicProperties] を追加
何てこったい! admin のパスワードを忘れちまった!†[edit]
- php (moodle path)/admin/cli/reset_password.php でリセットできる.
Failed to unserialise data from file. Either failed to read, or failed to write.†[edit]
- Execute script purgecaches to reset the cache system.
- php /moodle/admin/cli/purge_caches.php
- Remove all files and directories unde directory /moodledata/cache
Information from https://coderwall.com/p/py-nba/moodle-easy-solution-to-failed-to-unserialise-data-from-file-either-failed-to-read-or-failed-to-write
Fatal error: $CFG->dataroot is not writable, admin has to fix directory permissions! Exiting.†[edit]
PHP Parse error: syntax error, unexpected '[' in /home/apache/moodle-3.1.0/lib/outputrenderers.php on line 112†[edit]
- 画面が真っ白
- yum が勝手に PHP関連のライブラリを更新(バージョンダウン)しちゃったせい
- 使用している PHP の入れ直し.
利用可能なアップデートデータを取得できません - 不明なURLエラーです。†[edit]
- 小テストの統計の各設問表示でPHPのエラー
- 2.6.2 では問題なし
- question/classes/statistics/responses/analysis_for_class.php
- $onlyactualresponse はクラスインスタンスなのに (string)$onlyactualresponse とか してる.おいおい.
--- analysis_for_class.php.orig 2014-05-15 15:31:31.938393184 +0900
+++ analysis_for_class.php 2014-05-15 15:32:04.524281160 +0900
@@ -107,7 +107,8 @@
return true;
} else if (count($this->actualresponses) == 1) {
$onlyactualresponse = reset($this->actualresponses);
- return (string)$onlyactualresponse != $this->modelresponse;
+ return !$onlyactualresponse->response_matches($this->modelresponse);
+ //return (string)$onlyactualresponse != $this->modelresponse;
}
return false;
}