Skip to content

Instantly share code, notes, and snippets.

@mbabker
Last active November 11, 2022 20:11
Show Gist options
  • Star 62 You must be signed in to star a gist
  • Fork 19 You must be signed in to fork a gist
  • Save mbabker/d7bfb4e1e2fbc6b7815a733607f89281 to your computer and use it in GitHub Desktop.
Save mbabker/d7bfb4e1e2fbc6b7815a733607f89281 to your computer and use it in GitHub Desktop.

Post-Manual Update Script

If you have found yourself in a scenario where you cannot update Joomla! via the Joomla! Update Component and need to perform a manual update for any reason whatsoever, this script will assist with performing all necessary steps that would be taken after the update component runs the updates on the filesystem.

This script assumes that you have manually extracted the update package over your site and are ready to finish the update. You should trigger this script immediately after this process and before logging into your site's admin to do anything else, including the "database fix" routine.

To use this script, you should copy the postupdate.php file to your site's administrator directory. You can either access this script via a web request (https://www.example.com/administrator/postupdate.php) or from the command line interface (php /path/to/administrator/postupdate.php).

This script will run the "finalise" and "cleanup" steps from the update component, which performs such tasks as any database migrations and the removal of old files from your installation.

Once complete, you should immediately remove this script from your server.

<?php
/**
* @package Joomla.Administrator
*
* @copyright Copyright (C) 2016 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
/**
* Define the application's minimum supported PHP version as a constant so it can be referenced within the application.
*/
define('JOOMLA_MINIMUM_PHP', '5.3.10');
if (version_compare(PHP_VERSION, JOOMLA_MINIMUM_PHP, '<'))
{
die('Your host needs to use PHP ' . JOOMLA_MINIMUM_PHP . ' or higher to run this version of Joomla!');
}
/**
* Constant that is checked in included files to prevent direct access.
* define() is used in the installation folder rather than "const" to not error for PHP 5.2 and lower
*/
define('_JEXEC', 1);
// Load the administrator application's path constants
if (file_exists(__DIR__ . '/defines.php'))
{
include_once __DIR__ . '/defines.php';
}
if (!defined('_JDEFINES'))
{
define('JPATH_BASE', __DIR__);
require_once JPATH_BASE . '/includes/defines.php';
}
require_once JPATH_BASE . '/includes/framework.php';
require_once JPATH_BASE . '/includes/helper.php';
// Account for moved JToolbarHelper class in 3.9
if (file_exists(JPATH_BASE . '/includes/toolbar.php'))
{
require_once JPATH_BASE . '/includes/toolbar.php';
}
else
{
require_once JPATH_BASE . '/includes/subtoolbar.php';
}
// Boot JApplicationAdministrator so the application references in the factory resolve correctly.
JFactory::getApplication('administrator');
// Set the component path (un)constants
define('JPATH_COMPONENT', JPATH_ADMINISTRATOR . '/components/com_joomlaupdate');
define('JPATH_COMPONENT_ADMINISTRATOR', JPATH_ADMINISTRATOR . '/components/com_joomlaupdate');
define('JPATH_COMPONENT_SITE', JPATH_SITE . '/components/com_joomlaupdate');
// Load the update component's model to run the cleanup methods
JModelLegacy::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR . '/models', 'JoomlaupdateModel');
/** @var JoomlaupdateModelDefault $model */
$model = JModelLegacy::getInstance('default', 'JoomlaupdateModel');
// Make sure we got the model
if (!($model instanceof JoomlaupdateModelDefault))
{
echo 'Could not load update component model, please check the logs for additional details.' . PHP_EOL;
exit(1);
}
// Load up the logger
JLog::addLogger(
array(
'format' => '{DATE}\t{TIME}\t{LEVEL}\t{CODE}\t{MESSAGE}',
'text_file' => 'joomla_update.php',
),
JLog::INFO,
array('Update', 'databasequery', 'jerror')
);
JLog::add('Starting manual update using postupdate', JLog::INFO, 'Update');
// Load the Joomla library and update component language files
JFactory::getLanguage()->load('lib_joomla');
JFactory::getLanguage()->load('com_joomlaupdate');
JLog::add(JText::_('COM_JOOMLAUPDATE_UPDATE_LOG_FINALISE'), JLog::INFO, 'Update');
// Finalize the update
if ($model->finaliseUpgrade() === false)
{
echo 'Failed to finalize the upgrade, please check the logs for additional details.' . PHP_EOL;
exit(1);
}
JLog::add(JText::_('COM_JOOMLAUPDATE_UPDATE_LOG_CLEANUP'), JLog::INFO, 'Update');
// Cleanup after the update
$model->cleanUp();
JLog::add(JText::sprintf('COM_JOOMLAUPDATE_UPDATE_LOG_COMPLETE', JVERSION), JLog::INFO, 'Update');
JLog::add('Finished manual update using postupdate', JLog::INFO, 'Update');
echo 'Update to ' . JVERSION . ' completed successfully.' . PHP_EOL;
@LazarBaruk
Copy link

Very impressive.
Very.
Thanks.

@GrapGat
Copy link

GrapGat commented Nov 28, 2018

I keep getting the HTTP 500 Error no matter what I try, I have tried the automatic update, the manual why described above, and still getting the same error. Am I doing something wrong?

@schultz-it-solutions
Copy link

Line 39 require_once JPATH_BASE . '/includes/toolbar.php';
needs to be changed to
require_once JPATH_BASE . '/includes/subtoolbar.php';

@mbabker
Copy link
Author

mbabker commented Dec 24, 2018

The script has been updated to account for the changes in 3.9.

@Legallity
Copy link

Legallity commented Dec 29, 2018

you forgot a ; at: require_once JPATH_BASE . '/includes/subtoolbar.php'

@Legallity
Copy link

also the script doesnt work for me, it still gives me the following error:
Error displaying the error page: Call to undefined method JLanguageHelper::parseIniFile(): Call to undefined method JLanguageHelper::parseIniFile()

@scoutdubna
Copy link

I have 6 Joomla sites of various ages and now transferring them to a new server running php7 so I need to upgrade. All have been successful using the manual system to upgrade to Joomla 3.9.4 except for one which is being stubborn. On running the postupdate.php script I am getting the following errors. Can anyone point me in the right direction please?

PHP Notice: Undefined index: HTTP_HOST in /var/www/HITACHI/gss/joomla_gss /libraries/joomla/application/web.php on line 869
PHP Notice: Undefined index: HTTP_HOST in /var/www/HITACHI/gss/joomla_gss /libraries/joomla/uri/uri.php on line 96

I am running the script using the command line via PUTTY.

Copy link

ghost commented May 6, 2019

Array to string conversion in /home/vol15_8/byethost11.com/b11_23862066/htdocs/hemi/libraries/joomla/registry/registry.php on line 342

@Mister-A
Copy link

Mister-A commented Aug 8, 2019

I love you 😄 ❤️

Saved my bacon, works a treat!

@schultz-it-solutions
Copy link

Thank you Mike!
I am using this script (since 2016) in a complex multisite environment to automate the update for several dozen websites in one swoop - this saves me a ton of work!!!

Just one suggestion: you should include the "github" link within the sourcecode (as a comment) and maybe even a version number or "date-last-changed").

@gistamelandy
Copy link

where Postupdate. PHP is located? I searched in cpanel, but did not find it. Please help me

@carlitorweb
Copy link

Something similar for J4?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment