DevmanExtensions Posted August 10, 2022 Author Share Posted August 10, 2022 On 8/9/2022 at 8:39 PM, Smallbear said: У меня тоже модуль не работает, только не пишет про лицензию, а просто сайт ложится когда пытаешься зайти в админке в сам модуль. Долго не мог понять в чем дело, думал с хостингом что-то, но видимо проблема совсем в другом. Sorry so much by this inconvenience. Was a problem from our hosting company "Contabo" -> https://contabo-status.com/ Link to comment Share on other sites More sharing options... Sytyi Posted August 17, 2022 Share Posted August 17, 2022 (edited) Добрый день! Возникли проблемы при работе с условными значениями. Есть простой профиль импорта файла xls по ссылке: Объясню что значит каждая колонка: EAN ("Продукция Украины") - идентификатор товара Price ("Цена (грн)") - цена товара Quantity ("Нали-чие") - Колонка в которой указано наличие и количество на складе. Может иметь следующие значения: "есть", "нет", "?", числовые значения от "1", другие текстовые значения, говорящие, что товар есть в наличии. Чтобы реализовать правильное заполнение этой колонки, я написал следующее условное значение: (*есть=5)(*нет=0)(*?=0)(>0=5:5) Первое заменяет "есть" на "5", второе заменяет "нет" на "0", третье заменяет "?" на "0", четвертое заменяет любое числовое значение, которое больше "0", на "5", в остальных случаях все будет заменяться на "5". Это условное значение работает корректно, так что поле "Quantity" заполняется правильно. Однако мне также необходимо заполнить поле "Out stock status" за счет той же колонки "Нали-чие". С этим у меня возникли проблемы, так как нельзя указать в столбце "Название колонки в файле" одинаковое название колонки в двух полях. Чтобы справиться с этой проблемой я составил условное значение и для этого поля: (Нали-чие*есть=7)(Нали-чие*нет=5)(Нали-чие*?=6)(Нали-чие>0=7:7) // Out stock status IDs: // 5 - "Нет в наличии" // 6 - "Ожидается" // 7 - "В наличии" Оно работает похожим образом: первое заменяет "есть" на "7", второе заменяет "нет" на "5", третье заменяет "?" на "6", четвертое заменяет любое числовое значение, которое больше "0", на "7", в остальных случаях все будет заменяться на "7". Однако ЭТО условное значение не меняет статусы наличия в товарах. Вопрос: почему второе условное значение не работает? Edited August 17, 2022 by Sytyi Дописал пост Link to comment Share on other sites More sharing options... DevmanExtensions Posted August 17, 2022 Author Share Posted August 17, 2022 On 8/17/2022 at 3:58 PM, Sytyi said: Добрый день! Возникли проблемы при работе с условными значениями. Есть простой профиль импорта файла xls по ссылке: Объясню что значит каждая колонка: EAN ("Продукция Украины") - идентификатор товара Price ("Цена (грн)") - цена товара Quantity ("Нали-чие") - Колонка в которой указано наличие и количество на складе. Может иметь следующие значения: "есть", "нет", "?", числовые значения от "1", другие текстовые значения, говорящие, что товар есть в наличии. Чтобы реализовать правильное заполнение этой колонки, я написал следующее условное значение: (*есть=5)(*нет=0)(*?=0)(>0=5:5) Первое заменяет "есть" на "5", второе заменяет "нет" на "0", третье заменяет "?" на "0", четвертое заменяет любое числовое значение, которое больше "0", на "5", в остальных случаях все будет заменяться на "5". Это условное значение работает корректно, так что поле "Quantity" заполняется правильно. Однако мне также необходимо заполнить поле "Out stock status" за счет той же колонки "Нали-чие". С этим у меня возникли проблемы, так как нельзя указать в столбце "Название колонки в файле" одинаковое название колонки в двух полях. Чтобы справиться с этой проблемой я составил условное значение и для этого поля: (Нали-чие*есть=7)(Нали-чие*нет=5)(Нали-чие*?=6)(Нали-чие>0=7:7) // Out stock status IDs: // 5 - "Нет в наличии" // 6 - "Ожидается" // 7 - "В наличии" Оно работает похожим образом: первое заменяет "есть" на "7", второе заменяет "нет" на "5", третье заменяет "?" на "6", четвертое заменяет любое числовое значение, которое больше "0", на "7", в остальных случаях все будет заменяться на "7". Однако ЭТО условное значение не меняет статусы наличия в товарах. Вопрос: почему второе условное значение не работает? Hi! In case that you want use a repeated column name in conditional value, you have to set it between brackets: ([Нали-чие]*есть=7)([Нали-чие]*нет=5)([Нали-чие]*?=6)([Нали-чие]>0=7:7) Link to comment Share on other sites More sharing options... Sytyi Posted August 18, 2022 Share Posted August 18, 2022 К сожалению, скобки не исправили ситуацию: значение Out stock status не меняется. English: Unfortunately, brackets didn't help to fix my situation: value of Out stock status isn't changing. Скрытый текст В примерах название колонки без скобок Link to comment Share on other sites More sharing options... DevmanExtensions Posted August 18, 2022 Author Share Posted August 18, 2022 On 8/18/2022 at 10:22 AM, Sytyi said: К сожалению, скобки не исправили ситуацию: значение Out stock status не меняется. English: Unfortunately, brackets didn't help to fix my situation: value of Out stock status isn't changing. Reveal hidden contents В примерах название колонки без скобок By private message, send us a admin opencart user/pass and say us what is the import profile that you are launching Link to comment Share on other sites More sharing options... Tsp Posted August 25, 2022 Share Posted August 25, 2022 Есть группы фильтров с одинаковыми значениями: Группа1: Да|Нет Группа2: Да|Опционально При импорте категорий такой строки Да|Нет|Да|Опционально, фильтры в категории перемешиваются и группы фильтров отображаются не корректно Link to comment Share on other sites More sharing options... DevmanExtensions Posted August 26, 2022 Author Share Posted August 26, 2022 On 8/25/2022 at 10:58 PM, Tsp said: Есть группы фильтров с одинаковыми значениями: Группа1: Да|Нет Группа2: Да|Опционально При импорте категорий такой строки Да|Нет|Да|Опционально, фильтры в категории перемешиваются и группы фильтров отображаются не корректно I don't understand you very well... can you write me in private message and show me a real example please? Link to comment Share on other sites More sharing options... 2 weeks later... pretzel Posted September 6, 2022 Share Posted September 6, 2022 Усім привіт. Маю питання по модулю є колнка в котрій є ціна товару чи можливо на базі того що є ціна, заповнити зразу декілька колонок при імпорті ? бо якщо я намагаюся заповнити і ціну і статус на складі, то менівидає помилку, що неможливо використати одну колонку 2 рази... Link to comment Share on other sites More sharing options... DevmanExtensions Posted September 6, 2022 Author Share Posted September 6, 2022 On 9/6/2022 at 4:30 PM, pretzel said: Усім привіт. Маю питання по модулю є колнка в котрій є ціна товару чи можливо на базі того що є ціна, заповнити зразу декілька колонок при імпорті ? бо якщо я намагаюся заповнити і ціну і статус на складі, то менівидає помилку, що неможливо використати одну колонку 2 рази... Hi! For it, you can use "Default value" or "Conditional value", putting the column name between brackets: [price] Link to comment Share on other sites More sharing options... 4 weeks later... rsn Posted October 3, 2022 Share Posted October 3, 2022 здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 3, 2022 Author Share Posted October 3, 2022 On 10/3/2022 at 7:44 AM, rsn said: здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Hi! Do you mean that images are inside excel file? regrettably this is not possible import to Opencart, only works in case that contains image links. Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted October 17, 2022 Share Posted October 17, 2022 Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 1:57 AM, Focster2019 said: Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Hi! using "Default value": 1 Link to comment Share on other sites More sharing options... Focster2019 Posted October 18, 2022 Share Posted October 18, 2022 Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 3:45 PM, Focster2019 said: Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Hi! Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Save changes and upload file Go to extensions > modifications and refresh it. We will include this change automatically for new releases. IMPORTANT: Really we aren't sure if Opencart is compatible with this type of images... if you assign manually an image of this type to a product, is working? Thanks! Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 18.10.2022 в 18:38, DevmanExtensions сказал: Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 20, 2022 Author Share Posted October 20, 2022 On 10/20/2022 at 11:07 AM, Focster2019 said: Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Hi! About images: Understood... exactly, doesn't exist a fast solution for it... you can send us by private the extension that is converting images and maybe we will can "integrate" it in Import export PRO (custom develop quoted). About conditions: I think that you have to use in column "Status" the original values of "Quantity" column ("no", "yes"...) and not the converted values. Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 (edited) 20.10.2022 в 16:18, DevmanExtensions сказал: Об условиях: я думаю, что вы должны использовать в столбце «Статус» исходные значения столбца «Количество» («нет», «да»...), а не преобразованные значения. Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> Edited October 20, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 21, 2022 Author Share Posted October 21, 2022 On 10/20/2022 at 4:20 PM, Focster2019 said: Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted November 2, 2022 Share Posted November 2, 2022 (edited) 21.10.2022 в 14:08, DevmanExtensions сказал: I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Edited November 2, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 12:22 AM, Focster2019 said: Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Is probably that attribute values only are being assigned by 1 language... try next: - Change your admin language (if is in ukranian change it to russian or viceverse) - Go to edit a product, tab "Attribues" - You see now attributes?? If the profile that you are using for import these products and attributes has "multilanguage" feature enabled, you have to make sure that all language columns has a value, else, will be imported like empty and probably won't be loaded depending of language loaded in session. Use "Default value" in case that your vendor is not giving you the values in all possible languages. Link to comment Share on other sites More sharing options... Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Модули обмена данными Модуль Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News 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 × 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
Sytyi Posted August 17, 2022 Share Posted August 17, 2022 (edited) Добрый день! Возникли проблемы при работе с условными значениями. Есть простой профиль импорта файла xls по ссылке: Объясню что значит каждая колонка: EAN ("Продукция Украины") - идентификатор товара Price ("Цена (грн)") - цена товара Quantity ("Нали-чие") - Колонка в которой указано наличие и количество на складе. Может иметь следующие значения: "есть", "нет", "?", числовые значения от "1", другие текстовые значения, говорящие, что товар есть в наличии. Чтобы реализовать правильное заполнение этой колонки, я написал следующее условное значение: (*есть=5)(*нет=0)(*?=0)(>0=5:5) Первое заменяет "есть" на "5", второе заменяет "нет" на "0", третье заменяет "?" на "0", четвертое заменяет любое числовое значение, которое больше "0", на "5", в остальных случаях все будет заменяться на "5". Это условное значение работает корректно, так что поле "Quantity" заполняется правильно. Однако мне также необходимо заполнить поле "Out stock status" за счет той же колонки "Нали-чие". С этим у меня возникли проблемы, так как нельзя указать в столбце "Название колонки в файле" одинаковое название колонки в двух полях. Чтобы справиться с этой проблемой я составил условное значение и для этого поля: (Нали-чие*есть=7)(Нали-чие*нет=5)(Нали-чие*?=6)(Нали-чие>0=7:7) // Out stock status IDs: // 5 - "Нет в наличии" // 6 - "Ожидается" // 7 - "В наличии" Оно работает похожим образом: первое заменяет "есть" на "7", второе заменяет "нет" на "5", третье заменяет "?" на "6", четвертое заменяет любое числовое значение, которое больше "0", на "7", в остальных случаях все будет заменяться на "7". Однако ЭТО условное значение не меняет статусы наличия в товарах. Вопрос: почему второе условное значение не работает? Edited August 17, 2022 by Sytyi Дописал пост Link to comment Share on other sites More sharing options...
DevmanExtensions Posted August 17, 2022 Author Share Posted August 17, 2022 On 8/17/2022 at 3:58 PM, Sytyi said: Добрый день! Возникли проблемы при работе с условными значениями. Есть простой профиль импорта файла xls по ссылке: Объясню что значит каждая колонка: EAN ("Продукция Украины") - идентификатор товара Price ("Цена (грн)") - цена товара Quantity ("Нали-чие") - Колонка в которой указано наличие и количество на складе. Может иметь следующие значения: "есть", "нет", "?", числовые значения от "1", другие текстовые значения, говорящие, что товар есть в наличии. Чтобы реализовать правильное заполнение этой колонки, я написал следующее условное значение: (*есть=5)(*нет=0)(*?=0)(>0=5:5) Первое заменяет "есть" на "5", второе заменяет "нет" на "0", третье заменяет "?" на "0", четвертое заменяет любое числовое значение, которое больше "0", на "5", в остальных случаях все будет заменяться на "5". Это условное значение работает корректно, так что поле "Quantity" заполняется правильно. Однако мне также необходимо заполнить поле "Out stock status" за счет той же колонки "Нали-чие". С этим у меня возникли проблемы, так как нельзя указать в столбце "Название колонки в файле" одинаковое название колонки в двух полях. Чтобы справиться с этой проблемой я составил условное значение и для этого поля: (Нали-чие*есть=7)(Нали-чие*нет=5)(Нали-чие*?=6)(Нали-чие>0=7:7) // Out stock status IDs: // 5 - "Нет в наличии" // 6 - "Ожидается" // 7 - "В наличии" Оно работает похожим образом: первое заменяет "есть" на "7", второе заменяет "нет" на "5", третье заменяет "?" на "6", четвертое заменяет любое числовое значение, которое больше "0", на "7", в остальных случаях все будет заменяться на "7". Однако ЭТО условное значение не меняет статусы наличия в товарах. Вопрос: почему второе условное значение не работает? Hi! In case that you want use a repeated column name in conditional value, you have to set it between brackets: ([Нали-чие]*есть=7)([Нали-чие]*нет=5)([Нали-чие]*?=6)([Нали-чие]>0=7:7) Link to comment Share on other sites More sharing options... Sytyi Posted August 18, 2022 Share Posted August 18, 2022 К сожалению, скобки не исправили ситуацию: значение Out stock status не меняется. English: Unfortunately, brackets didn't help to fix my situation: value of Out stock status isn't changing. Скрытый текст В примерах название колонки без скобок Link to comment Share on other sites More sharing options... DevmanExtensions Posted August 18, 2022 Author Share Posted August 18, 2022 On 8/18/2022 at 10:22 AM, Sytyi said: К сожалению, скобки не исправили ситуацию: значение Out stock status не меняется. English: Unfortunately, brackets didn't help to fix my situation: value of Out stock status isn't changing. Reveal hidden contents В примерах название колонки без скобок By private message, send us a admin opencart user/pass and say us what is the import profile that you are launching Link to comment Share on other sites More sharing options... Tsp Posted August 25, 2022 Share Posted August 25, 2022 Есть группы фильтров с одинаковыми значениями: Группа1: Да|Нет Группа2: Да|Опционально При импорте категорий такой строки Да|Нет|Да|Опционально, фильтры в категории перемешиваются и группы фильтров отображаются не корректно Link to comment Share on other sites More sharing options... DevmanExtensions Posted August 26, 2022 Author Share Posted August 26, 2022 On 8/25/2022 at 10:58 PM, Tsp said: Есть группы фильтров с одинаковыми значениями: Группа1: Да|Нет Группа2: Да|Опционально При импорте категорий такой строки Да|Нет|Да|Опционально, фильтры в категории перемешиваются и группы фильтров отображаются не корректно I don't understand you very well... can you write me in private message and show me a real example please? Link to comment Share on other sites More sharing options... 2 weeks later... pretzel Posted September 6, 2022 Share Posted September 6, 2022 Усім привіт. Маю питання по модулю є колнка в котрій є ціна товару чи можливо на базі того що є ціна, заповнити зразу декілька колонок при імпорті ? бо якщо я намагаюся заповнити і ціну і статус на складі, то менівидає помилку, що неможливо використати одну колонку 2 рази... Link to comment Share on other sites More sharing options... DevmanExtensions Posted September 6, 2022 Author Share Posted September 6, 2022 On 9/6/2022 at 4:30 PM, pretzel said: Усім привіт. Маю питання по модулю є колнка в котрій є ціна товару чи можливо на базі того що є ціна, заповнити зразу декілька колонок при імпорті ? бо якщо я намагаюся заповнити і ціну і статус на складі, то менівидає помилку, що неможливо використати одну колонку 2 рази... Hi! For it, you can use "Default value" or "Conditional value", putting the column name between brackets: [price] Link to comment Share on other sites More sharing options... 4 weeks later... rsn Posted October 3, 2022 Share Posted October 3, 2022 здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 3, 2022 Author Share Posted October 3, 2022 On 10/3/2022 at 7:44 AM, rsn said: здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Hi! Do you mean that images are inside excel file? regrettably this is not possible import to Opencart, only works in case that contains image links. Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted October 17, 2022 Share Posted October 17, 2022 Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 1:57 AM, Focster2019 said: Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Hi! using "Default value": 1 Link to comment Share on other sites More sharing options... Focster2019 Posted October 18, 2022 Share Posted October 18, 2022 Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 3:45 PM, Focster2019 said: Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Hi! Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Save changes and upload file Go to extensions > modifications and refresh it. We will include this change automatically for new releases. IMPORTANT: Really we aren't sure if Opencart is compatible with this type of images... if you assign manually an image of this type to a product, is working? Thanks! Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 18.10.2022 в 18:38, DevmanExtensions сказал: Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 20, 2022 Author Share Posted October 20, 2022 On 10/20/2022 at 11:07 AM, Focster2019 said: Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Hi! About images: Understood... exactly, doesn't exist a fast solution for it... you can send us by private the extension that is converting images and maybe we will can "integrate" it in Import export PRO (custom develop quoted). About conditions: I think that you have to use in column "Status" the original values of "Quantity" column ("no", "yes"...) and not the converted values. Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 (edited) 20.10.2022 в 16:18, DevmanExtensions сказал: Об условиях: я думаю, что вы должны использовать в столбце «Статус» исходные значения столбца «Количество» («нет», «да»...), а не преобразованные значения. Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> Edited October 20, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 21, 2022 Author Share Posted October 21, 2022 On 10/20/2022 at 4:20 PM, Focster2019 said: Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted November 2, 2022 Share Posted November 2, 2022 (edited) 21.10.2022 в 14:08, DevmanExtensions сказал: I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Edited November 2, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 12:22 AM, Focster2019 said: Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Is probably that attribute values only are being assigned by 1 language... try next: - Change your admin language (if is in ukranian change it to russian or viceverse) - Go to edit a product, tab "Attribues" - You see now attributes?? If the profile that you are using for import these products and attributes has "multilanguage" feature enabled, you have to make sure that all language columns has a value, else, will be imported like empty and probably won't be loaded depending of language loaded in session. Use "Default value" in case that your vendor is not giving you the values in all possible languages. Link to comment Share on other sites More sharing options... Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Модули обмена данными Модуль Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News 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 × 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
Sytyi Posted August 18, 2022 Share Posted August 18, 2022 К сожалению, скобки не исправили ситуацию: значение Out stock status не меняется. English: Unfortunately, brackets didn't help to fix my situation: value of Out stock status isn't changing. Скрытый текст В примерах название колонки без скобок Link to comment Share on other sites More sharing options...
DevmanExtensions Posted August 18, 2022 Author Share Posted August 18, 2022 On 8/18/2022 at 10:22 AM, Sytyi said: К сожалению, скобки не исправили ситуацию: значение Out stock status не меняется. English: Unfortunately, brackets didn't help to fix my situation: value of Out stock status isn't changing. Reveal hidden contents В примерах название колонки без скобок By private message, send us a admin opencart user/pass and say us what is the import profile that you are launching Link to comment Share on other sites More sharing options... Tsp Posted August 25, 2022 Share Posted August 25, 2022 Есть группы фильтров с одинаковыми значениями: Группа1: Да|Нет Группа2: Да|Опционально При импорте категорий такой строки Да|Нет|Да|Опционально, фильтры в категории перемешиваются и группы фильтров отображаются не корректно Link to comment Share on other sites More sharing options... DevmanExtensions Posted August 26, 2022 Author Share Posted August 26, 2022 On 8/25/2022 at 10:58 PM, Tsp said: Есть группы фильтров с одинаковыми значениями: Группа1: Да|Нет Группа2: Да|Опционально При импорте категорий такой строки Да|Нет|Да|Опционально, фильтры в категории перемешиваются и группы фильтров отображаются не корректно I don't understand you very well... can you write me in private message and show me a real example please? Link to comment Share on other sites More sharing options... 2 weeks later... pretzel Posted September 6, 2022 Share Posted September 6, 2022 Усім привіт. Маю питання по модулю є колнка в котрій є ціна товару чи можливо на базі того що є ціна, заповнити зразу декілька колонок при імпорті ? бо якщо я намагаюся заповнити і ціну і статус на складі, то менівидає помилку, що неможливо використати одну колонку 2 рази... Link to comment Share on other sites More sharing options... DevmanExtensions Posted September 6, 2022 Author Share Posted September 6, 2022 On 9/6/2022 at 4:30 PM, pretzel said: Усім привіт. Маю питання по модулю є колнка в котрій є ціна товару чи можливо на базі того що є ціна, заповнити зразу декілька колонок при імпорті ? бо якщо я намагаюся заповнити і ціну і статус на складі, то менівидає помилку, що неможливо використати одну колонку 2 рази... Hi! For it, you can use "Default value" or "Conditional value", putting the column name between brackets: [price] Link to comment Share on other sites More sharing options... 4 weeks later... rsn Posted October 3, 2022 Share Posted October 3, 2022 здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 3, 2022 Author Share Posted October 3, 2022 On 10/3/2022 at 7:44 AM, rsn said: здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Hi! Do you mean that images are inside excel file? regrettably this is not possible import to Opencart, only works in case that contains image links. Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted October 17, 2022 Share Posted October 17, 2022 Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 1:57 AM, Focster2019 said: Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Hi! using "Default value": 1 Link to comment Share on other sites More sharing options... Focster2019 Posted October 18, 2022 Share Posted October 18, 2022 Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 3:45 PM, Focster2019 said: Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Hi! Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Save changes and upload file Go to extensions > modifications and refresh it. We will include this change automatically for new releases. IMPORTANT: Really we aren't sure if Opencart is compatible with this type of images... if you assign manually an image of this type to a product, is working? Thanks! Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 18.10.2022 в 18:38, DevmanExtensions сказал: Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 20, 2022 Author Share Posted October 20, 2022 On 10/20/2022 at 11:07 AM, Focster2019 said: Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Hi! About images: Understood... exactly, doesn't exist a fast solution for it... you can send us by private the extension that is converting images and maybe we will can "integrate" it in Import export PRO (custom develop quoted). About conditions: I think that you have to use in column "Status" the original values of "Quantity" column ("no", "yes"...) and not the converted values. Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 (edited) 20.10.2022 в 16:18, DevmanExtensions сказал: Об условиях: я думаю, что вы должны использовать в столбце «Статус» исходные значения столбца «Количество» («нет», «да»...), а не преобразованные значения. Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> Edited October 20, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 21, 2022 Author Share Posted October 21, 2022 On 10/20/2022 at 4:20 PM, Focster2019 said: Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted November 2, 2022 Share Posted November 2, 2022 (edited) 21.10.2022 в 14:08, DevmanExtensions сказал: I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Edited November 2, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 12:22 AM, Focster2019 said: Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Is probably that attribute values only are being assigned by 1 language... try next: - Change your admin language (if is in ukranian change it to russian or viceverse) - Go to edit a product, tab "Attribues" - You see now attributes?? If the profile that you are using for import these products and attributes has "multilanguage" feature enabled, you have to make sure that all language columns has a value, else, will be imported like empty and probably won't be loaded depending of language loaded in session. Use "Default value" in case that your vendor is not giving you the values in all possible languages. Link to comment Share on other sites More sharing options... Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Модули обмена данными Модуль Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News 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 × 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
Tsp Posted August 25, 2022 Share Posted August 25, 2022 Есть группы фильтров с одинаковыми значениями: Группа1: Да|Нет Группа2: Да|Опционально При импорте категорий такой строки Да|Нет|Да|Опционально, фильтры в категории перемешиваются и группы фильтров отображаются не корректно Link to comment Share on other sites More sharing options...
DevmanExtensions Posted August 26, 2022 Author Share Posted August 26, 2022 On 8/25/2022 at 10:58 PM, Tsp said: Есть группы фильтров с одинаковыми значениями: Группа1: Да|Нет Группа2: Да|Опционально При импорте категорий такой строки Да|Нет|Да|Опционально, фильтры в категории перемешиваются и группы фильтров отображаются не корректно I don't understand you very well... can you write me in private message and show me a real example please? Link to comment Share on other sites More sharing options... 2 weeks later... pretzel Posted September 6, 2022 Share Posted September 6, 2022 Усім привіт. Маю питання по модулю є колнка в котрій є ціна товару чи можливо на базі того що є ціна, заповнити зразу декілька колонок при імпорті ? бо якщо я намагаюся заповнити і ціну і статус на складі, то менівидає помилку, що неможливо використати одну колонку 2 рази... Link to comment Share on other sites More sharing options... DevmanExtensions Posted September 6, 2022 Author Share Posted September 6, 2022 On 9/6/2022 at 4:30 PM, pretzel said: Усім привіт. Маю питання по модулю є колнка в котрій є ціна товару чи можливо на базі того що є ціна, заповнити зразу декілька колонок при імпорті ? бо якщо я намагаюся заповнити і ціну і статус на складі, то менівидає помилку, що неможливо використати одну колонку 2 рази... Hi! For it, you can use "Default value" or "Conditional value", putting the column name between brackets: [price] Link to comment Share on other sites More sharing options... 4 weeks later... rsn Posted October 3, 2022 Share Posted October 3, 2022 здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 3, 2022 Author Share Posted October 3, 2022 On 10/3/2022 at 7:44 AM, rsn said: здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Hi! Do you mean that images are inside excel file? regrettably this is not possible import to Opencart, only works in case that contains image links. Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted October 17, 2022 Share Posted October 17, 2022 Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 1:57 AM, Focster2019 said: Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Hi! using "Default value": 1 Link to comment Share on other sites More sharing options... Focster2019 Posted October 18, 2022 Share Posted October 18, 2022 Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 3:45 PM, Focster2019 said: Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Hi! Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Save changes and upload file Go to extensions > modifications and refresh it. We will include this change automatically for new releases. IMPORTANT: Really we aren't sure if Opencart is compatible with this type of images... if you assign manually an image of this type to a product, is working? Thanks! Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 18.10.2022 в 18:38, DevmanExtensions сказал: Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 20, 2022 Author Share Posted October 20, 2022 On 10/20/2022 at 11:07 AM, Focster2019 said: Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Hi! About images: Understood... exactly, doesn't exist a fast solution for it... you can send us by private the extension that is converting images and maybe we will can "integrate" it in Import export PRO (custom develop quoted). About conditions: I think that you have to use in column "Status" the original values of "Quantity" column ("no", "yes"...) and not the converted values. Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 (edited) 20.10.2022 в 16:18, DevmanExtensions сказал: Об условиях: я думаю, что вы должны использовать в столбце «Статус» исходные значения столбца «Количество» («нет», «да»...), а не преобразованные значения. Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> Edited October 20, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 21, 2022 Author Share Posted October 21, 2022 On 10/20/2022 at 4:20 PM, Focster2019 said: Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted November 2, 2022 Share Posted November 2, 2022 (edited) 21.10.2022 в 14:08, DevmanExtensions сказал: I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Edited November 2, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 12:22 AM, Focster2019 said: Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Is probably that attribute values only are being assigned by 1 language... try next: - Change your admin language (if is in ukranian change it to russian or viceverse) - Go to edit a product, tab "Attribues" - You see now attributes?? If the profile that you are using for import these products and attributes has "multilanguage" feature enabled, you have to make sure that all language columns has a value, else, will be imported like empty and probably won't be loaded depending of language loaded in session. Use "Default value" in case that your vendor is not giving you the values in all possible languages. Link to comment Share on other sites More sharing options... Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Модули обмена данными Модуль Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News 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 × 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
pretzel Posted September 6, 2022 Share Posted September 6, 2022 Усім привіт. Маю питання по модулю є колнка в котрій є ціна товару чи можливо на базі того що є ціна, заповнити зразу декілька колонок при імпорті ? бо якщо я намагаюся заповнити і ціну і статус на складі, то менівидає помилку, що неможливо використати одну колонку 2 рази... Link to comment Share on other sites More sharing options...
DevmanExtensions Posted September 6, 2022 Author Share Posted September 6, 2022 On 9/6/2022 at 4:30 PM, pretzel said: Усім привіт. Маю питання по модулю є колнка в котрій є ціна товару чи можливо на базі того що є ціна, заповнити зразу декілька колонок при імпорті ? бо якщо я намагаюся заповнити і ціну і статус на складі, то менівидає помилку, що неможливо використати одну колонку 2 рази... Hi! For it, you can use "Default value" or "Conditional value", putting the column name between brackets: [price] Link to comment Share on other sites More sharing options... 4 weeks later... rsn Posted October 3, 2022 Share Posted October 3, 2022 здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 3, 2022 Author Share Posted October 3, 2022 On 10/3/2022 at 7:44 AM, rsn said: здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Hi! Do you mean that images are inside excel file? regrettably this is not possible import to Opencart, only works in case that contains image links. Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted October 17, 2022 Share Posted October 17, 2022 Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 1:57 AM, Focster2019 said: Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Hi! using "Default value": 1 Link to comment Share on other sites More sharing options... Focster2019 Posted October 18, 2022 Share Posted October 18, 2022 Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 3:45 PM, Focster2019 said: Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Hi! Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Save changes and upload file Go to extensions > modifications and refresh it. We will include this change automatically for new releases. IMPORTANT: Really we aren't sure if Opencart is compatible with this type of images... if you assign manually an image of this type to a product, is working? Thanks! Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 18.10.2022 в 18:38, DevmanExtensions сказал: Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 20, 2022 Author Share Posted October 20, 2022 On 10/20/2022 at 11:07 AM, Focster2019 said: Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Hi! About images: Understood... exactly, doesn't exist a fast solution for it... you can send us by private the extension that is converting images and maybe we will can "integrate" it in Import export PRO (custom develop quoted). About conditions: I think that you have to use in column "Status" the original values of "Quantity" column ("no", "yes"...) and not the converted values. Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 (edited) 20.10.2022 в 16:18, DevmanExtensions сказал: Об условиях: я думаю, что вы должны использовать в столбце «Статус» исходные значения столбца «Количество» («нет», «да»...), а не преобразованные значения. Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> Edited October 20, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 21, 2022 Author Share Posted October 21, 2022 On 10/20/2022 at 4:20 PM, Focster2019 said: Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted November 2, 2022 Share Posted November 2, 2022 (edited) 21.10.2022 в 14:08, DevmanExtensions сказал: I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Edited November 2, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 12:22 AM, Focster2019 said: Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Is probably that attribute values only are being assigned by 1 language... try next: - Change your admin language (if is in ukranian change it to russian or viceverse) - Go to edit a product, tab "Attribues" - You see now attributes?? If the profile that you are using for import these products and attributes has "multilanguage" feature enabled, you have to make sure that all language columns has a value, else, will be imported like empty and probably won't be loaded depending of language loaded in session. Use "Default value" in case that your vendor is not giving you the values in all possible languages. Link to comment Share on other sites More sharing options... Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Модули обмена данными Модуль Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News 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 × 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
rsn Posted October 3, 2022 Share Posted October 3, 2022 здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Link to comment Share on other sites More sharing options...
DevmanExtensions Posted October 3, 2022 Author Share Posted October 3, 2022 On 10/3/2022 at 7:44 AM, rsn said: здравствуйте подскажите можно сделать ваши модулям экспорт только картинок в таблице Hi! Do you mean that images are inside excel file? regrettably this is not possible import to Opencart, only works in case that contains image links. Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted October 17, 2022 Share Posted October 17, 2022 Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 1:57 AM, Focster2019 said: Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Hi! using "Default value": 1 Link to comment Share on other sites More sharing options... Focster2019 Posted October 18, 2022 Share Posted October 18, 2022 Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 3:45 PM, Focster2019 said: Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Hi! Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Save changes and upload file Go to extensions > modifications and refresh it. We will include this change automatically for new releases. IMPORTANT: Really we aren't sure if Opencart is compatible with this type of images... if you assign manually an image of this type to a product, is working? Thanks! Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 18.10.2022 в 18:38, DevmanExtensions сказал: Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 20, 2022 Author Share Posted October 20, 2022 On 10/20/2022 at 11:07 AM, Focster2019 said: Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Hi! About images: Understood... exactly, doesn't exist a fast solution for it... you can send us by private the extension that is converting images and maybe we will can "integrate" it in Import export PRO (custom develop quoted). About conditions: I think that you have to use in column "Status" the original values of "Quantity" column ("no", "yes"...) and not the converted values. Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 (edited) 20.10.2022 в 16:18, DevmanExtensions сказал: Об условиях: я думаю, что вы должны использовать в столбце «Статус» исходные значения столбца «Количество» («нет», «да»...), а не преобразованные значения. Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> Edited October 20, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 21, 2022 Author Share Posted October 21, 2022 On 10/20/2022 at 4:20 PM, Focster2019 said: Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted November 2, 2022 Share Posted November 2, 2022 (edited) 21.10.2022 в 14:08, DevmanExtensions сказал: I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Edited November 2, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 12:22 AM, Focster2019 said: Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Is probably that attribute values only are being assigned by 1 language... try next: - Change your admin language (if is in ukranian change it to russian or viceverse) - Go to edit a product, tab "Attribues" - You see now attributes?? If the profile that you are using for import these products and attributes has "multilanguage" feature enabled, you have to make sure that all language columns has a value, else, will be imported like empty and probably won't be loaded depending of language loaded in session. Use "Default value" in case that your vendor is not giving you the values in all possible languages. Link to comment Share on other sites More sharing options... Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Модули обмена данными Модуль Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News 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 × 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
Focster2019 Posted October 17, 2022 Share Posted October 17, 2022 Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Link to comment Share on other sites More sharing options...
DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 1:57 AM, Focster2019 said: Добрый день. Поставщик получает имя товара с двух переменных <model>KIT </model> <title>Komplekt 785</title> В итоге у него имя товара выходит : Komplekt 785 KIT Как я могу прописать в поле Name значение с этих 2 переменных? Hi! using "Default value": 1 Link to comment Share on other sites More sharing options... Focster2019 Posted October 18, 2022 Share Posted October 18, 2022 Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 3:45 PM, Focster2019 said: Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Hi! Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Save changes and upload file Go to extensions > modifications and refresh it. We will include this change automatically for new releases. IMPORTANT: Really we aren't sure if Opencart is compatible with this type of images... if you assign manually an image of this type to a product, is working? Thanks! Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 18.10.2022 в 18:38, DevmanExtensions сказал: Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 20, 2022 Author Share Posted October 20, 2022 On 10/20/2022 at 11:07 AM, Focster2019 said: Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Hi! About images: Understood... exactly, doesn't exist a fast solution for it... you can send us by private the extension that is converting images and maybe we will can "integrate" it in Import export PRO (custom develop quoted). About conditions: I think that you have to use in column "Status" the original values of "Quantity" column ("no", "yes"...) and not the converted values. Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 (edited) 20.10.2022 в 16:18, DevmanExtensions сказал: Об условиях: я думаю, что вы должны использовать в столбце «Статус» исходные значения столбца «Количество» («нет», «да»...), а не преобразованные значения. Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> Edited October 20, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 21, 2022 Author Share Posted October 21, 2022 On 10/20/2022 at 4:20 PM, Focster2019 said: Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted November 2, 2022 Share Posted November 2, 2022 (edited) 21.10.2022 в 14:08, DevmanExtensions сказал: I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Edited November 2, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 12:22 AM, Focster2019 said: Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Is probably that attribute values only are being assigned by 1 language... try next: - Change your admin language (if is in ukranian change it to russian or viceverse) - Go to edit a product, tab "Attribues" - You see now attributes?? If the profile that you are using for import these products and attributes has "multilanguage" feature enabled, you have to make sure that all language columns has a value, else, will be imported like empty and probably won't be loaded depending of language loaded in session. Use "Default value" in case that your vendor is not giving you the values in all possible languages. Link to comment Share on other sites More sharing options... Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Модули обмена данными Модуль Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News 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 × 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
Focster2019 Posted October 18, 2022 Share Posted October 18, 2022 Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Link to comment Share on other sites More sharing options...
DevmanExtensions Posted October 18, 2022 Author Share Posted October 18, 2022 On 10/18/2022 at 3:45 PM, Focster2019 said: Да, это работает. Спасибо. Ещё обнаружил, что поставщик в одном прайсе передаёт изображения для товаров в jpeg, png и webp. То есть для одних товаров может біть один формат, а для других другой.. Как можно модулем загружать картинки формата webp? Сейчас загружаются только jpeg и png. Hi! Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Save changes and upload file Go to extensions > modifications and refresh it. We will include this change automatically for new releases. IMPORTANT: Really we aren't sure if Opencart is compatible with this type of images... if you assign manually an image of this type to a product, is working? Thanks! Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 18.10.2022 в 18:38, DevmanExtensions сказал: Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 20, 2022 Author Share Posted October 20, 2022 On 10/20/2022 at 11:07 AM, Focster2019 said: Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Hi! About images: Understood... exactly, doesn't exist a fast solution for it... you can send us by private the extension that is converting images and maybe we will can "integrate" it in Import export PRO (custom develop quoted). About conditions: I think that you have to use in column "Status" the original values of "Quantity" column ("no", "yes"...) and not the converted values. Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 (edited) 20.10.2022 в 16:18, DevmanExtensions сказал: Об условиях: я думаю, что вы должны использовать в столбце «Статус» исходные значения столбца «Количество» («нет», «да»...), а не преобразованные значения. Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> Edited October 20, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 21, 2022 Author Share Posted October 21, 2022 On 10/20/2022 at 4:20 PM, Focster2019 said: Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted November 2, 2022 Share Posted November 2, 2022 (edited) 21.10.2022 в 14:08, DevmanExtensions сказал: I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Edited November 2, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 12:22 AM, Focster2019 said: Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Is probably that attribute values only are being assigned by 1 language... try next: - Change your admin language (if is in ukranian change it to russian or viceverse) - Go to edit a product, tab "Attribues" - You see now attributes?? If the profile that you are using for import these products and attributes has "multilanguage" feature enabled, you have to make sure that all language columns has a value, else, will be imported like empty and probably won't be loaded depending of language loaded in session. Use "Default value" in case that your vendor is not giving you the values in all possible languages. Link to comment Share on other sites More sharing options... Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Модули обмена данными Модуль Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News 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 × 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
Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 18.10.2022 в 18:38, DevmanExtensions сказал: Open file "admin/model/extension/module/ie_pro.php" Search line: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg')); Replace by this: $direct_image_url = in_array(strtolower($ext), array('jpg', 'png', 'gif', 'jpeg', 'webp')); Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Link to comment Share on other sites More sharing options...
DevmanExtensions Posted October 20, 2022 Author Share Posted October 20, 2022 On 10/20/2022 at 11:07 AM, Focster2019 said: Доброй ночи. Благодарю вас за помощь. У меня получилось сделать вашу рекомендацию. После этого я увидел, что в папку изображений начали загружаться картинки с расширением webp. Но, да.. вы были правы, они не отображались в товаре на сайте. (мне не помог даже модуль для поддержки webp в опенкарте 3). Мне посоветовали дополнительно использовать модуль Simplepars в котором можно конвертировать webp в jpeg или png. И теперь все фото отображаются в товарах. Но заметил что при повторном импорте товаров меняется соответствие картинок товару. То есть картинки перестают соответствовать. Если товар - видеорегистратор, то картинка его может біть компьютерная мышь. При первом импорте, и после конвертации, соответствие правильное. При втором импорте сбивается. Теперь я думаю, как исправить и автоматизировать это=) Хотел ещё у вас уточнить. Я нашел условие как мне отобразить количество товара. Это у меня работает по формуле:Quantity (*no=0)(*yes=100)(*few=3) условное значение Но я не могу задать условие что бы был включен товар, когда его количество равно 3 или 100 и выключен, когда 0. На картинке я прикрепил свою настройку сейчас. Hi! About images: Understood... exactly, doesn't exist a fast solution for it... you can send us by private the extension that is converting images and maybe we will can "integrate" it in Import export PRO (custom develop quoted). About conditions: I think that you have to use in column "Status" the original values of "Quantity" column ("no", "yes"...) and not the converted values. Link to comment Share on other sites More sharing options... Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 (edited) 20.10.2022 в 16:18, DevmanExtensions сказал: Об условиях: я думаю, что вы должны использовать в столбце «Статус» исходные значения столбца «Количество» («нет», «да»...), а не преобразованные значения. Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> Edited October 20, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted October 21, 2022 Author Share Posted October 21, 2022 On 10/20/2022 at 4:20 PM, Focster2019 said: Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted November 2, 2022 Share Posted November 2, 2022 (edited) 21.10.2022 в 14:08, DevmanExtensions сказал: I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Edited November 2, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 12:22 AM, Focster2019 said: Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Is probably that attribute values only are being assigned by 1 language... try next: - Change your admin language (if is in ukranian change it to russian or viceverse) - Go to edit a product, tab "Attribues" - You see now attributes?? If the profile that you are using for import these products and attributes has "multilanguage" feature enabled, you have to make sure that all language columns has a value, else, will be imported like empty and probably won't be loaded depending of language loaded in session. Use "Default value" in case that your vendor is not giving you the values in all possible languages. Link to comment Share on other sites More sharing options... Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Модули обмена данными Модуль Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News 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 × 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
Focster2019 Posted October 20, 2022 Share Posted October 20, 2022 (edited) 20.10.2022 в 16:18, DevmanExtensions сказал: Об условиях: я думаю, что вы должны использовать в столбце «Статус» исходные значения столбца «Количество» («нет», «да»...), а не преобразованные значения. Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> Edited October 20, 2022 by Focster2019 Link to comment Share on other sites More sharing options...
DevmanExtensions Posted October 21, 2022 Author Share Posted October 21, 2022 On 10/20/2022 at 4:20 PM, Focster2019 said: Спасибо, разбираюсь сейчас с наличием..Но так же не получается что то с атрибутами..Если я указываю значение для первого уровня атрибутов, то у меня создалась на сайте 1 группа и 25 атрибутов, но не прописались значения атрибутов в товары..Когда я указал атрибуты второго и третьего , то ничего не происходит, у меня остаётся так же 25 атрибутов и нет их значений в товарах.. Вот что я делаю.. <properties> <property> <name>Вхідна напруга</name> <value>220 В</value> </property> <property> <name>Вихідна напруга</name> <value>220 В</value> </property> <property> <name>Сила струму на виході</name> <value>16A</value> </property> <property> <name>Особливості</name> <value>Кількість розеток 5</value> </property> <property> <name>Додаткові характеристики</name> <value>захист IP20, IK04</value> </property> <property> <name>Довжина кабеля</name> <value>1.5 м</value> </property> <property> <name>Розміри</name> <value>7.6x5.6x32.7 см</value> </property> </properties> I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Link to comment Share on other sites More sharing options... 2 weeks later... Focster2019 Posted November 2, 2022 Share Posted November 2, 2022 (edited) 21.10.2022 в 14:08, DevmanExtensions сказал: I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Edited November 2, 2022 by Focster2019 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 12:22 AM, Focster2019 said: Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Is probably that attribute values only are being assigned by 1 language... try next: - Change your admin language (if is in ukranian change it to russian or viceverse) - Go to edit a product, tab "Attribues" - You see now attributes?? If the profile that you are using for import these products and attributes has "multilanguage" feature enabled, you have to make sure that all language columns has a value, else, will be imported like empty and probably won't be loaded depending of language loaded in session. Use "Default value" in case that your vendor is not giving you the values in all possible languages. Link to comment Share on other sites More sharing options... Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Модули обмена данными Модуль Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets [Поддержка] Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Alta — тема для админ панели By impulze100500 Sorting modules in layout Drag&Drop By markimax Additional services for SAP modules By S_A_P Opencart ChatGPT - artificial intelligence content generator By kabantejay Custom Email By Parallax
Focster2019 Posted November 2, 2022 Share Posted November 2, 2022 (edited) 21.10.2022 в 14:08, DevmanExtensions сказал: I can't understand you very well... can you show me the import product result of this screenshot? (tab "Attributes") Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Edited November 2, 2022 by Focster2019 Link to comment Share on other sites More sharing options...
DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 12:22 AM, Focster2019 said: Извините, долго не мог ответить. У нас в Украине сейчас немного перебои с интернетом.. Вот фото.. То есть я получаю выгрузку с группами атрибутов и сами атрибуты.. Но атрибуты не вносятся в товары и не отображаются в товарах. Я так понимаю, что значения атрибутов не привязываются к товарам. Почему? Что я не так делаю? Так же мой поставщик даёт мне прайс только на Украинском языке. В магазине у меня 2 языка Украинский и Русский. При импорте товаров у меня описание прописывается на украинском для 2х языков. Я нашел модуль , который использует Google api translate и перевёл все категории русского языка на русский., но они снова становятся на Украинском языке при следующей синхронизации с прайсом поставщика. (обмен идёт по xml). Мне нужно понять, как сохранить мой перевод и не терять его при следующих обновлениях прайса поставщика. т.к. я хочу перевести ещё и все описания товаров. Sorry, I couldn't answer for a long time. We have a bit of interruptions with the Internet in Ukraine now. Here is a photo.. That is, I get an upload with attribute groups and the attributes themselves.. But the attributes are not added to the products and are not displayed in the products. As I understand it, attribute values are not bound to products. Why? What am I doing wrong? Also, my supplier gives me a price list only in Ukrainian. In the store I have 2 languages Ukrainian and Russian. When importing goods, my description is written in Ukrainian for 2 languages. I found a module that uses Google api translate and translated all categories of the Russian language into Russian, but they become Ukrainian again the next time they synchronize with the supplier's price list. (the exchange goes on xml). I need to figure out how to save my translation and not lose it with the next supplier price list updates. because I want to translate also all product descriptions. Настройка для категорий Customization for categories Is probably that attribute values only are being assigned by 1 language... try next: - Change your admin language (if is in ukranian change it to russian or viceverse) - Go to edit a product, tab "Attribues" - You see now attributes?? If the profile that you are using for import these products and attributes has "multilanguage" feature enabled, you have to make sure that all language columns has a value, else, will be imported like empty and probably won't be loaded depending of language loaded in session. Use "Default value" in case that your vendor is not giving you the values in all possible languages. Link to comment Share on other sites More sharing options... Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения Модули обмена данными Модуль Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets [Поддержка]
Focster2019 Posted November 3, 2022 Share Posted November 3, 2022 03.11.2022 в 08:56, DevmanExtensions сказал: Вероятно, значения атрибутов присваиваются только 1 языком... попробуйте следующее: - Измените язык админки (если на украинском смените на русский или наоборот) - Перейти к редактированию товара, вкладка "Атрибуты" - Ты видишь теперь атрибуты?? Если в профиле, который вы используете для импорта этих продуктов и атрибутов, включена функция «многоязычность», вы должны убедиться, что все языковые столбцы имеют значение, иначе они будут импортированы как пустые и, вероятно, не будут загружены в зависимости от языка. загружается в сеансе. Используйте «Значение по умолчанию», если ваш поставщик не предоставляет вам значения на всех возможных языках. Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Link to comment Share on other sites More sharing options...
DevmanExtensions Posted November 3, 2022 Author Share Posted November 3, 2022 On 11/3/2022 at 6:06 PM, Focster2019 said: Before I write to you, I did just that. I changed the language of the admin panel to another. Then I changed it back.. Yes, there are attributes and attribute groups for one language, but the products still do not have attribute values for any language I think that you need to somehow correctly specify it in the settings .. And for this reason they don’t appear in my products ., but I don’t understand how to write it down correctly .. I can't leave the default settings (like for one language). I have 2 of them in the store .. If you leave the default settings, then the first language is automatically registered in the second language Send me by message admin opencart user and say me what import profile are you using, also send me xml file in case that you are uploading it manually. Link to comment Share on other sites More sharing options... santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options... DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24 Go to topic listing Similar Content Модуль CSV Price Pro import/export [Поддержка] 1 2 3 4 240 By costas, July 1, 2012 import export (and 21 more) Tagged with: import export price product импорт экспорт excel синхронизация opencartlabs csv csv xls csv import csv файл обмен данными миграция перенос товара прайс-лист прайс xls крон cron автоматический импорт экспорт заказов в excel экспорт заказов 5,977 replies 767,405 views BestFish March 10 Модуль Экспорт-импорт export import .xlsx для OCSTORE 2.x [Поддержка] 1 2 3 4 94 By pashast, March 8, 2016 главные категории import (and 1 more) Tagged with: главные категории import export 2,332 replies 419,355 views Artemkos88 January 24 Import/Export Pro - XLSX -XLS - CSV - XML - JSON - Google Spreadsheets By DevmanExtensions, July 6, 2018 export import excel (and 22 more) Tagged with: export import excel import xlsx import xls import csv import xml import google spread export excel export xlsx export xls export csv export xml export google spread excel масове изменения товаров обновления акций бекапы электронная таблица import яндекс yml xml yml xls json 0 comments 48,093 views DevmanExtensions July 6, 2018 Как настроить работу с Universal Import/Export Pro By faritk59, July 28, 2022 2 replies 751 views WarStyle February 7 Модуль Nice Import XML — бесплатный модуль импорта товаров для OpenCart / ocStore [Поддержка] By SergeTkach, February 24 іморт xml імпорт (and 4 more) Tagged with: іморт xml імпорт импорт import import xml импорт xml 6 replies 204 views bodyan4yk March 20 Recently Browsing 0 members No registered users viewing this page.
santur Posted November 8, 2022 Share Posted November 8, 2022 Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Link to comment Share on other sites More sharing options...
DevmanExtensions Posted November 8, 2022 Author Share Posted November 8, 2022 On 11/8/2022 at 10:28 AM, santur said: Добрый день! Перестал загружаться модуль. Подскажите, в чем может быть причина и как можно починить обратно? Ошибка: Warning: Error while sending QUERY packet. PID=18570 in /home/a/.../public_html/system/library/db/mysqli.php on line 18Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />CREATE TABLE IF NOT EXISTS `oc_ocdevwizard_setting` (`setting_id` int(11) NOT NULL AUTO_INCREMENT,`store_id` int(11) NOT NULL DEFAULT '0',`code` text NOT NULL,`key` text NOT NULL,`value` text NOT NULL,`serialized` tinyint(1) NOT NULL,PRIMARY KEY (`setting_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1; in /home/a/alexzh/public_html/system/library/db/mysqli.php:40 Stack trace: #0 /home/a/.../public_html/system/library/db.php(45): DB\MySQLi->query('CREATE TABLE IF...') #1 /home/a/..../public_html/admin/model/extension/ocdevwizard/form_builder.php(426): DB->query('CREATE TABLE IF...') #2 /home/a/..../main_storage/modification/system/engine/loader.php(251): ModelExtensionOcdevwizardFormBuilder->createDBTables() #3 /home/a/...../public_html/system/engine/proxy.php(47): Loader->{closure}(Array, Array) #4 /home/a/...../main_storage/modification/admin/controller/common/header.php(9): Proxy->__cal in /home/a/..../public_html/system/library/db/mysqli.php on line 40Fatal error: Uncaught Exception: Error: MySQL server has gone away<br />Error No: 2006<br />REPLACE INTO `oc_session` SET session_id = 'a0f254ebf90569a11121f0af7e', `data` = '{\"currency\":\"RUB\",\"user_id\":\"1\",\"user_token\":\"eTCoYlou8bY6WSftYj5UemlqSqvJtlWD\",\"prmn.city_manager\":{\"country_id\":\"176\",\"country_name\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u044f\",\"country_name_gc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"country_name_pc\":\"\\u0420\\u043e\\u0441\\u0441\\u0438\\u0438\",\"zone_id\":\"4241\",\"zone_name\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u0430\\u044f\",\"zone_name_gc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"zone_name_pc\":\"\\u0421\\u0432\\u0435\\u0440\\u0434\\u043b\\u043e\\u0432\\u0441\\u043a\\u043e\\u0439\",\"prefix_zone_name\":\"\\u043e\\u0431\\u043b.\",\"district_name\":null,\"district_name_gc\":null,\"district_name_pc\":null,\"prefix_district_name\":null,\"city_name\":\"\\u0415\\u043a\\u0430 in /home/a/..../public_html/system/library/db/mysqli.php on line 40 Hi! This is an error from your MYSQL server, probably will be solved if you increase the directive "wait_timeout" in your server settings, put in contact with your hosting support team please. Thanks! Link to comment Share on other sites More sharing options... Prev 29 30 31 32 33 34 35 36 Next Page 34 of 36 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 24
Recommended Posts