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://opencartforum.com/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... coloboque Posted March 20, 2014 Share Posted March 20, 2014 спасибо, покупаю модуль) Link to comment Share on other sites More sharing options... coloboque Posted March 21, 2014 Share Posted March 21, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Link to comment Share on other sites More sharing options... maxims Posted March 22, 2014 Share Posted March 22, 2014 Возникло 2 проблемы с модулем. 1 я проблема. - В настройках модуля указываю 2 правила редиректа: Например зоны обл. Нвосибирская и г. Москва и соотв-но поддомены (для Новосиба) http://nsb.site.ru..info&manufacturer_id=3), вводишь Москва, то при редиректе & становится вида & и соотв-но вся ссылка такой http://nsb.site.ru..info&manufacturer_id=3 - и сообщение броузера "Данный производитель не найден". Такая же ситуация сначала была и при редиректе с sait.ru на nsb.site.ru, но она решилась правкой htacces к след виду : RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} ^nsb\.site\.ru$ RewriteCond %{QUERY_STRING} (.*)&(.*) RewriteRule .* /index.php?%1&%2 [L,N,R=301] но к сожалению в обратную сторону уже не выходит такой фокус почему то...:( Это мультимагазин на ocStore 1.5.5.1 Link to comment Share on other sites More sharing options... progroman Posted March 24, 2014 Author Share Posted March 24, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Напишите админам в личку. 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 36 Go to topic listing Similar Content [Поддержка] CityManager Pro (группы покупателей, разные цены для городов) 1 2 3 4 46 By progroman, February 2, 2017 база городов определение по ip (and 7 more) Tagged with: база городов определение по ip геосообщения мультимагазин geoip geo ip sypex citymanager citymanager pro 1,145 replies 128,887 views progroman January 26 Нет в наличии для определенной группы покупателей/определенного региона By laskavchik, Friday at 10:52 AM 2 replies 118 views laskavchik Friday at 11:03 AM Продажа в определенные часы By verun4ik, March 10 4 replies 209 views Allexg March 18 Отключение вывода определенных атрибутов. Как? By wwizard, 2 hours ago 3 replies 40 views wwizard 1 hour ago [Поддержка] By Enakin, November 30, 2022 1 reply 258 views AlexB_crypto March 21 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения [Поддержка] CityManager (Определение города по IP, Geo IP) Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений 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
diskbox Posted January 27, 2014 Share Posted January 27, 2014 Приветствую! Этот модуль будет работать в связке с модулем Simple? https://opencartforum.com/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... coloboque Posted March 20, 2014 Share Posted March 20, 2014 спасибо, покупаю модуль) Link to comment Share on other sites More sharing options... coloboque Posted March 21, 2014 Share Posted March 21, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Link to comment Share on other sites More sharing options... maxims Posted March 22, 2014 Share Posted March 22, 2014 Возникло 2 проблемы с модулем. 1 я проблема. - В настройках модуля указываю 2 правила редиректа: Например зоны обл. Нвосибирская и г. Москва и соотв-но поддомены (для Новосиба) http://nsb.site.ru..info&manufacturer_id=3), вводишь Москва, то при редиректе & становится вида & и соотв-но вся ссылка такой http://nsb.site.ru..info&manufacturer_id=3 - и сообщение броузера "Данный производитель не найден". Такая же ситуация сначала была и при редиректе с sait.ru на nsb.site.ru, но она решилась правкой htacces к след виду : RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} ^nsb\.site\.ru$ RewriteCond %{QUERY_STRING} (.*)&(.*) RewriteRule .* /index.php?%1&%2 [L,N,R=301] но к сожалению в обратную сторону уже не выходит такой фокус почему то...:( Это мультимагазин на ocStore 1.5.5.1 Link to comment Share on other sites More sharing options... progroman Posted March 24, 2014 Author Share Posted March 24, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Напишите админам в личку. 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 36 Go to topic listing Similar Content [Поддержка] CityManager Pro (группы покупателей, разные цены для городов) 1 2 3 4 46 By progroman, February 2, 2017 база городов определение по ip (and 7 more) Tagged with: база городов определение по ip геосообщения мультимагазин geoip geo ip sypex citymanager citymanager pro 1,145 replies 128,887 views progroman January 26 Нет в наличии для определенной группы покупателей/определенного региона By laskavchik, Friday at 10:52 AM 2 replies 118 views laskavchik Friday at 11:03 AM Продажа в определенные часы By verun4ik, March 10 4 replies 209 views Allexg March 18 Отключение вывода определенных атрибутов. Как? By wwizard, 2 hours ago 3 replies 40 views wwizard 1 hour ago [Поддержка] By Enakin, November 30, 2022 1 reply 258 views AlexB_crypto March 21 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения [Поддержка] CityManager (Определение города по IP, Geo IP) Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений 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
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... coloboque Posted March 20, 2014 Share Posted March 20, 2014 спасибо, покупаю модуль) Link to comment Share on other sites More sharing options... coloboque Posted March 21, 2014 Share Posted March 21, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Link to comment Share on other sites More sharing options... maxims Posted March 22, 2014 Share Posted March 22, 2014 Возникло 2 проблемы с модулем. 1 я проблема. - В настройках модуля указываю 2 правила редиректа: Например зоны обл. Нвосибирская и г. Москва и соотв-но поддомены (для Новосиба) http://nsb.site.ru..info&manufacturer_id=3), вводишь Москва, то при редиректе & становится вида & и соотв-но вся ссылка такой http://nsb.site.ru..info&manufacturer_id=3 - и сообщение броузера "Данный производитель не найден". Такая же ситуация сначала была и при редиректе с sait.ru на nsb.site.ru, но она решилась правкой htacces к след виду : RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} ^nsb\.site\.ru$ RewriteCond %{QUERY_STRING} (.*)&(.*) RewriteRule .* /index.php?%1&%2 [L,N,R=301] но к сожалению в обратную сторону уже не выходит такой фокус почему то...:( Это мультимагазин на ocStore 1.5.5.1 Link to comment Share on other sites More sharing options... progroman Posted March 24, 2014 Author Share Posted March 24, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Напишите админам в личку. 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 36 Go to topic listing Similar Content [Поддержка] CityManager Pro (группы покупателей, разные цены для городов) 1 2 3 4 46 By progroman, February 2, 2017 база городов определение по ip (and 7 more) Tagged with: база городов определение по ip геосообщения мультимагазин geoip geo ip sypex citymanager citymanager pro 1,145 replies 128,887 views progroman January 26 Нет в наличии для определенной группы покупателей/определенного региона By laskavchik, Friday at 10:52 AM 2 replies 118 views laskavchik Friday at 11:03 AM Продажа в определенные часы By verun4ik, March 10 4 replies 209 views Allexg March 18 Отключение вывода определенных атрибутов. Как? By wwizard, 2 hours ago 3 replies 40 views wwizard 1 hour ago [Поддержка] By Enakin, November 30, 2022 1 reply 258 views AlexB_crypto March 21 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения [Поддержка] CityManager (Определение города по IP, Geo IP) Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений 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
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... coloboque Posted March 20, 2014 Share Posted March 20, 2014 спасибо, покупаю модуль) Link to comment Share on other sites More sharing options... coloboque Posted March 21, 2014 Share Posted March 21, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Link to comment Share on other sites More sharing options... maxims Posted March 22, 2014 Share Posted March 22, 2014 Возникло 2 проблемы с модулем. 1 я проблема. - В настройках модуля указываю 2 правила редиректа: Например зоны обл. Нвосибирская и г. Москва и соотв-но поддомены (для Новосиба) http://nsb.site.ru..info&manufacturer_id=3), вводишь Москва, то при редиректе & становится вида & и соотв-но вся ссылка такой http://nsb.site.ru..info&manufacturer_id=3 - и сообщение броузера "Данный производитель не найден". Такая же ситуация сначала была и при редиректе с sait.ru на nsb.site.ru, но она решилась правкой htacces к след виду : RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} ^nsb\.site\.ru$ RewriteCond %{QUERY_STRING} (.*)&(.*) RewriteRule .* /index.php?%1&%2 [L,N,R=301] но к сожалению в обратную сторону уже не выходит такой фокус почему то...:( Это мультимагазин на ocStore 1.5.5.1 Link to comment Share on other sites More sharing options... progroman Posted March 24, 2014 Author Share Posted March 24, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Напишите админам в личку. 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 36 Go to topic listing Similar Content [Поддержка] CityManager Pro (группы покупателей, разные цены для городов) 1 2 3 4 46 By progroman, February 2, 2017 база городов определение по ip (and 7 more) Tagged with: база городов определение по ip геосообщения мультимагазин geoip geo ip sypex citymanager citymanager pro 1,145 replies 128,887 views progroman January 26 Нет в наличии для определенной группы покупателей/определенного региона By laskavchik, Friday at 10:52 AM 2 replies 118 views laskavchik Friday at 11:03 AM Продажа в определенные часы By verun4ik, March 10 4 replies 209 views Allexg March 18 Отключение вывода определенных атрибутов. Как? By wwizard, 2 hours ago 3 replies 40 views wwizard 1 hour ago [Поддержка] By Enakin, November 30, 2022 1 reply 258 views AlexB_crypto March 21 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения [Поддержка] CityManager (Определение города по IP, Geo IP) Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений 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
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... coloboque Posted March 20, 2014 Share Posted March 20, 2014 спасибо, покупаю модуль) Link to comment Share on other sites More sharing options... coloboque Posted March 21, 2014 Share Posted March 21, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Link to comment Share on other sites More sharing options... maxims Posted March 22, 2014 Share Posted March 22, 2014 Возникло 2 проблемы с модулем. 1 я проблема. - В настройках модуля указываю 2 правила редиректа: Например зоны обл. Нвосибирская и г. Москва и соотв-но поддомены (для Новосиба) http://nsb.site.ru..info&manufacturer_id=3), вводишь Москва, то при редиректе & становится вида & и соотв-но вся ссылка такой http://nsb.site.ru..info&manufacturer_id=3 - и сообщение броузера "Данный производитель не найден". Такая же ситуация сначала была и при редиректе с sait.ru на nsb.site.ru, но она решилась правкой htacces к след виду : RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} ^nsb\.site\.ru$ RewriteCond %{QUERY_STRING} (.*)&(.*) RewriteRule .* /index.php?%1&%2 [L,N,R=301] но к сожалению в обратную сторону уже не выходит такой фокус почему то...:( Это мультимагазин на ocStore 1.5.5.1 Link to comment Share on other sites More sharing options... progroman Posted March 24, 2014 Author Share Posted March 24, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Напишите админам в личку. 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 36 Go to topic listing Similar Content [Поддержка] CityManager Pro (группы покупателей, разные цены для городов) 1 2 3 4 46 By progroman, February 2, 2017 база городов определение по ip (and 7 more) Tagged with: база городов определение по ip геосообщения мультимагазин geoip geo ip sypex citymanager citymanager pro 1,145 replies 128,887 views progroman January 26 Нет в наличии для определенной группы покупателей/определенного региона By laskavchik, Friday at 10:52 AM 2 replies 118 views laskavchik Friday at 11:03 AM Продажа в определенные часы By verun4ik, March 10 4 replies 209 views Allexg March 18 Отключение вывода определенных атрибутов. Как? By wwizard, 2 hours ago 3 replies 40 views wwizard 1 hour ago [Поддержка] By Enakin, November 30, 2022 1 reply 258 views AlexB_crypto March 21 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения [Поддержка] CityManager (Определение города по IP, Geo IP) Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений 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
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... coloboque Posted March 20, 2014 Share Posted March 20, 2014 спасибо, покупаю модуль) Link to comment Share on other sites More sharing options... coloboque Posted March 21, 2014 Share Posted March 21, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Link to comment Share on other sites More sharing options... maxims Posted March 22, 2014 Share Posted March 22, 2014 Возникло 2 проблемы с модулем. 1 я проблема. - В настройках модуля указываю 2 правила редиректа: Например зоны обл. Нвосибирская и г. Москва и соотв-но поддомены (для Новосиба) http://nsb.site.ru..info&manufacturer_id=3), вводишь Москва, то при редиректе & становится вида & и соотв-но вся ссылка такой http://nsb.site.ru..info&manufacturer_id=3 - и сообщение броузера "Данный производитель не найден". Такая же ситуация сначала была и при редиректе с sait.ru на nsb.site.ru, но она решилась правкой htacces к след виду : RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} ^nsb\.site\.ru$ RewriteCond %{QUERY_STRING} (.*)&(.*) RewriteRule .* /index.php?%1&%2 [L,N,R=301] но к сожалению в обратную сторону уже не выходит такой фокус почему то...:( Это мультимагазин на ocStore 1.5.5.1 Link to comment Share on other sites More sharing options... progroman Posted March 24, 2014 Author Share Posted March 24, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Напишите админам в личку. 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 36 Go to topic listing Similar Content [Поддержка] CityManager Pro (группы покупателей, разные цены для городов) 1 2 3 4 46 By progroman, February 2, 2017 база городов определение по ip (and 7 more) Tagged with: база городов определение по ip геосообщения мультимагазин geoip geo ip sypex citymanager citymanager pro 1,145 replies 128,887 views progroman January 26 Нет в наличии для определенной группы покупателей/определенного региона By laskavchik, Friday at 10:52 AM 2 replies 118 views laskavchik Friday at 11:03 AM Продажа в определенные часы By verun4ik, March 10 4 replies 209 views Allexg March 18 Отключение вывода определенных атрибутов. Как? By wwizard, 2 hours ago 3 replies 40 views wwizard 1 hour ago [Поддержка] By Enakin, November 30, 2022 1 reply 258 views AlexB_crypto March 21 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения [Поддержка] CityManager (Определение города по IP, Geo IP) Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений 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
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... coloboque Posted March 20, 2014 Share Posted March 20, 2014 спасибо, покупаю модуль) Link to comment Share on other sites More sharing options... coloboque Posted March 21, 2014 Share Posted March 21, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Link to comment Share on other sites More sharing options... maxims Posted March 22, 2014 Share Posted March 22, 2014 Возникло 2 проблемы с модулем. 1 я проблема. - В настройках модуля указываю 2 правила редиректа: Например зоны обл. Нвосибирская и г. Москва и соотв-но поддомены (для Новосиба) http://nsb.site.ru..info&manufacturer_id=3), вводишь Москва, то при редиректе & становится вида & и соотв-но вся ссылка такой http://nsb.site.ru..info&manufacturer_id=3 - и сообщение броузера "Данный производитель не найден". Такая же ситуация сначала была и при редиректе с sait.ru на nsb.site.ru, но она решилась правкой htacces к след виду : RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} ^nsb\.site\.ru$ RewriteCond %{QUERY_STRING} (.*)&(.*) RewriteRule .* /index.php?%1&%2 [L,N,R=301] но к сожалению в обратную сторону уже не выходит такой фокус почему то...:( Это мультимагазин на ocStore 1.5.5.1 Link to comment Share on other sites More sharing options... progroman Posted March 24, 2014 Author Share Posted March 24, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Напишите админам в личку. 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 36 Go to topic listing Similar Content [Поддержка] CityManager Pro (группы покупателей, разные цены для городов) 1 2 3 4 46 By progroman, February 2, 2017 база городов определение по ip (and 7 more) Tagged with: база городов определение по ip геосообщения мультимагазин geoip geo ip sypex citymanager citymanager pro 1,145 replies 128,887 views progroman January 26 Нет в наличии для определенной группы покупателей/определенного региона By laskavchik, Friday at 10:52 AM 2 replies 118 views laskavchik Friday at 11:03 AM Продажа в определенные часы By verun4ik, March 10 4 replies 209 views Allexg March 18 Отключение вывода определенных атрибутов. Как? By wwizard, 2 hours ago 3 replies 40 views wwizard 1 hour ago [Поддержка] By Enakin, November 30, 2022 1 reply 258 views AlexB_crypto March 21 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Поддержка и ответы на вопросы Модули и дополнения [Поддержка] CityManager (Определение города по IP, Geo IP) Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений 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
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... coloboque Posted March 20, 2014 Share Posted March 20, 2014 спасибо, покупаю модуль) Link to comment Share on other sites More sharing options... coloboque Posted March 21, 2014 Share Posted March 21, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Link to comment Share on other sites More sharing options... maxims Posted March 22, 2014 Share Posted March 22, 2014 Возникло 2 проблемы с модулем. 1 я проблема. - В настройках модуля указываю 2 правила редиректа: Например зоны обл. Нвосибирская и г. Москва и соотв-но поддомены (для Новосиба) http://nsb.site.ru..info&manufacturer_id=3), вводишь Москва, то при редиректе & становится вида & и соотв-но вся ссылка такой http://nsb.site.ru..info&manufacturer_id=3 - и сообщение броузера "Данный производитель не найден". Такая же ситуация сначала была и при редиректе с sait.ru на nsb.site.ru, но она решилась правкой htacces к след виду : RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} ^nsb\.site\.ru$ RewriteCond %{QUERY_STRING} (.*)&(.*) RewriteRule .* /index.php?%1&%2 [L,N,R=301] но к сожалению в обратную сторону уже не выходит такой фокус почему то...:( Это мультимагазин на ocStore 1.5.5.1 Link to comment Share on other sites More sharing options... progroman Posted March 24, 2014 Author Share Posted March 24, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Напишите админам в личку. 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 36 Go to topic listing Similar Content [Поддержка] CityManager Pro (группы покупателей, разные цены для городов) 1 2 3 4 46 By progroman, February 2, 2017 база городов определение по ip (and 7 more) Tagged with: база городов определение по ip геосообщения мультимагазин geoip geo ip sypex citymanager citymanager pro 1,145 replies 128,887 views progroman January 26 Нет в наличии для определенной группы покупателей/определенного региона By laskavchik, Friday at 10:52 AM 2 replies 118 views laskavchik Friday at 11:03 AM Продажа в определенные часы By verun4ik, March 10 4 replies 209 views Allexg March 18 Отключение вывода определенных атрибутов. Как? By wwizard, 2 hours ago 3 replies 40 views wwizard 1 hour ago [Поддержка] By Enakin, November 30, 2022 1 reply 258 views AlexB_crypto March 21 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 Да Отлично. Сегодня-завтра значит надо будет купить) 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... coloboque Posted March 20, 2014 Share Posted March 20, 2014 спасибо, покупаю модуль) Link to comment Share on other sites More sharing options... coloboque Posted March 21, 2014 Share Posted March 21, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Link to comment Share on other sites More sharing options... maxims Posted March 22, 2014 Share Posted March 22, 2014 Возникло 2 проблемы с модулем. 1 я проблема. - В настройках модуля указываю 2 правила редиректа: Например зоны обл. Нвосибирская и г. Москва и соотв-но поддомены (для Новосиба) http://nsb.site.ru..info&manufacturer_id=3), вводишь Москва, то при редиректе & становится вида & и соотв-но вся ссылка такой http://nsb.site.ru..info&manufacturer_id=3 - и сообщение броузера "Данный производитель не найден". Такая же ситуация сначала была и при редиректе с sait.ru на nsb.site.ru, но она решилась правкой htacces к след виду : RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} ^nsb\.site\.ru$ RewriteCond %{QUERY_STRING} (.*)&(.*) RewriteRule .* /index.php?%1&%2 [L,N,R=301] но к сожалению в обратную сторону уже не выходит такой фокус почему то...:( Это мультимагазин на ocStore 1.5.5.1 Link to comment Share on other sites More sharing options... progroman Posted March 24, 2014 Author Share Posted March 24, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Напишите админам в личку. 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 36 Go to topic listing Similar Content [Поддержка] CityManager Pro (группы покупателей, разные цены для городов) 1 2 3 4 46 By progroman, February 2, 2017 база городов определение по ip (and 7 more) Tagged with: база городов определение по ip геосообщения мультимагазин geoip geo ip sypex citymanager citymanager pro 1,145 replies 128,887 views progroman January 26 Нет в наличии для определенной группы покупателей/определенного региона By laskavchik, Friday at 10:52 AM 2 replies 118 views laskavchik Friday at 11:03 AM Продажа в определенные часы By verun4ik, March 10 4 replies 209 views Allexg March 18 Отключение вывода определенных атрибутов. Как? By wwizard, 2 hours ago 3 replies 40 views wwizard 1 hour ago [Поддержка] By Enakin, November 30, 2022 1 reply 258 views AlexB_crypto March 21 Recently Browsing 0 members No registered users viewing this page.
coloboque Posted March 20, 2014 Share Posted March 20, 2014 спасибо, покупаю модуль) Link to comment Share on other sites More sharing options...
coloboque Posted March 21, 2014 Share Posted March 21, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Link to comment Share on other sites More sharing options...
maxims Posted March 22, 2014 Share Posted March 22, 2014 Возникло 2 проблемы с модулем. 1 я проблема. - В настройках модуля указываю 2 правила редиректа: Например зоны обл. Нвосибирская и г. Москва и соотв-но поддомены (для Новосиба) http://nsb.site.ru..info&manufacturer_id=3), вводишь Москва, то при редиректе & становится вида & и соотв-но вся ссылка такой http://nsb.site.ru..info&manufacturer_id=3 - и сообщение броузера "Данный производитель не найден". Такая же ситуация сначала была и при редиректе с sait.ru на nsb.site.ru, но она решилась правкой htacces к след виду : RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} ^nsb\.site\.ru$ RewriteCond %{QUERY_STRING} (.*)&(.*) RewriteRule .* /index.php?%1&%2 [L,N,R=301] но к сожалению в обратную сторону уже не выходит такой фокус почему то...:( Это мультимагазин на ocStore 1.5.5.1 Link to comment Share on other sites More sharing options...
progroman Posted March 24, 2014 Author Share Posted March 24, 2014 я не знаю к кому обращаться, но я купила модуль, деньги снялись, а файла нет) в списке купленных пусто! https://www.dropbox.com/s/15wry6o6812vdi3/%D0%A1%D0%BA%D1%80%D0%B8%D0%BD%D1%88%D0%BE%D1%82%202014-03-21%2023.18.00.png Напишите админам в личку. 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 36
Recommended Posts