| Server IP : 186.64.123.29 / Your IP : 216.73.217.94 Web Server : LiteSpeed System : Linux house.hostinglat.cl 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : tuemp9827 ( 1016) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/tuempresavirtual.cl/public_html/wp-content/plugins/webp-express/lib/migrate/ |
Upload File : |
<?php
namespace WebPExpress;
use \WebPExpress\Config;
use \WebPExpress\Messenger;
use \WebPExpress\Option;
function webpexpress_migrate12() {
$config = Config::loadConfigAndFix(false); // false, because we do not need to test if quality detection is working
/*
if (($config['destination-extension'] == 'set') && ($config['destination-folder'] == 'mingled')) {
DismissableMessages::addDismissableMessage('0.15.1/problems-with-mingled-set');
Messenger::addMessage(
'error',
'WebP Express is experiencing technical problems with your particular setup. ' .
'Please <a href="' . Paths::getSettingsUrl() . '">go to the settings page</a> to fix.'
);
}*/
$forceHtaccessRegeneration = true;
$result = Config::saveConfigurationAndHTAccess($config, $forceHtaccessRegeneration);
if ($result['saved-both-config']) {
Option::updateOption('webp-express-migration-version', '12');
} else {
Messenger::addMessage(
'error',
'Failed migrating webp express options to 0.15.1. Probably you need to grant write permissions in your wp-content folder.'
);
}
}
webpexpress_migrate12();