Mageworx SEO Suite Ultimate extension for Magento 2

Thanks for update
Does the module work correctly for everyone? On my Magento 2.4.7-p3 the SEO section settings are not saved - it says Invalid file name
magento2/app/code/Magento/Config/Model/Config/Backend/File.php
from
PHP:
private function setValueAfterValidation(string $value): void
{
    if (preg_match('/[^a-z0-9_\/\\-\\.]+/i', $value)
        // phpcs:ignore Magento2.Functions.DiscouragedFunction
        || !$this->_mediaDirectory->isFile($this->_getUploadDir() . DIRECTORY_SEPARATOR . basename($value))
    ) {
        throw new LocalizedException(__('Invalid file name'));
    }
    $this->setValue($value);
}

to
PHP:
private function setValueAfterValidation(string $value): void
{
if (preg_match('/[^a-z0-9_\/\\-\\.]+/i', $value)
// phpcs:ignore Magento2.Functions.DiscouragedFunction
|| !$this->_mediaDirectory->isFile($this->_getUploadDir() . DIRECTORY_SEPARATOR . basename($value))
    ) {
throw new LocalizedException(__('Invalid file name: "%1".', $value));
    }
$this->setValue($value);
}
 
Top