I decided to install .

Joomla! Downloads - Download Joomla! 5.0.0

Joomla 5.0


  • example on a php file:
  • Installation backing up the site and the database: see
  • Site Backup

Verification of all extensions and plugins: compatibility with the disable non-compatible plugins/extensions, e.g.: v5.x

We can help each other

  1. AND directly disable extensions

myqsl

UPDATE 'jom50_extensions' SET 'enabled' = '0' WHERE 'jom50_extensions'.'name' like '%jcomments%'; UPDATE 'jom50_extensions' SET 'enabled' = '0' WHERE 'jom50_extensions'.'name' like '%attach%';

  • UPDATE `jom50_extensions` SET `enabled` = '0' WHERE `jom50_extensions`.`name` like '%iyosis%';
    • ...

UPDATE 'jom50_extensions' SET 'enabled' = '0' WHERE 'jom50_extensions'.'name' like '%kunena%';

  • UPDATE 'jom50_extensions' SET 'enabled' = '0' WHERE 'jom50_extensions'.'name' like '%cloud%';

UPDATE 'jom50_extensions' SET 'enabled' = '0' WHERE 'jom50_extensions'.'name' like '%JEV%'; Renommage des classes Jxxx (à partir de J3.8)

copying the old directory to a new directory, and duplicating the database. at OVH I have several databases. I saved the database, renamed the tables with a prefix jom50_ and recreated the database
jooma_5. Updating extensions

it is necessary to add aliases for all Joomla classes in third-party plugins and components

  1. cf

JApplicationHelper

Joomla\CMS\Application\ApplicationHelper{weblink |link=https://github.com/JLTRY/Xmap/releases/tag/V4.0}use Joomla\CMS\Application\ApplicationHelper as JApplicationHelper;