Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Olegshturman

Users
  
  • Posts

    77
  • Joined

  • Last visited

Everything posted by Olegshturman

  1. Всем доброго времени суток! Помогите решить проблемку, так как не являюсь программистом, а всего лишь владельцем ИМ OpenCart 2.0 Суть проблемы: клиент оставляет отзыв о товаре на сайте. Мне на мыло приходит уведомление о новом отзыве, но в админке этого нет, для того, чтобы его принять/отклонить. Самое интересно то, что сам я из админки могу написать отзыв, но из открытой части магазина не могу сделать этого ни я, ни клиент. Вот сам ИМ : http://ironpower.com.ua/
  2. Я наверное не совсем понятно выразился. Проблема такая: стоит модуль "связанные опции", в них выгружается из 1С цена и остаток, а на вкладке товара админ.части "данные" цена стоит "0". На сайте цена отображается благодаря модулю "связанные опции". При использовании Вашего модуля, цена берется из вкладки админ.части "данные", т.е. = "0". Соответственно, при попытке выгрузки в "товары" ВК, модуль пишет такую ошибку: При экспорте товара 100% BCAA 2:1:1 BioTech USA произошла ошибка: vkApiException: One of the parameters specified was missing or invalid: price is undefined Отсюда вопрос: можно ли заставить модуль брать цену из "связанных опций". Заранее благодарен за ответ!
  3. Здравствуйте! А как насчет того, чтобы выгружать с товарами их опции? Так как у меня цена стоит только в опциях.
  4. Хотелось выразить огромную благодарность автору mpn2005 за чудесный модуль и за молниеносную обратную связь! Очень оперативно мне помог в его настройке, что чрезвычайно помогло моему сайту в работе! Всем рекомендую! Автору крепко жму руку!!!!!
  5. А в opencart 2.03.0 как это сделать? Таким же образом у меня ничего не получилось (
  6. В deadcow_seo нет возможности генерации тайтлов. Не подскажите где искать?
  7. Убрал флаг L, сохранил и попробовал....
  8. Попробовал. Без флага L и без знака # сайт вообще не работает. Выдает ошибку: Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log.
  9. В какую директорию вынести и в каком файле прописать?
  10. Ошибка такая: Not FoundThe requested URL /perchatki-basic-ps-2100-power-system was not found on this server.
  11. Сделал вот так: # If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ RewriteBase / #RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L] RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L] RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L] RewriteRule ^system/download/(.*) /index.php?route=error/not_found [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css) RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] Со знаком # сайт нормально работает, но нет соединения 1С, без знака # на сайте ошибка, но есть соединение 1С к сайту. ((
  12. # 1.To use URL Alias you need to be running apache with mod_rewrite enabled. # 2. In your opencart directory rename htaccess.txt to .htaccess. # For any support issues please visit: http://www.opencart.com Options +FollowSymlinks # Prevent Directoy listing Options -Indexes # Prevent Direct Access to files <FilesMatch "(?i)((\.tpl|\.ini|\.log|(?<!robots)\.txt))"> Order deny,allow Deny from all </FilesMatch> # SEO URL Settings RewriteEngine On #Added 30.04.2016 #RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L] # If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ RewriteBase / RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L] RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L] RewriteRule ^system/download/(.*) /index.php?route=error/not_found [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css) RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] RewriteCond %{HTTP_HOST} ^www\.(.*) [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L] RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\ HTTP/ RewriteRule ^index\.html$ / [R=301,L] RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/ RewriteRule ^index\.php$ / [R=301,L] RewriteCond %{QUERY_STRING} ^route=common/home$ RewriteCond %{REQUEST_METHOD} !^POST$ RewriteRule ^index\.php$ http://%{HTTP_HOST}? [R=301,L] ### Additional Settings that may need to be enabled for some servers ### Uncomment the commands by removing the # sign in front of it. ### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that. # 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it: # php_flag register_globals off # 2. If your cart has magic quotes enabled, This may work to disable it: # php_flag magic_quotes_gpc Off # 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try # php_value upload_max_filesize 999M # 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value post_max_size 999M # 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value max_execution_time 200 # 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value max_input_time 200 # 7. disable open_basedir limitations # php_admin_value open_basedir none
  13. А как сюда прикрутить файл?
  14. И как же быть в таком случае?
  15. Подскажите, пожалуйста, есть проблема... Для интеграции 1С с сайтом в файле htaccess в корне сайта я добавил такую строку #RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L] Со знаком # в начале строки сайт работает нормально, но нет подключения 1С к сайту. Без знака # есть подключение 1С к сайту, но некоторые кнопки сайта не работают, а именно отображается Not FoundThe requested URL /kreatin/ was not found on this server. Заранее благодарен за помощь.
×
×
  • 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.