nikifalex Posted September 27, 2017 Share Posted September 27, 2017 Есть очень часто используемая модификация localcopy.ocmod.xml так вот в ней есть такой код foreach (glob($next) as $file) { if (is_dir($file)) { $path[] = $file . '/*'; } $files[] = $file; } Они не учли что glob может работать не так как думали http://php.net/manual/en/function.glob.php On some systems it is impossible to distinguish between empty match and an error. Т.е. иногда будет пустой массив, а иногда то будет false И если в устанавливаемом дополнении будет пустой каталог внутри, то будет warning и json parser error Исправляется просто добавлением if (glob($next)) { вначале. Исправленная версия ниже. Может кому-то пригодится. localcopy.ocmod.xml 11 Link to comment Share on other sites More sharing options... nikifalex Posted September 27, 2017 Author Share Posted September 27, 2017 абсолютно тоже самое и в extension_uninstaller.ocmod.xml этого же автора. Плюс там же и еще один момент исправлен. Файл измененный тут extension_uninstaller.ocmod.xml 3 Link to comment Share on other sites More sharing options... nikifalex Posted September 27, 2017 Author Share Posted September 27, 2017 дубль Link to comment Share on other sites More sharing options... 1 year later... AlexDW Posted November 2, 2018 Share Posted November 2, 2018 ставьте патч, потом обновляйте кеш модификаторов и пробуйте загрузить какой-нибудь архив ocmod.zip если не помогло - значит у вас проблемы с самим движком Link to comment Share on other sites More sharing options... 1 month later... Wild Posted December 4, 2018 Share Posted December 4, 2018 В обоих модификациях присутствует код заменяющий одну и ту же строку. localcopy.ocmod.xml: <search ><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/ftp', 'token=' . $this->session->data['token'],]]></search> <add position="replace"><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/localcopy', 'token=' . $this->session->data['token'],]]></add> extension_uninstaller.ocmod.xml: <search ><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/ftp', 'token=' . $this->session->data['token'], 'SSL')),]]></search> <add position="replace"><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')),]]></add> Есть подозрение, что установленные оба сразу, они конфликтуют, поскольку в результате строка меняется только одним модификатором и только одно расширение остается рабочим. Кто-нить сталкивался, есть решение? Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 12 минут назад, Wild сказал: они конфликтуют, поскольку в результате строка меняется только одним модификатором и только одно расширение остается рабочим посмотрите что в ocmod.log Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Ничего, поскольку там присутствует error="skip". Просто кто первый поменял строку, того и тапки! Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Там в URL получается либо localremove, либо localcopy. Соответственно если вы пользуете второй модификатор, то вызывается не та функция. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 а... ну может быть может быть Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 То бишь либо один, либо другой. Как их подружить? Ведь оба нужны и полезны! Приходится врубать/вырубать вручную, достает эта возня. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 да там вроде хороший саппорт, сейчас подскажут Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
nikifalex Posted September 27, 2017 Author Share Posted September 27, 2017 абсолютно тоже самое и в extension_uninstaller.ocmod.xml этого же автора. Плюс там же и еще один момент исправлен. Файл измененный тут extension_uninstaller.ocmod.xml 3 Link to comment Share on other sites More sharing options... nikifalex Posted September 27, 2017 Author Share Posted September 27, 2017 дубль Link to comment Share on other sites More sharing options... 1 year later... AlexDW Posted November 2, 2018 Share Posted November 2, 2018 ставьте патч, потом обновляйте кеш модификаторов и пробуйте загрузить какой-нибудь архив ocmod.zip если не помогло - значит у вас проблемы с самим движком Link to comment Share on other sites More sharing options... 1 month later... Wild Posted December 4, 2018 Share Posted December 4, 2018 В обоих модификациях присутствует код заменяющий одну и ту же строку. localcopy.ocmod.xml: <search ><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/ftp', 'token=' . $this->session->data['token'],]]></search> <add position="replace"><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/localcopy', 'token=' . $this->session->data['token'],]]></add> extension_uninstaller.ocmod.xml: <search ><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/ftp', 'token=' . $this->session->data['token'], 'SSL')),]]></search> <add position="replace"><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')),]]></add> Есть подозрение, что установленные оба сразу, они конфликтуют, поскольку в результате строка меняется только одним модификатором и только одно расширение остается рабочим. Кто-нить сталкивался, есть решение? Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 12 минут назад, Wild сказал: они конфликтуют, поскольку в результате строка меняется только одним модификатором и только одно расширение остается рабочим посмотрите что в ocmod.log Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Ничего, поскольку там присутствует error="skip". Просто кто первый поменял строку, того и тапки! Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Там в URL получается либо localremove, либо localcopy. Соответственно если вы пользуете второй модификатор, то вызывается не та функция. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 а... ну может быть может быть Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 То бишь либо один, либо другой. Как их подружить? Ведь оба нужны и полезны! Приходится врубать/вырубать вручную, достает эта возня. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 да там вроде хороший саппорт, сейчас подскажут Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
nikifalex Posted September 27, 2017 Author Share Posted September 27, 2017 дубль Link to comment Share on other sites More sharing options... 1 year later... AlexDW Posted November 2, 2018 Share Posted November 2, 2018 ставьте патч, потом обновляйте кеш модификаторов и пробуйте загрузить какой-нибудь архив ocmod.zip если не помогло - значит у вас проблемы с самим движком Link to comment Share on other sites More sharing options... 1 month later... Wild Posted December 4, 2018 Share Posted December 4, 2018 В обоих модификациях присутствует код заменяющий одну и ту же строку. localcopy.ocmod.xml: <search ><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/ftp', 'token=' . $this->session->data['token'],]]></search> <add position="replace"><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/localcopy', 'token=' . $this->session->data['token'],]]></add> extension_uninstaller.ocmod.xml: <search ><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/ftp', 'token=' . $this->session->data['token'], 'SSL')),]]></search> <add position="replace"><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')),]]></add> Есть подозрение, что установленные оба сразу, они конфликтуют, поскольку в результате строка меняется только одним модификатором и только одно расширение остается рабочим. Кто-нить сталкивался, есть решение? Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 12 минут назад, Wild сказал: они конфликтуют, поскольку в результате строка меняется только одним модификатором и только одно расширение остается рабочим посмотрите что в ocmod.log Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Ничего, поскольку там присутствует error="skip". Просто кто первый поменял строку, того и тапки! Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Там в URL получается либо localremove, либо localcopy. Соответственно если вы пользуете второй модификатор, то вызывается не та функция. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 а... ну может быть может быть Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 То бишь либо один, либо другой. Как их подружить? Ведь оба нужны и полезны! Приходится врубать/вырубать вручную, достает эта возня. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 да там вроде хороший саппорт, сейчас подскажут Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
AlexDW Posted November 2, 2018 Share Posted November 2, 2018 ставьте патч, потом обновляйте кеш модификаторов и пробуйте загрузить какой-нибудь архив ocmod.zip если не помогло - значит у вас проблемы с самим движком Link to comment Share on other sites More sharing options... 1 month later... Wild Posted December 4, 2018 Share Posted December 4, 2018 В обоих модификациях присутствует код заменяющий одну и ту же строку. localcopy.ocmod.xml: <search ><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/ftp', 'token=' . $this->session->data['token'],]]></search> <add position="replace"><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/localcopy', 'token=' . $this->session->data['token'],]]></add> extension_uninstaller.ocmod.xml: <search ><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/ftp', 'token=' . $this->session->data['token'], 'SSL')),]]></search> <add position="replace"><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')),]]></add> Есть подозрение, что установленные оба сразу, они конфликтуют, поскольку в результате строка меняется только одним модификатором и только одно расширение остается рабочим. Кто-нить сталкивался, есть решение? Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 12 минут назад, Wild сказал: они конфликтуют, поскольку в результате строка меняется только одним модификатором и только одно расширение остается рабочим посмотрите что в ocmod.log Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Ничего, поскольку там присутствует error="skip". Просто кто первый поменял строку, того и тапки! Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Там в URL получается либо localremove, либо localcopy. Соответственно если вы пользуете второй модификатор, то вызывается не та функция. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 а... ну может быть может быть Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 То бишь либо один, либо другой. Как их подружить? Ведь оба нужны и полезны! Приходится врубать/вырубать вручную, достает эта возня. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 да там вроде хороший саппорт, сейчас подскажут Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
Wild Posted December 4, 2018 Share Posted December 4, 2018 В обоих модификациях присутствует код заменяющий одну и ту же строку. localcopy.ocmod.xml: <search ><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/ftp', 'token=' . $this->session->data['token'],]]></search> <add position="replace"><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/localcopy', 'token=' . $this->session->data['token'],]]></add> extension_uninstaller.ocmod.xml: <search ><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/ftp', 'token=' . $this->session->data['token'], 'SSL')),]]></search> <add position="replace"><![CDATA['url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')),]]></add> Есть подозрение, что установленные оба сразу, они конфликтуют, поскольку в результате строка меняется только одним модификатором и только одно расширение остается рабочим. Кто-нить сталкивался, есть решение? Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 12 минут назад, Wild сказал: они конфликтуют, поскольку в результате строка меняется только одним модификатором и только одно расширение остается рабочим посмотрите что в ocmod.log Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Ничего, поскольку там присутствует error="skip". Просто кто первый поменял строку, того и тапки! Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Там в URL получается либо localremove, либо localcopy. Соответственно если вы пользуете второй модификатор, то вызывается не та функция. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 а... ну может быть может быть Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 То бишь либо один, либо другой. Как их подружить? Ведь оба нужны и полезны! Приходится врубать/вырубать вручную, достает эта возня. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 да там вроде хороший саппорт, сейчас подскажут Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 12 минут назад, Wild сказал: они конфликтуют, поскольку в результате строка меняется только одним модификатором и только одно расширение остается рабочим посмотрите что в ocmod.log Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Ничего, поскольку там присутствует error="skip". Просто кто первый поменял строку, того и тапки! Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Там в URL получается либо localremove, либо localcopy. Соответственно если вы пользуете второй модификатор, то вызывается не та функция. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 а... ну может быть может быть Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 То бишь либо один, либо другой. Как их подружить? Ведь оба нужны и полезны! Приходится врубать/вырубать вручную, достает эта возня. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 да там вроде хороший саппорт, сейчас подскажут Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
Wild Posted December 4, 2018 Share Posted December 4, 2018 Ничего, поскольку там присутствует error="skip". Просто кто первый поменял строку, того и тапки! Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Там в URL получается либо localremove, либо localcopy. Соответственно если вы пользуете второй модификатор, то вызывается не та функция. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 а... ну может быть может быть Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 То бишь либо один, либо другой. Как их подружить? Ведь оба нужны и полезны! Приходится врубать/вырубать вручную, достает эта возня. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 да там вроде хороший саппорт, сейчас подскажут Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
Wild Posted December 4, 2018 Share Posted December 4, 2018 Там в URL получается либо localremove, либо localcopy. Соответственно если вы пользуете второй модификатор, то вызывается не та функция. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 а... ну может быть может быть Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 То бишь либо один, либо другой. Как их подружить? Ведь оба нужны и полезны! Приходится врубать/вырубать вручную, достает эта возня. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 да там вроде хороший саппорт, сейчас подскажут Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 а... ну может быть может быть Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 То бишь либо один, либо другой. Как их подружить? Ведь оба нужны и полезны! Приходится врубать/вырубать вручную, достает эта возня. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 да там вроде хороший саппорт, сейчас подскажут Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
Wild Posted December 4, 2018 Share Posted December 4, 2018 То бишь либо один, либо другой. Как их подружить? Ведь оба нужны и полезны! Приходится врубать/вырубать вручную, достает эта возня. Link to comment Share on other sites More sharing options... nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 да там вроде хороший саппорт, сейчас подскажут Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
nikifalex Posted December 4, 2018 Author Share Posted December 4, 2018 да там вроде хороший саппорт, сейчас подскажут Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
Wild Posted December 4, 2018 Share Posted December 4, 2018 Уже написал им на opencart.com только что. Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
chukcha Posted December 4, 2018 Share Posted December 4, 2018 Хм, а почему у меня нет такого? Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
Wild Posted December 4, 2018 Share Posted December 4, 2018 43 минуты назад, chukcha сказал: Хм, а почему у меня нет такого? Хм... Стоят и активированы оба модуля? Можно поинтересоваться что у вас в system/modification/admin/controller/extension/installer.php ? В блоке: // FTP $json['step'][] = array( 'text' => $this->language->get('text_ftp'), 'url' => str_replace('&', '&', $this->url->link('extension/installer/'. $this->rewrite_step('ftp', 'localremove'), 'token=' . $this->session->data['token'], 'SSL')), 'path' => $path ); Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
chukcha Posted December 4, 2018 Share Posted December 4, 2018 Я без понятия, Я как скачал его при появленни, так и остался.. смотрю, там версия 2016 года Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
Wild Posted December 4, 2018 Share Posted December 4, 2018 Вы скачали и установили и включили ОБА модуля local fix + uninstall? Link to comment Share on other sites More sharing options... chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
chukcha Posted December 4, 2018 Share Posted December 4, 2018 я вообще анинсталом не пользуюсь, ибо это не нужно Link to comment Share on other sites More sharing options... Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
Wild Posted December 4, 2018 Share Posted December 4, 2018 Тогда понятно. Речь шла об обоих одновременно. Я тоже пользуюсь анинсталлом не часто, но когда ставишь модуль для проверки и последующим удалением, заколупывает лазанье по папкам и чистка вручную. По этому и возник вопрос. Link to comment Share on other sites More sharing options... Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options... 2 weeks later... Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Обновление курса валют Приватбанк, Монобанк, НБУ для Opencart/Ocstore By bogdan281989 Deluxe - адаптивный, универсальный шаблон By aridius Кнопка view в списках (товар, категория, производитель, статья) By chukcha Автоматическое заполнение URL для 4.0 By chukcha Шаблон Nice (Free Edition) для OpenCart 3 By SergeTkach
Satriani Posted December 8, 2018 Share Posted December 8, 2018 Я все ручакми делаю. Анинстал юзал будучи начинающим. Link to comment Share on other sites More sharing options...
Wild Posted December 19, 2018 Share Posted December 19, 2018 Баг пофиксили и выложили новые версии модификаторов. Кому надо, качаем... Спойлер QuickFix: Extensions Installer issue when FTP support disabled ExtensionUninstaller - Safely remove extensions from your store 1 Link to comment Share on other sites More sharing options... nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Песочница бага в localcopy.ocmod.xml
nikifalex Posted December 19, 2018 Author Share Posted December 19, 2018 тогда закройте эту тему. Пусть там и скачивают. Link to comment Share on other sites More sharing options... 5 months later... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options... nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12 Go to topic listing Similar Content Баги на форуме 1 2 3 4 24 By nikifalex, August 30, 2016 591 replies 180,357 views dinox Monday at 09:51 PM Баг со списком заказов в админке By md5, December 1, 2020 2 replies 542 views md5 January 19 Проблема - баг Opencart редирект с page=1 на страницу категории By Koss88, January 21, 2019 seo доработка движка 9 replies 2,212 views mouZ January 25 Модуль Item order status - модификатор для исправления бага товара в заказе [Поддержка] By Sunser, October 10, 2020 price order (and 26 more) Tagged with: price order order price order edit order opencart order product module modification opencart opencart2 opencart3 opencart2x opencart23 opencart2.3 opencart2.x ocstore ocstore2 ocstore3 ocstore23 ocstore2x ocstore2.1 ocstore2.3 ocstore3.x orders order_id order page ocmod product price 3 replies 977 views Sunser January 27 Баг сайта, адаптация страницы на телефоне, карточка товара. By marshal2021, November 29, 2021 2 replies 587 views Venter November 30, 2021 Recently Browsing 0 members No registered users viewing this page.
BillyBons Posted May 22, 2019 Share Posted May 22, 2019 А у меня никакая версия не встает. Всегда выдает ошибку "Internal server error" Ubuntu 18.04, Apache 2.4.18, PHP7.0. Куда копать? Link to comment Share on other sites More sharing options...
nikifalex Posted May 22, 2019 Author Share Posted May 22, 2019 копать в логи вашего Только что, BillyBons сказал: Apache 2.4.18 Link to comment Share on other sites More sharing options... BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options... Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options... Prev 1 2 Next Page 1 of 2 Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 12
BillyBons Posted May 22, 2019 Share Posted May 22, 2019 (edited) Выдает вот такую ошибку - PHP Fatal error: Uncaught Error: Class 'DOMDocument' not found in /var/www/html/admin/controller/extension/installer.php:434\nStack trace:\n#0 /var/www/html/system/engine/action.php(51): ControllerExtensionInstaller->xml()\n#1 /var/www/html/admin/controller/startup/router.php(26): Action->execute(Object(Registry), Array)\n#2 /var/www/html/system/engine/action.php(51): ControllerStartupRouter->index()\n#3 /var/www/html/system/engine/front.php(34): Action->execute(Object(Registry))\n#4 /var/www/html/system/engine/front.php(29): Front->execute(Object(Action))\n#5 /var/www/html/system/framework.php(103): Front->dispatch(Object(Action), Object(Action))\n#6 /var/www/html/system/startup.php(105): require_once('/var/www/html/s...')\n#7 /var/www/html/admin/index.php(19): start('admin')\n#8 {main}\n thrown in /var/www/html/admin/controller/extension/installer.php on line 434, referer: http://xxx.ru/admin/index.php?route=extension/installer&token=XXXXX Разобрался. Все понял. Не установлено было php-xml Edited May 22, 2019 by BillyBons Link to comment Share on other sites More sharing options...
Egor2014 Posted May 24, 2019 Share Posted May 24, 2019 (edited) Установил в модификаторах написано : |Extension Uninstaller by iSenseLabs |Quickfix by iSenseLabs но установка расширении все равно Internal Server Error Edited May 24, 2019 by Egor2014 Link to comment Share on other sites More sharing options...
Recommended Posts