Joomla 3 to Joomla 5 Migration

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Joomla 3 to Joomla 5 Site Migration

Joomla 3 reached EOL in August 2023. Joomla 4 and 5 use new architecture (PSR-4, Namespaces, DI Container) incompatible with Joomla 3 extensions. Migration requires updating all extensions and rewriting custom code.

Migration Strategy

Option 1: Staged Update — J3 → J4 → J5. Pre-Update Check tool helps identify incompatible extensions at each step.

Option 2: Clean J5 Installation — install J5 from scratch, migrate only content and configuration. Template and extensions — new compatible versions. Faster if many outdated extensions.

Pre-Update Check

Components → Joomla! Update → Pre-Update Check. Shows:

  • Extensions without J4/J5-compatible version
  • Deprecated PHP functions in custom code
  • Obsolete database tables

J3 → J4: Direct Update

# 1. Via web updater (if all extensions compatible)
# Components → Joomla! Update → install Joomla 4.x

# 2. Fix incompatible extensions before updating
# Find J4-compatible versions or remove

# 3. After update
php cli/joomla.php database:update

J4 → J5: Update

# Joomla 5 requires PHP 8.1+
php -v  # check version

# Update via updater
# Components → Joomla! Update → Joomla 5.x

Content Migration on Clean Installation

// Export content from J3
// Use com_content data export or direct SQL dump

// jos_content table structure is identical in J3/J4/J5 — direct import works
// But: some fields changed, need verification

// Import via CLI:
php cli/joomla.php import:content --file /tmp/content-export.sql

Templates: Joomla 3 → 5

J3 templates are not compatible with J5. J5 requires templates based on new Bootstrap 5 API or Cassiopeia.

Popular template builders with J5 support:

  • Helix Ultimate — open source
  • Astroid Framework
  • YOOtheme Pro

Custom Extension Migration

Custom Joomla 3 components require refactoring:

// J3 (outdated):
$db = JFactory::getDbo();
$user = JFactory::getUser();
$app = JFactory::getApplication();

// J5 (correct):
$db = \Joomla\CMS\Factory::getDbo();
$user = \Joomla\CMS\Factory::getApplication()->getIdentity();
$app = \Joomla\CMS\Factory::getApplication();

// Namespaces
namespace MyCompany\Component\Catalog\Site\Controller;
use Joomla\CMS\MVC\Controller\BaseController;

Timeline

Site Type Duration
Information site (content only, standard extensions) 3–5 days
Medium site with several custom extensions 2–4 weeks
Large portal with com_virtuemart / K2 Pro / custom code 1–2 months