GPTranslate

GPTranslate 2.26

Нет прав на скачивание
  • Создатель Темы Создатель Темы sarisan
  • Дата начала Дата начала
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,
 
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
 
Последнее изменение:

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

🤢
😊
 
Последнее изменение:
Вверх