Jump to content
thirty bees forum

koraledrewniane

Members
  • Posts

    22
  • Joined

  • Last visited

Everything posted by koraledrewniane

  1. Hello, my customers receive an error while processing checkout with CoD. It's strange because custompaymentmmodule works fine until this week. Can someone help? [ThirtyBeesDatabaseException] Unknown column 'cpmc.id_custom_payment_method' in 'on clause' SELECT DISTINCT cpm.*, cpml.`id_lang`, cpms.`id_shop`, cpmg.`id_group`, cpml.`name`, cpml.`description`, cpml.`description_success`, cpml.`description_short` FROM `tb_custom_payment_method` cpm LEFT JOIN `tb_custom_payment_method_lang` `cpml` ON cpml.`id_custom_payment_method` = cpm.`id_custom_payment_method` AND cpml.`id_lang` = 2 LEFT JOIN `tb_custom_payment_method_shop` `cpms` ON cpms.`id_custom_payment_method` = cpm.`id_custom_payment_method` AND cpms.`id_shop` = 1 INNER JOIN `tb_custom_payment_method_group` cpmg ON cpmc.`id_custom_payment_method` = cpm.`id_custom_payment_method` AND cpmg.`id_group` IN (3) WHERE (`active` = 1) at line 844 in file classes/db/Db.php 839. if ($webserviceCall && $errno) { 840. $dbg = debug_backtrace(); 841. WebserviceRequest::getInstance()->setError(500, '[SQL Error] '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97); 842. } elseif (_PS_DEBUG_SQL_ && $errno && !defined('TB_INSTALLATION_IN_PROGRESS')) { 843. if ($sql) { 844. throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>'); 845. } 846. 847. throw new PrestaShopDatabaseException($this->getMsgError()); 848. } 849. } DbCore->displayError - [line 488 - classes/db/Db.php] - [1 Arguments] DbCore->query - [line 709 - classes/db/Db.php] - [1 Arguments] DbCore->executeS - [line 179 - modules/custompayments/classes/CustomPaymentMethod.php] - [1 Arguments] CustomPaymentsModule\CustomPaymentMethod::getCustomPaymentMethods - [line 449 - modules/custompayments/custompayments.php] - [4 Arguments] CustomPayments->getCustomPaymentMethods - [line 74 - modules/custompayments/controllers/front/validation.php] - [1 Arguments] CustompaymentsvalidationModuleFrontController->postProcess - [line 251 - classes/controller/Controller.php] ControllerCore->run - [line 253 - classes/controller/FrontController.php] FrontControllerCore->run - [line 837 - classes/Dispatcher.php] DispatcherCore->dispatch - [line 33 - index.php]
  2. Doesn't work via firefox. Unfortunately i'm using Linux and can't change via IE 😋
  3. Got same problem, only PHP function works. Someone got any solution?
  4. What about Polish forum on forum.thirtybees.com. I see few users from Poland. There are Deutsch, English, French - who can start such subforum?
  5. Hi, how can I remove "Receive special offers from our partners!" checkbox from client registration form?
  6. @tommat I have a problem with translation of WTBLOCKBESTSELLERS-HOME. I can't translate a word "most" to polish. There are only "what other" and "loves" but no "most". Is this a little bug? Can you help? Anyway, great work!
  7. Yes, i've been using Warehouse theme from IQIT with IQIT Megamenu and Contentcreator and all of them were working fine. Nowadays I'm testing free Niara theme with native top menu module.
  8. How can I test this in my shop?
  9. I'm using IQIT mega menu and it works fine with Thirtybees. I can recommend it.
  10. @Traumflug I did what you said and changed the ObjectModel.php to @yaniv14 file. Everything look's ok. Now bees blog is working. @Traumflug there is database table tbmodule, not tbmodules. Thank you, guys.
  11. Moreover when i install beesblog something strange happens with other modules. Some warehose theme modules disappear from the modules list and entire shop don't work properly.
  12. I have the same problem. beesblog isn't installed. When i install it i get: “This module is already installed: beesblog”. Afterwards the message about missing class in blogrecentposts is shown. I also replace of my file ObjectModel.php with whta was in your link. Any ideas how to fix it?
  13. The problem is solved. I forced my server administrator to resolve it. He removed this lines from .htaccess: <IfModule mod_deflate.c> <IfModule mod_filter.c> AddOutputFilterByType DEFLATE text/html text/css text/javascript application/javascript application/x-javascript font/ttf application/x-font-ttf font/otf application/x-font-otf font/opentype </IfModule> </IfModule> and add this: ``` # compress html, css, javascript, text, xml and fonts AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/x-font AddOutputFilterByType DEFLATE application/x-font-opentype AddOutputFilterByType DEFLATE application/x-font-otf AddOutputFilterByType DEFLATE application/x-font-truetype AddOutputFilterByType DEFLATE application/x-font-ttf AddOutputFilterByType DEFLATE application/x-javascript AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE font/opentype AddOutputFilterByType DEFLATE font/otf AddOutputFilterByType DEFLATE font/ttf AddOutputFilterByType DEFLATE image/svg+xml AddOutputFilterByType DEFLATE image/x-icon AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/javascript AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/xml # you can also compress by file type/extension: <files *.html> SetOutputFilter DEFLATE </files> ``` I dont't know why but it works.
  14. No, DirectAdmin, but i also have access by SSH.
  15. Yes, there was a mistake. I had changed it to gzipminlength and of course restarted nginx. Gtmetrix still show the same problem with compression.
  16. Setting gziphttpversion 1.0 doesn't change anything, still the same problem.
  17. @datakick this is content of my nginx.conf file: user nginx; worker_processes auto; pid /var/run/nginx.pid; error_log logs/error.log; error_log logs/error.log notice; error_log logs/error.log info; events { include /etc/nginx/nginx-events.conf; } http { include /etc/nginx/mime.types; # For user configurations not maintained by DirectAdmin. Empty by default. include /etc/nginx/nginx-includes.conf; and my nginx-gzip.conf file: gzip on; gzipstatic always; gzipdisable "msie6"; gziphttpversion 1.1; gzipvary on; gzipcomplevel 8; gzipproxied any; gziptypes text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript text/x-js image/svg+xml; gzipbuffers 16 8k; gzipminlenght 256; Everything seems to be ok.
  18. Thanks @datakick for the answear. I'll read about that.
  19. Hi from Poland I'm new in this forum. I run shop with ThirtyBees 1.0.3 cms and Warehouse theme from IqitCommerce on VPS - koraledrewniane.pl Everything works great for me until i started my site seo optimization. All my CCC settings are turned on. The problem is when i run page analysis on gtmetrics.com. Google Speed score says to enable gzip compression on two files: http://koraledrewniane.pl/themes/warehouse/cache/v57e9e488e51b540995632eae9d70d0811ball.css http://koraledrewniane.pl/themes/warehouse/cache/v41_b77e132c440c69afc28f0a38b7a71ef1.js I have mod_deflate enabled on server. What can be wrong?
×
×
  • Create New...