GPTranslate

GPTranslate 2.26

No permission to download
thank you! I found them, copied all of them to com_gptranslate folder of my site but I stil can not get the component in my admin panel, the finder does not see it either.
so, I have the admin part, the plugins, the module, but not the component.
when trying to install through installer, get error saying wrong Joomla version package as it is Joomla 3.10.2
how should I install it there?
 
thank you! I found them, copied all of them to com_gptranslate folder of my site but I stil can not get the component in my admin panel, the finder does not see it either.
so, I have the admin part, the plugins, the module, but not the component.
when trying to install through installer, get error saying wrong Joomla version package as it is Joomla 3.10.2
how should I install it there?
I guess I missunderstand, so the module only, no component there?
 
The component folder can`t be empty,
 
i checked plugin code .this version was request minimum joomla release 4.0
Thanks, but the developer`s site says it is compatible with Joomla 3, that is sort of frustrating.
 
installscript.php code
PHP:
    function preflight(string $type, InstallerAdapter $parent): bool {
        // Check for Joomla compatibility
        if(version_compare(JVERSION, '4', '<')) {
            Factory::getApplication()->enqueueMessage (Text::sprintf('COM_GPTRANSLATE_INSTALLING_VERSION_NOTCOMPATIBLE', JVERSION), 'error');
            if(version_compare(JVERSION, '3.10', '<')) {
                Factory::getApplication()->enqueueMessage (Text::sprintf('Error, installation aborted. Pay attention! You are attempting to install a component package for Joomla 4 that does not match your actual Joomla version. Download and install the correct package for your Joomla %s version.', JVERSION), 'error');
            }
            return false;
        }
        return true;
    }

maybe his other verision was support J3.but 2.x was not
 
Last edited:

This member @EvgenD contributed to the discussion at post #20 with a short message.

🤢
😊
 
Last edited:
Top