Jump to content
thirty bees forum

koraledrewniane

Members
  • Posts

    22
  • Joined

  • Last visited

Posts 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.     }
    
  2. 15 hours ago, Leandroo said:

    Hi! Did you use IQIT contencreator???

    I'm trying import the 16 style, so I've imported theme and mega menu  but when I import the contencreator I get a 500 server error, do you know sometime about it?

    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.

    • Like 1
  3. 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?

  4. 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.

  5. @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.

  6. 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...