4.3.1 To 4.3.2 Upgrade > How To Disable Automatic Database Backup While Updating

It is available since version 4.3.6 and if DEVELOPMENT mode is enabled. For service packs, it is enabled by default, even without DEVELOPMENT mode, but I cannot remember since which one version.

But is it ok for DEVELOPMENT mode to be enabled (even temporarily) on a live / production eShop?

It will be better to enable it for your IP address only. Something like this:

if ($_SERVER['REMOTE_ADDR'] === 'your ip address') {
    define('DEVELOPMENT', true);
}
1 Like