Trouble Shooting†[edit]
Install[edit]
Install で Unicode のエラー (ちゃんとデータベースは utf8mb4 になっているのに...)[edit]
All data must be stored in Unicode format (UTF-8). For new installations, the database must have UTF-8 as default character set. If you are upgrading, you need to follow the UTF-8 migration process.
すべてのデータはユニコードフォーマット (UTF-8) で保存する必要があります。新しいインストールの場合、データベースのデフォルト文字セットをUTF-8にする必要があります。アップグレードする場合、あなたはUTF-8移行処理に従う必要があります。
- config.php の $CFG->dboptions['dbcollation'] を 'utf8mb4_unicode_ci' に変更する.
$CFG->dboptions = array (
'dbpersist' => 0,
'dbport' => '',
'dbsocket' => '',
'dbcollation' => 'utf8mb4_unicode_ci',
);
Asynchronous backups disabled[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;
}