If by “modules” you mean Sentora 3rd-party modules hosted at 264bit, compatibility depends heavily on module age and whether they rely on deprecated APIs. Many older modules built for v1 or early v2 may break under newer PHP or database versions.
Best steps:
Best steps:
- Test modules in a staging clone first before putting into production.
- Look at module code for calls to deprecated PHP functions (e.g.
) and adapt them toCode:mysql_*
or PDO.Code:mysqli
- If a module fails, consider rewriting it or finding a maintained alternative.