Moodle/Trouble Shooting
をテンプレートにして作成
[
トップ
] [
タイトル一覧
|
ページ一覧
|
新規
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
** Trouble Shooting [#pb17590c]
*** Install
**** Install で Unicode のエラー (moodle-4.5.3+)(ちゃん...
<pre>
All data must be stored in Unicode format (UTF-8). For ne...
すべてのデータはユニコードフォーマット (UTF-8) で保存する...
</pre>
- config.php の $CFG->dboptions['dbcollation'] を 'utf8mb...
<pre>
$CFG->dboptions = array (
'dbpersist' => 0,
'dbport' => '',
'dbsocket' => '',
// 'dbcollation' => 'utf8mb4_uca1400_ai_ci',
'dbcollation' => 'utf8mb4_unicode_ci',
);
</pre>
- 元々の utf8mb4_uca1400_ai_ci ってなんでしょう?
-- Moodle-4.4.7+ では utf8mb4_uca1400_ai_ci でも通る.
-- utf8mb4_uca1400_ai_ci は半角,全角を区別しない,および...
-- 要 ちゃんと調査(2025/4/4)
*** Upgrade
**** column「communication->contextid」を修正できませ...
- データベースにアップグレード先のファイルが存在する.
- データバースを空にして,restore する.
*** Asynchronous backups disabled
- 管理メニュー -> コース -> 非同期バックアップ/リストア
*** Moodle 4.20 + PHP 8.2 で configlockmappings Deprecat...
- cache/classes/config.php の L42辺りに ''#[AllowDynamicP...
*** 何てこったい! admin のパスワードを忘れちまった! [#o...
- php (moodle path)/admin/cli/reset_password.php でリセ...
*** Failed to unserialise data from file. Either failed t...
+ Execute script purgecaches to reset the cache system.
++ php /moodle/admin/cli/purge_caches.php
+ Remove all files and directories unde directory /moodle...
Information from [[https://coderwall.com/p/py-nba/moodle-...
*** Fatal error: $CFG->dataroot is not writable, admin ha...
- パーミッションが正しくとも,[[SELinux]] が有効だと起きる
*** PHP Parse error: syntax error, unexpected '[' in /ho...
- 画面が真っ白
- yum が勝手に PHP関連のライブラリを更新(バージョンダウ...
- 使用している PHP の入れ直し.
*** 利用可能なアップデートデータを取得できません - 不明な...
- see http://docs.moodle.org/24/en/SSL_certificate_for_mo...
- http://curl.haxx.se/ca/cacert.pem から cacert.pem をダ...
*** 2.6.3 [#u46e2536]
- 小テストの統計の各設問表示でPHPのエラー
- 2.6.2 では問題なし
- question/classes/statistics/responses/analysis_for_clas...
- $onlyactualresponse はクラスインスタンスなのに (string)...
--- analysis_for_class.php.orig 2014-05-15 15:31:31.9383...
+++ analysis_for_class.php 2014-05-15 15:32:04.5242...
@@ -107,7 +107,8 @@
return true;
} else if (count($this->actualresponses) == 1) {
$onlyactualresponse = reset($this->actualre...
- return (string)$onlyactualresponse != $this...
+ return !$onlyactualresponse->response_match...
+ //return (string)$onlyactualresponse != $th...
}
return false;
}
終了行:
** Trouble Shooting [#pb17590c]
*** Install
**** Install で Unicode のエラー (moodle-4.5.3+)(ちゃん...
<pre>
All data must be stored in Unicode format (UTF-8). For ne...
すべてのデータはユニコードフォーマット (UTF-8) で保存する...
</pre>
- config.php の $CFG->dboptions['dbcollation'] を 'utf8mb...
<pre>
$CFG->dboptions = array (
'dbpersist' => 0,
'dbport' => '',
'dbsocket' => '',
// 'dbcollation' => 'utf8mb4_uca1400_ai_ci',
'dbcollation' => 'utf8mb4_unicode_ci',
);
</pre>
- 元々の utf8mb4_uca1400_ai_ci ってなんでしょう?
-- Moodle-4.4.7+ では utf8mb4_uca1400_ai_ci でも通る.
-- utf8mb4_uca1400_ai_ci は半角,全角を区別しない,および...
-- 要 ちゃんと調査(2025/4/4)
*** Upgrade
**** column「communication->contextid」を修正できませ...
- データベースにアップグレード先のファイルが存在する.
- データバースを空にして,restore する.
*** Asynchronous backups disabled
- 管理メニュー -> コース -> 非同期バックアップ/リストア
*** Moodle 4.20 + PHP 8.2 で configlockmappings Deprecat...
- cache/classes/config.php の L42辺りに ''#[AllowDynamicP...
*** 何てこったい! admin のパスワードを忘れちまった! [#o...
- php (moodle path)/admin/cli/reset_password.php でリセ...
*** Failed to unserialise data from file. Either failed t...
+ Execute script purgecaches to reset the cache system.
++ php /moodle/admin/cli/purge_caches.php
+ Remove all files and directories unde directory /moodle...
Information from [[https://coderwall.com/p/py-nba/moodle-...
*** Fatal error: $CFG->dataroot is not writable, admin ha...
- パーミッションが正しくとも,[[SELinux]] が有効だと起きる
*** PHP Parse error: syntax error, unexpected '[' in /ho...
- 画面が真っ白
- yum が勝手に PHP関連のライブラリを更新(バージョンダウ...
- 使用している PHP の入れ直し.
*** 利用可能なアップデートデータを取得できません - 不明な...
- see http://docs.moodle.org/24/en/SSL_certificate_for_mo...
- http://curl.haxx.se/ca/cacert.pem から cacert.pem をダ...
*** 2.6.3 [#u46e2536]
- 小テストの統計の各設問表示でPHPのエラー
- 2.6.2 では問題なし
- question/classes/statistics/responses/analysis_for_clas...
- $onlyactualresponse はクラスインスタンスなのに (string)...
--- analysis_for_class.php.orig 2014-05-15 15:31:31.9383...
+++ analysis_for_class.php 2014-05-15 15:32:04.5242...
@@ -107,7 +107,8 @@
return true;
} else if (count($this->actualresponses) == 1) {
$onlyactualresponse = reset($this->actualre...
- return (string)$onlyactualresponse != $this...
+ return !$onlyactualresponse->response_match...
+ //return (string)$onlyactualresponse != $th...
}
return false;
}
ページ名: