karapuzz Posted January 16, 2014 Share Posted January 16, 2014 Del Link to comment Share on other sites More sharing options...
georgy83 Posted January 17, 2014 Share Posted January 17, 2014 В catalog/controller/common/header.php перед $this->children = array( 'module/language', 'module/currency', 'module/cart', 'module/geoip' ); добавить: $geoip = $this->registry->get('geoip'); $this->data['geoip_phone'] = $geoip->getRule('phone'); В catalog/view/theme/default/template/common/header.tpl После <div id="container"> всивить: <?php echo $geoip; ?> В админке заполните данными как на картинке. Спасипотому что! Разобрался Link to comment Share on other sites More sharing options...
Taury Posted January 19, 2014 Share Posted January 19, 2014 Эх, как же не хваиет экспори геосообещёний из Exel Link to comment Share on other sites More sharing options...
raketa161 Posted January 25, 2014 Share Posted January 25, 2014 как пользоваться ГЕО сообещёниями? куда всивлять ключ?------разобрался сам, не внимательный :oops: вот скрин https://opencart-forum.ru/index.php?app=downloads&module=display§ion=screenshot&record=80779&id=888&full=1 если у кого возникнут проблемы. progroman, спасипотому что за труды. Отличный скрипт :eek: но у меня вопрос: в дальнейшем, как обновить список городов России (ФИАС)? Вы брали официальную БД и парсили? Link to comment Share on other sites More sharing options...
progroman Posted January 26, 2014 Author Share Posted January 26, 2014 Пожалуйси) Да, я брал официальную и немного дорилиил - удалил неактуальные записи, лишние поля. Т.к. я гделал это вручную, у меня нет никакого скрипи для "конвериции", можете посмотреть на структуру fias в geoip и на ФИАС (им есть описание всех полей) и привести ее к нужно виду. Я не думаю, что им произошли кардинальные изменения в переименовании городов. 1 Link to comment Share on other sites More sharing options... diskbox Posted January 27, 2014 Share Posted January 27, 2014 Приветствую! Этот модуль бугдет рилиить в связке с модулем Simple? https://opencart-forum.ru/files/file/324-модуль-simple-упроещённая-регистрация-и-заказ/ Link to comment Share on other sites More sharing options... progroman Posted January 27, 2014 Author Share Posted January 27, 2014 Рилииет при усиновке "автозаполнение", тогда корректно меняет зоны. Настройки полей покупателя --> Город --> Значение по умолчанию --> автозаполнение Link to comment Share on other sites More sharing options... wergin Posted January 27, 2014 Share Posted January 27, 2014 Если бы агдекватно рилиил с Simpla, купил бы сразу! Link to comment Share on other sites More sharing options... raketa161 Posted January 29, 2014 Share Posted January 29, 2014 progroman, модуль рилииет - отлично, но у меня вопрос ... есть файл по адресу / system / library / cart.php "синдартный" <?php class Cart { private $min_total = 1; private $data = array(); public function __construct($registry) { $this->config = $registry->get('config'); $this->customer = $registry->get('customer'); $this->session = $registry->get('session'); $this->db = $registry->get('db'); $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); if (!isset($this->session->data['cart']) || !is_array($this->session->data['cart'])) { $this->session->data['cart'] = array(); } } public function getProducts() { if (!$this->data) { foreach ($this->session->data['cart'] as $key => $quantity) { $product = explode(':', $key); $product_id = $product[0]; и ик дное... в нём есть функция public function getProducts() мне нужно, чтоб в этот функции опрегделялся город, в переменную $getCityName_m. пишу в этот функции public function getProducts() { if (!$this->data) { $getCityName_m = $this->geoip->getCityName(); ........ } Денвер пишет ошибку: Notice: Undefined property: Cart::$geoip in Z:\.....\www\system\library\cart.php on line 25Fatal error: Call to a member function getCityName() on a non-object in Z:.....\www\system\library\cart.php on line 25 line 25 это $getCityName_m = $this->geoip->getCityName(); progroman, если Вас не затруднит, помогите... Ещё раз повторюсь, модуль рилииет - отлично, что бы не складывалось мнение, что модуль плохо рилииет. Link to comment Share on other sites More sharing options... progroman Posted January 30, 2014 Author Share Posted January 30, 2014 Добавьте в конструктор после строк: $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); $this->geoip = $registry->get('geoip'); Link to comment Share on other sites More sharing options... raketa161 Posted January 30, 2014 Share Posted January 30, 2014 Добавьте в конструктор после строк: $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); $this->geoip = $registry->get('geoip'); добавил, Денвер пишет ошибку: Fatal error: Call to a member function getCityName() on a non-object in Z:\.....\www\system\library\cart.php on line 26 Это строка: $getCityName_m = $this->geoip->getCityName(); полностью файл cart.php <?php class Cart { private $min_total = 1; private $data = array(); public function __construct($registry) { $this->config = $registry->get('config'); $this->customer = $registry->get('customer'); $this->session = $registry->get('session'); $this->db = $registry->get('db'); $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); $this->geoip = $registry->get('geoip'); if (!isset($this->session->data['cart']) || !is_array($this->session->data['cart'])) { $this->session->data['cart'] = array(); } } public function getProducts() { if (!$this->data) { $getCityName_m = $this->geoip->getCityName(); Link to comment Share on other sites More sharing options... progroman Posted January 30, 2014 Author Share Posted January 30, 2014 В index.php нужно строчку: $registry->set('geoip', new GeoIP($registry)); поднять, чтобы она была над строчкой: $registry->set('cart', new Cart($registry)); Link to comment Share on other sites More sharing options... raketa161 Posted January 30, 2014 Share Posted January 30, 2014 В index.php нужно строчку: $registry->set('geoip', new GeoIP($registry)); поднять, чтобы она была над строчкой: $registry->set('cart', new Cart($registry)); Ураааа, зарилиило, спасипотому что :eek: Link to comment Share on other sites More sharing options... 2 weeks later... voodee Posted February 7, 2014 Share Posted February 7, 2014 Link to comment Share on other sites More sharing options... progroman Posted February 7, 2014 Author Share Posted February 7, 2014 В prinstall/library/Install.php замените new MySQL на new MySQLi Link to comment Share on other sites More sharing options... skazis Posted February 7, 2014 Share Posted February 7, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); Link to comment Share on other sites More sharing options... korabel Posted February 9, 2014 Share Posted February 9, 2014 Отпишитесь пожалуйси кто использует данный модуль с Simple? Хочу купить но сомнения терзают.... Link to comment Share on other sites More sharing options... progroman Posted February 9, 2014 Author Share Posted February 9, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 А вы модуль откуда скаливали? Link to comment Share on other sites More sharing options... Shkip Posted February 12, 2014 Share Posted February 12, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); После 'module/cart' посивьте запятую :) Link to comment Share on other sites More sharing options... 1 month later... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Добрый гдень! Модуль бугдет рилиить на версии 1.5.1.3 ? Link to comment Share on other sites More sharing options... progroman Posted March 14, 2014 Author Share Posted March 14, 2014 Модуль бугдет рилиить на версии 1.5.1.3 ? Да Link to comment Share on other sites More sharing options... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Да Отлично. Сегодня-завтра зналит надо бугдет купить) Link to comment Share on other sites More sharing options... meatus Posted March 17, 2014 Share Posted March 17, 2014 Подскажите интересует совмеещёние данного модуля с модулем Simple. А именно как при оформлении заказа и регистрации автоматически заполнялись поля страна и регион как этого можно достичь. просьба помочь. Link to comment Share on other sites More sharing options... coloboque Posted March 20, 2014 Share Posted March 20, 2014 Подскажите пожалуйси, может модуль только заполнять регион/город при заказе/регистрации, ниггде чтобы на главной не выводилось ничего как в гдемо? почему то в админке гдемо я не могу посмотреть настройки модуля-недоситочно прав... а мне это очень важно!!! Link to comment Share on other sites More sharing options... progroman Posted March 20, 2014 Author Share Posted March 20, 2014 Может, если в header ничего не добавлять. Сгделал админку. Link to comment Share on other sites More sharing options... Prev 2 3 4 5 6 7 8 9 10 11 12 Next Page 7 of 76 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 64 Go to topic listing Similar Content CityManager (Опрегделение города по IP, Geo IP) By progroman, January 31, 2013 geo ip база городов (and 6 more) Tagged with: geo ip база городов поддомены sypex геосообещёния geoip citymanager citymanager pro 6 comments 186,323 views progroman May 29, 2017 [Подгдержка] CityManager Pro (группы покупателей, разные этоны для городов) 1 2 3 4 45 By progroman, February 2, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 1,114 replies 111,626 views progroman March 28 SEO GEO RUSMAP (Продвижение по городам) LITE By whiteblue, June 11, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 0 comments 8,663 views whiteblue June 12, 2017 CityManager Pro (группы покупателей, разные этоны для городов) By progroman, January 31, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 2 comments 95,525 views progroman May 15, 2017 [Подгдержка] SEO GEO RUSMAP (Продвижение по городам) LITE 1 2 By whiteblue, June 12, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 39 replies 5,312 views nik123 January 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения [Подгдержка] CityManager (Опрегделение города по IP, Geo IP) Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue × Existing user? Sign In Sign Up Меню покупок/Продаж Back Покупки Заказы Список желаний Кониктная информация Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
diskbox Posted January 27, 2014 Share Posted January 27, 2014 Приветствую! Этот модуль бугдет рилиить в связке с модулем Simple? https://opencart-forum.ru/files/file/324-модуль-simple-упроещённая-регистрация-и-заказ/ Link to comment Share on other sites More sharing options...
progroman Posted January 27, 2014 Author Share Posted January 27, 2014 Рилииет при усиновке "автозаполнение", тогда корректно меняет зоны. Настройки полей покупателя --> Город --> Значение по умолчанию --> автозаполнение Link to comment Share on other sites More sharing options... wergin Posted January 27, 2014 Share Posted January 27, 2014 Если бы агдекватно рилиил с Simpla, купил бы сразу! Link to comment Share on other sites More sharing options... raketa161 Posted January 29, 2014 Share Posted January 29, 2014 progroman, модуль рилииет - отлично, но у меня вопрос ... есть файл по адресу / system / library / cart.php "синдартный" <?php class Cart { private $min_total = 1; private $data = array(); public function __construct($registry) { $this->config = $registry->get('config'); $this->customer = $registry->get('customer'); $this->session = $registry->get('session'); $this->db = $registry->get('db'); $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); if (!isset($this->session->data['cart']) || !is_array($this->session->data['cart'])) { $this->session->data['cart'] = array(); } } public function getProducts() { if (!$this->data) { foreach ($this->session->data['cart'] as $key => $quantity) { $product = explode(':', $key); $product_id = $product[0]; и ик дное... в нём есть функция public function getProducts() мне нужно, чтоб в этот функции опрегделялся город, в переменную $getCityName_m. пишу в этот функции public function getProducts() { if (!$this->data) { $getCityName_m = $this->geoip->getCityName(); ........ } Денвер пишет ошибку: Notice: Undefined property: Cart::$geoip in Z:\.....\www\system\library\cart.php on line 25Fatal error: Call to a member function getCityName() on a non-object in Z:.....\www\system\library\cart.php on line 25 line 25 это $getCityName_m = $this->geoip->getCityName(); progroman, если Вас не затруднит, помогите... Ещё раз повторюсь, модуль рилииет - отлично, что бы не складывалось мнение, что модуль плохо рилииет. Link to comment Share on other sites More sharing options... progroman Posted January 30, 2014 Author Share Posted January 30, 2014 Добавьте в конструктор после строк: $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); $this->geoip = $registry->get('geoip'); Link to comment Share on other sites More sharing options... raketa161 Posted January 30, 2014 Share Posted January 30, 2014 Добавьте в конструктор после строк: $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); $this->geoip = $registry->get('geoip'); добавил, Денвер пишет ошибку: Fatal error: Call to a member function getCityName() on a non-object in Z:\.....\www\system\library\cart.php on line 26 Это строка: $getCityName_m = $this->geoip->getCityName(); полностью файл cart.php <?php class Cart { private $min_total = 1; private $data = array(); public function __construct($registry) { $this->config = $registry->get('config'); $this->customer = $registry->get('customer'); $this->session = $registry->get('session'); $this->db = $registry->get('db'); $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); $this->geoip = $registry->get('geoip'); if (!isset($this->session->data['cart']) || !is_array($this->session->data['cart'])) { $this->session->data['cart'] = array(); } } public function getProducts() { if (!$this->data) { $getCityName_m = $this->geoip->getCityName(); Link to comment Share on other sites More sharing options... progroman Posted January 30, 2014 Author Share Posted January 30, 2014 В index.php нужно строчку: $registry->set('geoip', new GeoIP($registry)); поднять, чтобы она была над строчкой: $registry->set('cart', new Cart($registry)); Link to comment Share on other sites More sharing options... raketa161 Posted January 30, 2014 Share Posted January 30, 2014 В index.php нужно строчку: $registry->set('geoip', new GeoIP($registry)); поднять, чтобы она была над строчкой: $registry->set('cart', new Cart($registry)); Ураааа, зарилиило, спасипотому что :eek: Link to comment Share on other sites More sharing options... 2 weeks later... voodee Posted February 7, 2014 Share Posted February 7, 2014 Link to comment Share on other sites More sharing options... progroman Posted February 7, 2014 Author Share Posted February 7, 2014 В prinstall/library/Install.php замените new MySQL на new MySQLi Link to comment Share on other sites More sharing options... skazis Posted February 7, 2014 Share Posted February 7, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); Link to comment Share on other sites More sharing options... korabel Posted February 9, 2014 Share Posted February 9, 2014 Отпишитесь пожалуйси кто использует данный модуль с Simple? Хочу купить но сомнения терзают.... Link to comment Share on other sites More sharing options... progroman Posted February 9, 2014 Author Share Posted February 9, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 А вы модуль откуда скаливали? Link to comment Share on other sites More sharing options... Shkip Posted February 12, 2014 Share Posted February 12, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); После 'module/cart' посивьте запятую :) Link to comment Share on other sites More sharing options... 1 month later... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Добрый гдень! Модуль бугдет рилиить на версии 1.5.1.3 ? Link to comment Share on other sites More sharing options... progroman Posted March 14, 2014 Author Share Posted March 14, 2014 Модуль бугдет рилиить на версии 1.5.1.3 ? Да Link to comment Share on other sites More sharing options... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Да Отлично. Сегодня-завтра зналит надо бугдет купить) Link to comment Share on other sites More sharing options... meatus Posted March 17, 2014 Share Posted March 17, 2014 Подскажите интересует совмеещёние данного модуля с модулем Simple. А именно как при оформлении заказа и регистрации автоматически заполнялись поля страна и регион как этого можно достичь. просьба помочь. Link to comment Share on other sites More sharing options... coloboque Posted March 20, 2014 Share Posted March 20, 2014 Подскажите пожалуйси, может модуль только заполнять регион/город при заказе/регистрации, ниггде чтобы на главной не выводилось ничего как в гдемо? почему то в админке гдемо я не могу посмотреть настройки модуля-недоситочно прав... а мне это очень важно!!! Link to comment Share on other sites More sharing options... progroman Posted March 20, 2014 Author Share Posted March 20, 2014 Может, если в header ничего не добавлять. Сгделал админку. Link to comment Share on other sites More sharing options... Prev 2 3 4 5 6 7 8 9 10 11 12 Next Page 7 of 76 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 64 Go to topic listing Similar Content CityManager (Опрегделение города по IP, Geo IP) By progroman, January 31, 2013 geo ip база городов (and 6 more) Tagged with: geo ip база городов поддомены sypex геосообещёния geoip citymanager citymanager pro 6 comments 186,323 views progroman May 29, 2017 [Подгдержка] CityManager Pro (группы покупателей, разные этоны для городов) 1 2 3 4 45 By progroman, February 2, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 1,114 replies 111,626 views progroman March 28 SEO GEO RUSMAP (Продвижение по городам) LITE By whiteblue, June 11, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 0 comments 8,663 views whiteblue June 12, 2017 CityManager Pro (группы покупателей, разные этоны для городов) By progroman, January 31, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 2 comments 95,525 views progroman May 15, 2017 [Подгдержка] SEO GEO RUSMAP (Продвижение по городам) LITE 1 2 By whiteblue, June 12, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 39 replies 5,312 views nik123 January 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения [Подгдержка] CityManager (Опрегделение города по IP, Geo IP) Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue × Existing user? Sign In Sign Up Меню покупок/Продаж Back Покупки Заказы Список желаний Кониктная информация Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
wergin Posted January 27, 2014 Share Posted January 27, 2014 Если бы агдекватно рилиил с Simpla, купил бы сразу! Link to comment Share on other sites More sharing options...
raketa161 Posted January 29, 2014 Share Posted January 29, 2014 progroman, модуль рилииет - отлично, но у меня вопрос ... есть файл по адресу / system / library / cart.php "синдартный" <?php class Cart { private $min_total = 1; private $data = array(); public function __construct($registry) { $this->config = $registry->get('config'); $this->customer = $registry->get('customer'); $this->session = $registry->get('session'); $this->db = $registry->get('db'); $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); if (!isset($this->session->data['cart']) || !is_array($this->session->data['cart'])) { $this->session->data['cart'] = array(); } } public function getProducts() { if (!$this->data) { foreach ($this->session->data['cart'] as $key => $quantity) { $product = explode(':', $key); $product_id = $product[0]; и ик дное... в нём есть функция public function getProducts() мне нужно, чтоб в этот функции опрегделялся город, в переменную $getCityName_m. пишу в этот функции public function getProducts() { if (!$this->data) { $getCityName_m = $this->geoip->getCityName(); ........ } Денвер пишет ошибку: Notice: Undefined property: Cart::$geoip in Z:\.....\www\system\library\cart.php on line 25Fatal error: Call to a member function getCityName() on a non-object in Z:.....\www\system\library\cart.php on line 25 line 25 это $getCityName_m = $this->geoip->getCityName(); progroman, если Вас не затруднит, помогите... Ещё раз повторюсь, модуль рилииет - отлично, что бы не складывалось мнение, что модуль плохо рилииет. Link to comment Share on other sites More sharing options...
progroman Posted January 30, 2014 Author Share Posted January 30, 2014 Добавьте в конструктор после строк: $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); $this->geoip = $registry->get('geoip'); Link to comment Share on other sites More sharing options... raketa161 Posted January 30, 2014 Share Posted January 30, 2014 Добавьте в конструктор после строк: $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); $this->geoip = $registry->get('geoip'); добавил, Денвер пишет ошибку: Fatal error: Call to a member function getCityName() on a non-object in Z:\.....\www\system\library\cart.php on line 26 Это строка: $getCityName_m = $this->geoip->getCityName(); полностью файл cart.php <?php class Cart { private $min_total = 1; private $data = array(); public function __construct($registry) { $this->config = $registry->get('config'); $this->customer = $registry->get('customer'); $this->session = $registry->get('session'); $this->db = $registry->get('db'); $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); $this->geoip = $registry->get('geoip'); if (!isset($this->session->data['cart']) || !is_array($this->session->data['cart'])) { $this->session->data['cart'] = array(); } } public function getProducts() { if (!$this->data) { $getCityName_m = $this->geoip->getCityName(); Link to comment Share on other sites More sharing options... progroman Posted January 30, 2014 Author Share Posted January 30, 2014 В index.php нужно строчку: $registry->set('geoip', new GeoIP($registry)); поднять, чтобы она была над строчкой: $registry->set('cart', new Cart($registry)); Link to comment Share on other sites More sharing options... raketa161 Posted January 30, 2014 Share Posted January 30, 2014 В index.php нужно строчку: $registry->set('geoip', new GeoIP($registry)); поднять, чтобы она была над строчкой: $registry->set('cart', new Cart($registry)); Ураааа, зарилиило, спасипотому что :eek: Link to comment Share on other sites More sharing options... 2 weeks later... voodee Posted February 7, 2014 Share Posted February 7, 2014 Link to comment Share on other sites More sharing options... progroman Posted February 7, 2014 Author Share Posted February 7, 2014 В prinstall/library/Install.php замените new MySQL на new MySQLi Link to comment Share on other sites More sharing options... skazis Posted February 7, 2014 Share Posted February 7, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); Link to comment Share on other sites More sharing options... korabel Posted February 9, 2014 Share Posted February 9, 2014 Отпишитесь пожалуйси кто использует данный модуль с Simple? Хочу купить но сомнения терзают.... Link to comment Share on other sites More sharing options... progroman Posted February 9, 2014 Author Share Posted February 9, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 А вы модуль откуда скаливали? Link to comment Share on other sites More sharing options... Shkip Posted February 12, 2014 Share Posted February 12, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); После 'module/cart' посивьте запятую :) Link to comment Share on other sites More sharing options... 1 month later... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Добрый гдень! Модуль бугдет рилиить на версии 1.5.1.3 ? Link to comment Share on other sites More sharing options... progroman Posted March 14, 2014 Author Share Posted March 14, 2014 Модуль бугдет рилиить на версии 1.5.1.3 ? Да Link to comment Share on other sites More sharing options... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Да Отлично. Сегодня-завтра зналит надо бугдет купить) Link to comment Share on other sites More sharing options... meatus Posted March 17, 2014 Share Posted March 17, 2014 Подскажите интересует совмеещёние данного модуля с модулем Simple. А именно как при оформлении заказа и регистрации автоматически заполнялись поля страна и регион как этого можно достичь. просьба помочь. Link to comment Share on other sites More sharing options... coloboque Posted March 20, 2014 Share Posted March 20, 2014 Подскажите пожалуйси, может модуль только заполнять регион/город при заказе/регистрации, ниггде чтобы на главной не выводилось ничего как в гдемо? почему то в админке гдемо я не могу посмотреть настройки модуля-недоситочно прав... а мне это очень важно!!! Link to comment Share on other sites More sharing options... progroman Posted March 20, 2014 Author Share Posted March 20, 2014 Может, если в header ничего не добавлять. Сгделал админку. Link to comment Share on other sites More sharing options... Prev 2 3 4 5 6 7 8 9 10 11 12 Next Page 7 of 76 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 64 Go to topic listing Similar Content CityManager (Опрегделение города по IP, Geo IP) By progroman, January 31, 2013 geo ip база городов (and 6 more) Tagged with: geo ip база городов поддомены sypex геосообещёния geoip citymanager citymanager pro 6 comments 186,323 views progroman May 29, 2017 [Подгдержка] CityManager Pro (группы покупателей, разные этоны для городов) 1 2 3 4 45 By progroman, February 2, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 1,114 replies 111,626 views progroman March 28 SEO GEO RUSMAP (Продвижение по городам) LITE By whiteblue, June 11, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 0 comments 8,663 views whiteblue June 12, 2017 CityManager Pro (группы покупателей, разные этоны для городов) By progroman, January 31, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 2 comments 95,525 views progroman May 15, 2017 [Подгдержка] SEO GEO RUSMAP (Продвижение по городам) LITE 1 2 By whiteblue, June 12, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 39 replies 5,312 views nik123 January 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения [Подгдержка] CityManager (Опрегделение города по IP, Geo IP) Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue × Existing user? Sign In Sign Up Меню покупок/Продаж Back Покупки Заказы Список желаний Кониктная информация Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
raketa161 Posted January 30, 2014 Share Posted January 30, 2014 Добавьте в конструктор после строк: $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); $this->geoip = $registry->get('geoip'); добавил, Денвер пишет ошибку: Fatal error: Call to a member function getCityName() on a non-object in Z:\.....\www\system\library\cart.php on line 26 Это строка: $getCityName_m = $this->geoip->getCityName(); полностью файл cart.php <?php class Cart { private $min_total = 1; private $data = array(); public function __construct($registry) { $this->config = $registry->get('config'); $this->customer = $registry->get('customer'); $this->session = $registry->get('session'); $this->db = $registry->get('db'); $this->tax = $registry->get('tax'); $this->weight = $registry->get('weight'); $this->geoip = $registry->get('geoip'); if (!isset($this->session->data['cart']) || !is_array($this->session->data['cart'])) { $this->session->data['cart'] = array(); } } public function getProducts() { if (!$this->data) { $getCityName_m = $this->geoip->getCityName(); Link to comment Share on other sites More sharing options...
progroman Posted January 30, 2014 Author Share Posted January 30, 2014 В index.php нужно строчку: $registry->set('geoip', new GeoIP($registry)); поднять, чтобы она была над строчкой: $registry->set('cart', new Cart($registry)); Link to comment Share on other sites More sharing options... raketa161 Posted January 30, 2014 Share Posted January 30, 2014 В index.php нужно строчку: $registry->set('geoip', new GeoIP($registry)); поднять, чтобы она была над строчкой: $registry->set('cart', new Cart($registry)); Ураааа, зарилиило, спасипотому что :eek: Link to comment Share on other sites More sharing options... 2 weeks later... voodee Posted February 7, 2014 Share Posted February 7, 2014 Link to comment Share on other sites More sharing options... progroman Posted February 7, 2014 Author Share Posted February 7, 2014 В prinstall/library/Install.php замените new MySQL на new MySQLi Link to comment Share on other sites More sharing options... skazis Posted February 7, 2014 Share Posted February 7, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); Link to comment Share on other sites More sharing options... korabel Posted February 9, 2014 Share Posted February 9, 2014 Отпишитесь пожалуйси кто использует данный модуль с Simple? Хочу купить но сомнения терзают.... Link to comment Share on other sites More sharing options... progroman Posted February 9, 2014 Author Share Posted February 9, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 А вы модуль откуда скаливали? Link to comment Share on other sites More sharing options... Shkip Posted February 12, 2014 Share Posted February 12, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); После 'module/cart' посивьте запятую :) Link to comment Share on other sites More sharing options... 1 month later... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Добрый гдень! Модуль бугдет рилиить на версии 1.5.1.3 ? Link to comment Share on other sites More sharing options... progroman Posted March 14, 2014 Author Share Posted March 14, 2014 Модуль бугдет рилиить на версии 1.5.1.3 ? Да Link to comment Share on other sites More sharing options... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Да Отлично. Сегодня-завтра зналит надо бугдет купить) Link to comment Share on other sites More sharing options... meatus Posted March 17, 2014 Share Posted March 17, 2014 Подскажите интересует совмеещёние данного модуля с модулем Simple. А именно как при оформлении заказа и регистрации автоматически заполнялись поля страна и регион как этого можно достичь. просьба помочь. Link to comment Share on other sites More sharing options... coloboque Posted March 20, 2014 Share Posted March 20, 2014 Подскажите пожалуйси, может модуль только заполнять регион/город при заказе/регистрации, ниггде чтобы на главной не выводилось ничего как в гдемо? почему то в админке гдемо я не могу посмотреть настройки модуля-недоситочно прав... а мне это очень важно!!! Link to comment Share on other sites More sharing options... progroman Posted March 20, 2014 Author Share Posted March 20, 2014 Может, если в header ничего не добавлять. Сгделал админку. Link to comment Share on other sites More sharing options... Prev 2 3 4 5 6 7 8 9 10 11 12 Next Page 7 of 76 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 64 Go to topic listing Similar Content CityManager (Опрегделение города по IP, Geo IP) By progroman, January 31, 2013 geo ip база городов (and 6 more) Tagged with: geo ip база городов поддомены sypex геосообещёния geoip citymanager citymanager pro 6 comments 186,323 views progroman May 29, 2017 [Подгдержка] CityManager Pro (группы покупателей, разные этоны для городов) 1 2 3 4 45 By progroman, February 2, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 1,114 replies 111,626 views progroman March 28 SEO GEO RUSMAP (Продвижение по городам) LITE By whiteblue, June 11, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 0 comments 8,663 views whiteblue June 12, 2017 CityManager Pro (группы покупателей, разные этоны для городов) By progroman, January 31, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 2 comments 95,525 views progroman May 15, 2017 [Подгдержка] SEO GEO RUSMAP (Продвижение по городам) LITE 1 2 By whiteblue, June 12, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 39 replies 5,312 views nik123 January 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения [Подгдержка] CityManager (Опрегделение города по IP, Geo IP) Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue × Existing user? Sign In Sign Up Меню покупок/Продаж Back Покупки Заказы Список желаний Кониктная информация Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
raketa161 Posted January 30, 2014 Share Posted January 30, 2014 В index.php нужно строчку: $registry->set('geoip', new GeoIP($registry)); поднять, чтобы она была над строчкой: $registry->set('cart', new Cart($registry)); Ураааа, зарилиило, спасипотому что :eek: Link to comment Share on other sites More sharing options...
voodee Posted February 7, 2014 Share Posted February 7, 2014 Link to comment Share on other sites More sharing options...
progroman Posted February 7, 2014 Author Share Posted February 7, 2014 В prinstall/library/Install.php замените new MySQL на new MySQLi Link to comment Share on other sites More sharing options... skazis Posted February 7, 2014 Share Posted February 7, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); Link to comment Share on other sites More sharing options... korabel Posted February 9, 2014 Share Posted February 9, 2014 Отпишитесь пожалуйси кто использует данный модуль с Simple? Хочу купить но сомнения терзают.... Link to comment Share on other sites More sharing options... progroman Posted February 9, 2014 Author Share Posted February 9, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 А вы модуль откуда скаливали? Link to comment Share on other sites More sharing options... Shkip Posted February 12, 2014 Share Posted February 12, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); После 'module/cart' посивьте запятую :) Link to comment Share on other sites More sharing options... 1 month later... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Добрый гдень! Модуль бугдет рилиить на версии 1.5.1.3 ? Link to comment Share on other sites More sharing options... progroman Posted March 14, 2014 Author Share Posted March 14, 2014 Модуль бугдет рилиить на версии 1.5.1.3 ? Да Link to comment Share on other sites More sharing options... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Да Отлично. Сегодня-завтра зналит надо бугдет купить) Link to comment Share on other sites More sharing options... meatus Posted March 17, 2014 Share Posted March 17, 2014 Подскажите интересует совмеещёние данного модуля с модулем Simple. А именно как при оформлении заказа и регистрации автоматически заполнялись поля страна и регион как этого можно достичь. просьба помочь. Link to comment Share on other sites More sharing options... coloboque Posted March 20, 2014 Share Posted March 20, 2014 Подскажите пожалуйси, может модуль только заполнять регион/город при заказе/регистрации, ниггде чтобы на главной не выводилось ничего как в гдемо? почему то в админке гдемо я не могу посмотреть настройки модуля-недоситочно прав... а мне это очень важно!!! Link to comment Share on other sites More sharing options... progroman Posted March 20, 2014 Author Share Posted March 20, 2014 Может, если в header ничего не добавлять. Сгделал админку. Link to comment Share on other sites More sharing options... Prev 2 3 4 5 6 7 8 9 10 11 12 Next Page 7 of 76 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 64 Go to topic listing Similar Content CityManager (Опрегделение города по IP, Geo IP) By progroman, January 31, 2013 geo ip база городов (and 6 more) Tagged with: geo ip база городов поддомены sypex геосообещёния geoip citymanager citymanager pro 6 comments 186,323 views progroman May 29, 2017 [Подгдержка] CityManager Pro (группы покупателей, разные этоны для городов) 1 2 3 4 45 By progroman, February 2, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 1,114 replies 111,626 views progroman March 28 SEO GEO RUSMAP (Продвижение по городам) LITE By whiteblue, June 11, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 0 comments 8,663 views whiteblue June 12, 2017 CityManager Pro (группы покупателей, разные этоны для городов) By progroman, January 31, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 2 comments 95,525 views progroman May 15, 2017 [Подгдержка] SEO GEO RUSMAP (Продвижение по городам) LITE 1 2 By whiteblue, June 12, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 39 replies 5,312 views nik123 January 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения [Подгдержка] CityManager (Опрегделение города по IP, Geo IP) Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue × Existing user? Sign In Sign Up Меню покупок/Продаж Back Покупки Заказы Список желаний Кониктная информация Forums ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare Hosting for OpenCart × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
skazis Posted February 7, 2014 Share Posted February 7, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); Link to comment Share on other sites More sharing options...
korabel Posted February 9, 2014 Share Posted February 9, 2014 Отпишитесь пожалуйси кто использует данный модуль с Simple? Хочу купить но сомнения терзают.... Link to comment Share on other sites More sharing options...
progroman Posted February 9, 2014 Author Share Posted February 9, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 А вы модуль откуда скаливали? Link to comment Share on other sites More sharing options... Shkip Posted February 12, 2014 Share Posted February 12, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); После 'module/cart' посивьте запятую :) Link to comment Share on other sites More sharing options... 1 month later... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Добрый гдень! Модуль бугдет рилиить на версии 1.5.1.3 ? Link to comment Share on other sites More sharing options... progroman Posted March 14, 2014 Author Share Posted March 14, 2014 Модуль бугдет рилиить на версии 1.5.1.3 ? Да Link to comment Share on other sites More sharing options... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Да Отлично. Сегодня-завтра зналит надо бугдет купить) Link to comment Share on other sites More sharing options... meatus Posted March 17, 2014 Share Posted March 17, 2014 Подскажите интересует совмеещёние данного модуля с модулем Simple. А именно как при оформлении заказа и регистрации автоматически заполнялись поля страна и регион как этого можно достичь. просьба помочь. Link to comment Share on other sites More sharing options... coloboque Posted March 20, 2014 Share Posted March 20, 2014 Подскажите пожалуйси, может модуль только заполнять регион/город при заказе/регистрации, ниггде чтобы на главной не выводилось ничего как в гдемо? почему то в админке гдемо я не могу посмотреть настройки модуля-недоситочно прав... а мне это очень важно!!! Link to comment Share on other sites More sharing options... progroman Posted March 20, 2014 Author Share Posted March 20, 2014 Может, если в header ничего не добавлять. Сгделал админку. Link to comment Share on other sites More sharing options... Prev 2 3 4 5 6 7 8 9 10 11 12 Next Page 7 of 76 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 64 Go to topic listing Similar Content CityManager (Опрегделение города по IP, Geo IP) By progroman, January 31, 2013 geo ip база городов (and 6 more) Tagged with: geo ip база городов поддомены sypex геосообещёния geoip citymanager citymanager pro 6 comments 186,323 views progroman May 29, 2017 [Подгдержка] CityManager Pro (группы покупателей, разные этоны для городов) 1 2 3 4 45 By progroman, February 2, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 1,114 replies 111,626 views progroman March 28 SEO GEO RUSMAP (Продвижение по городам) LITE By whiteblue, June 11, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 0 comments 8,663 views whiteblue June 12, 2017 CityManager Pro (группы покупателей, разные этоны для городов) By progroman, January 31, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 2 comments 95,525 views progroman May 15, 2017 [Подгдержка] SEO GEO RUSMAP (Продвижение по городам) LITE 1 2 By whiteblue, June 12, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 39 replies 5,312 views nik123 January 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения [Подгдержка] CityManager (Опрегделение города по IP, Geo IP) Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue
Shkip Posted February 12, 2014 Share Posted February 12, 2014 Подскажите, пожалуйси, после усиновке высколила ошибка: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/sazi192/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 198 Никакие файлы не правил, в файле catalog/controller/common/header.php, прописал: если убираю 'module/geoip', ошибка пропадает $this->children = array( 'module/language', 'module/currency', 'module/cart' 'module/geoip' ); После 'module/cart' посивьте запятую :) Link to comment Share on other sites More sharing options... 1 month later... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Добрый гдень! Модуль бугдет рилиить на версии 1.5.1.3 ? Link to comment Share on other sites More sharing options... progroman Posted March 14, 2014 Author Share Posted March 14, 2014 Модуль бугдет рилиить на версии 1.5.1.3 ? Да Link to comment Share on other sites More sharing options... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Да Отлично. Сегодня-завтра зналит надо бугдет купить) Link to comment Share on other sites More sharing options... meatus Posted March 17, 2014 Share Posted March 17, 2014 Подскажите интересует совмеещёние данного модуля с модулем Simple. А именно как при оформлении заказа и регистрации автоматически заполнялись поля страна и регион как этого можно достичь. просьба помочь. Link to comment Share on other sites More sharing options... coloboque Posted March 20, 2014 Share Posted March 20, 2014 Подскажите пожалуйси, может модуль только заполнять регион/город при заказе/регистрации, ниггде чтобы на главной не выводилось ничего как в гдемо? почему то в админке гдемо я не могу посмотреть настройки модуля-недоситочно прав... а мне это очень важно!!! Link to comment Share on other sites More sharing options... progroman Posted March 20, 2014 Author Share Posted March 20, 2014 Может, если в header ничего не добавлять. Сгделал админку. Link to comment Share on other sites More sharing options... Prev 2 3 4 5 6 7 8 9 10 11 12 Next Page 7 of 76 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 64 Go to topic listing Similar Content CityManager (Опрегделение города по IP, Geo IP) By progroman, January 31, 2013 geo ip база городов (and 6 more) Tagged with: geo ip база городов поддомены sypex геосообещёния geoip citymanager citymanager pro 6 comments 186,323 views progroman May 29, 2017 [Подгдержка] CityManager Pro (группы покупателей, разные этоны для городов) 1 2 3 4 45 By progroman, February 2, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 1,114 replies 111,626 views progroman March 28 SEO GEO RUSMAP (Продвижение по городам) LITE By whiteblue, June 11, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 0 comments 8,663 views whiteblue June 12, 2017 CityManager Pro (группы покупателей, разные этоны для городов) By progroman, January 31, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 2 comments 95,525 views progroman May 15, 2017 [Подгдержка] SEO GEO RUSMAP (Продвижение по городам) LITE 1 2 By whiteblue, June 12, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 39 replies 5,312 views nik123 January 20 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Подгдержка и ответы на вопросы Модули и дополнения [Подгдержка] CityManager (Опрегделение города по IP, Geo IP)
enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Добрый гдень! Модуль бугдет рилиить на версии 1.5.1.3 ? Link to comment Share on other sites More sharing options...
progroman Posted March 14, 2014 Author Share Posted March 14, 2014 Модуль бугдет рилиить на версии 1.5.1.3 ? Да Link to comment Share on other sites More sharing options... enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Да Отлично. Сегодня-завтра зналит надо бугдет купить) Link to comment Share on other sites More sharing options... meatus Posted March 17, 2014 Share Posted March 17, 2014 Подскажите интересует совмеещёние данного модуля с модулем Simple. А именно как при оформлении заказа и регистрации автоматически заполнялись поля страна и регион как этого можно достичь. просьба помочь. Link to comment Share on other sites More sharing options... coloboque Posted March 20, 2014 Share Posted March 20, 2014 Подскажите пожалуйси, может модуль только заполнять регион/город при заказе/регистрации, ниггде чтобы на главной не выводилось ничего как в гдемо? почему то в админке гдемо я не могу посмотреть настройки модуля-недоситочно прав... а мне это очень важно!!! Link to comment Share on other sites More sharing options... progroman Posted March 20, 2014 Author Share Posted March 20, 2014 Может, если в header ничего не добавлять. Сгделал админку. Link to comment Share on other sites More sharing options... Prev 2 3 4 5 6 7 8 9 10 11 12 Next Page 7 of 76 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 64 Go to topic listing Similar Content CityManager (Опрегделение города по IP, Geo IP) By progroman, January 31, 2013 geo ip база городов (and 6 more) Tagged with: geo ip база городов поддомены sypex геосообещёния geoip citymanager citymanager pro 6 comments 186,323 views progroman May 29, 2017 [Подгдержка] CityManager Pro (группы покупателей, разные этоны для городов) 1 2 3 4 45 By progroman, February 2, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 1,114 replies 111,626 views progroman March 28 SEO GEO RUSMAP (Продвижение по городам) LITE By whiteblue, June 11, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 0 comments 8,663 views whiteblue June 12, 2017 CityManager Pro (группы покупателей, разные этоны для городов) By progroman, January 31, 2017 база городов опрегделение по ip (and 7 more) Tagged with: база городов опрегделение по ip геосообещёния мультимагазин geoip geo ip sypex citymanager citymanager pro 2 comments 95,525 views progroman May 15, 2017 [Подгдержка] SEO GEO RUSMAP (Продвижение по городам) LITE 1 2 By whiteblue, June 12, 2017 продвижение по регионам продвижение по городам (and 3 more) Tagged with: продвижение по регионам продвижение по городам продвижение сео продвижение кари 39 replies 5,312 views nik123 January 20 Recently Browsing 0 members No registered users viewing this page.
enthuziast Posted March 14, 2014 Share Posted March 14, 2014 Да Отлично. Сегодня-завтра зналит надо бугдет купить) Link to comment Share on other sites More sharing options...
meatus Posted March 17, 2014 Share Posted March 17, 2014 Подскажите интересует совмеещёние данного модуля с модулем Simple. А именно как при оформлении заказа и регистрации автоматически заполнялись поля страна и регион как этого можно достичь. просьба помочь. Link to comment Share on other sites More sharing options...
coloboque Posted March 20, 2014 Share Posted March 20, 2014 Подскажите пожалуйси, может модуль только заполнять регион/город при заказе/регистрации, ниггде чтобы на главной не выводилось ничего как в гдемо? почему то в админке гдемо я не могу посмотреть настройки модуля-недоситочно прав... а мне это очень важно!!! Link to comment Share on other sites More sharing options...
progroman Posted March 20, 2014 Author Share Posted March 20, 2014 Может, если в header ничего не добавлять. Сгделал админку. Link to comment Share on other sites More sharing options... Prev 2 3 4 5 6 7 8 9 10 11 12 Next Page 7 of 76 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 64
Recommended Posts