Üdvözlet!
Olyan problémába futottam bele sajnos, hogy a moodle frissítése után (https://download.moodle.org/releases/latest/) az alábbi hibaüzenetet dobja a moodle belépés után: "HIBA!!! A használt kód RÉGEBBI, mint az ezen adatbázisok létrehozásához használt verzió." Erre a linkre lehet csak kattintani: https://docs.moodle.org/400/en/error/moodle/downgradedcore Viszont ez nem sokat segített sajnos. Mind a version.php-ben mind pedig a mdl_config táblában a verziók egyformák. A frissítést git pull-al végeztem, mint mindig.
sudo git pull
hint: Pulling without specifying how to reconcile divergent branches is
hint: discouraged. You can squelch this message by running one of the following
hint: commands sometime before your next pull:
hint:
hint: git config pull.rebase false # merge (the default strategy)
hint: git config pull.rebase true # rebase
hint: git config pull.ff only # fast-forward only
hint:
hint: You can replace "git config" with "git config --global" to set a default
hint: preference for all repositories. You can also pass --rebase, --no-rebase,
hint: or --ff-only on the command line to override the configured default per
hint: invocation.
Already up to date.
/var/www/html/moodle$ sudo -u www-data php admin/cli/upgrade.php
A telepített 4.0+ (Build: 20220506) (2022041900.04) verziót nem szükséges frissíteni
sudo git status
On branch MOODLE_400_STABLE
Your branch is up to date with 'origin/MOODLE_400_STABLE'.
nothing to commit, working tree clean
version.php:
defined('MOODLE_INTERNAL') || die();
$version = 2022041900.04; // 20220419 = branching date YYYYMMDD - do not modify!
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.
$release = '4.0+ (Build: 20220506)'; // Human-friendly version name
$branch = '400'; // This version's branch.
$maturity = MATURITY_STABLE; // This version's maturity level.
MDL_Table:
select id,name,value from mdl_config where value like '202%';
+----+----------------+---------------+
| id | name | value |
+----+----------------+---------------+
| 30 | version | 2022041900.04 |
+----+----------------+---------------+
1 row in set (0.001 sec)
Nagyon köszönöm a segítséget!