Problem Description
Hi, In moodle 4.1.4 with php 8.1 when I update a plugin via command line it takes several hours, before it took minutes.I have checked Server -> Environment and everything is fine.If I do a strace to see what the process is doing I see the following, for example:access("/var/www2/medusa/evagd/test_evagd/lib/editor/tinymce/plugins/moodlemedia/db/caches.php", F_OK) = -1 ENOENT (No such file or directory)access("/var/www2/medusa/evagd/test_evagd/lib/editor/tinymce/plugins/moodlenolink/db/caches.php", F_OK) = -1 ENOENT (No such file or directory)access("/var/www2/medusa/evagd/test_evagd/lib/editor/tinymce/plugins/pdw/db/caches.php", F_OK) = -1 ENOENT (No such file or directory)access("/var/www2/medusa/evagd/test_evagd/lib/editor/tinymce/plugins/recordrtc/db/caches.php", F_OK) = -1 ENOENT (No such file or directory)access("/var/www2/medusa/evagd/test_evagd/lib/editor/tinymce/plugins/spellchecker/db/caches.php", F_OK) = -1 ENOENT (No such file or directory)access("/var/www2/medusa/evagd/test_evagd/lib/editor/tinymce/plugins/tiny_mce_wiris/db/caches.php", F_OK) = -1 ENOENT (No such file or directory)access("/var/www2/medusa/evagd/test_evagd/lib/editor/tinymce/plugins/wrap/db/caches.php", F_OK) = -1 ENOENT (No such file or directory)access("/var/www2/medusa/evagd/test_evagd/admin/tool/log/store/database/db/caches.php", F_OK) = -1 ENOENT (No such file or directory)access("/var/www2/medusa/evagd/test_evagd/admin/tool/log/store/legacy/db/caches.php", F_OK) = -1 ENOENT (No such file or directory)access("/var/www2/medusa/evagd/test_evagd/admin/tool/log/store/standard/db/caches.php", F_OK) = -1 ENOENT (No such file or directory)access("/var/www2/medusa/evagd/test_evagd/lib/db/caches.php", F_OK) = 0openat(AT_FDCWD, "/var/www2/medusa/evagd/test_evagd/lib/db/caches.php", O_RDONLY) = 7fstat(7, {st_mode=S_IFREG|0755, st_size=20316, ...}) = 0read(7, "<?php\n// This file is part of Mo"..., 20316) = 20316close(7) = 0access("/var/www2/medusa/evagd/test_evagd/availability/condition/completion/db/caches.php", F_OK) = 0openat(AT_FDCWD, "/var/www2/medusa/evagd/test_evagd/availability/condition/completion/db/caches.php", O_RDONLY) = 7fstat(7, {st_mode=S_IFREG|0755, st_size=1174, ...}) = 0read(7, "<?php\n// This file is part of Mo"..., 1174) = 1174close(7) = 0access("/var/www2/medusa/evagd/test_evagd/availability/condition/grade/db/caches.php", F_OK) = 0openat(AT_FDCWD, "/var/www2/medusa/evagd/test_evagd/availability/condition/grade/db/caches.php", O_RDONLY) = 7fstat(7, {st_mode=S_IFREG|0755, st_size=1518, ...}) = 0read(7, "<?php\n// This file is part of Mo"..., 1518) = 1518Can you help me?
AI-Generated Solution
Powered by LMSouq AI · GPT-4.1-mini
Analyzing problem and generating solution…
Was this solution helpful?