Jump to content
thirty bees forum

unica e-shop

Members
  • Posts

    90
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by unica e-shop

  1. 3 minutes ago, the.rampage.rado said:

    This error might be caused by many factors. Did you make any changes to the core (overrides, etc.)?

    Is it actually uploading it under this error or not at all?

    No, and no it doesn't upload at all, everything else is working - this error only shows when i am uploading product pictures

  2. 12 hours ago, the.rampage.rado said:

    Regarding the second error - you can safely uninstall this module (tbupdater, NOT CORE UPDATER, they are 2 different modules) and update to 1.5.1

    If doing so does not fix your first error please come back and we will try to help.

    Regarding the 1.5.1 update - you have to do couple more 'fixes' - you have to install the minify module that comes with this version and also choose, install and configure one of the two email transport modules that take care of email since 1.5.

    @the.rampage.rado Thank you very much that did help with the secound issue, but the issue no 1 is more serious, do you have any idea of how to fix it? 🙂

  3. Hi everyone,

    I have some issues:

    1. When i try to upload a product picture via the product page i get the following error:

    JSON.parse: unexpected character at line 1 column 1 of the JSON data

    2. When i try to update to the newest thirthybees i get the following error:

    Module 'thirty bees Updater' [tbupdater] is not compatible with target version of thirty bees

    I hope someone can help me 🙂 Thanks

  4. Hi,

    I noticed a very strange error, when ever i edit, or create a product, it automaticity add some mysterious number to the short description and description section,which can be seen in front office, and when ever i delete it and save it is add again. I never had such a strange error before. Is there any solution to it? Thank you.

    The strange thing is it says when changed to code view following:

    <div id="sconnect-is-installed">2.12.0.0</div>
    <div id="sconnect-is-installed" style="display: none;">2.12.0.0</div>

    image.thumb.png.213aa3573ed687a51b299e12d282a2b1.png

  5. Hi,

    I am using the Datakick - Data manager module, after writing mails and posting on the developers help forum, and not receiving any reply for over a month, i have decided to ask here hoping that someone else might be using this module.

    When ever i use it to import XML data and set the module to use reference no of a product as an ID for the products, only the quantity of those products is updated that don't have any product variants, for the products that has variants the quantity doesn't change.

    Does anybody know a solution for it? Thank you.

     

    image.png

  6. Hi,

    Unfortunately i mistakenly deleted/reset my MySQL database in my PHP admin, fortunately i did make a database backup in my backoffice, and i did import it to mySQL database, but it still says error 500 when i visit the website, will i have to install a fresh or is there is another way to solve this issue? Thank you.

     

  7. I did that and now it says:

    ThirtyBeesException

    Call to undefined method HTMLTemplateInvoice::assignData()

    in file override/classes/pdf/PDF.php at line 62

    Source file: override/classes/pdf/PDF.php

    43:                    if($customer_group){
    44:                        $_id_template = (int)Configuration::get('GWADVANCEDINVOICE_GROUP_'.$customer_group, null, $id_shop_group, $id_shop);
    45:                        if($_id_template > 0) $id_template = (int)$_id_template;
    46:                    }
    47:                }elseif($templatetype == 'HTMLTemplateDeliverySlip'){
    48:                    
    49:                    $id_template = (int)Configuration::get('GWADVANCEDDELIVERY_TEMPLATE', null, $id_shop_group, $id_shop);
    50:                    $order = new Order((int)$object->id_order);
    51:                    $customer_group = Customer::getDefaultGroupId((int)$order->id_customer);
    52:                    if($customer_group){
    53:                        $_id_template = (int)Configuration::get('GWADVANCEDIDELIVERY_GROUP_'.$customer_group, null, $id_shop_group, $id_shop);
    54:                        if($_id_template > 0) $id_template = (int)$_id_template;
    55:                    }
    56:                }
    57:                include_once(_PS_MODULE_DIR_.'/gwadvancedinvoice/model/gwadvancedinvoicetemplateModel.php');
    58:                $templateinvoice = new gwadvancedinvoicetemplateModel((int)$id_template);
    59:                if(Validate::isLoadedObject($templateinvoice)){
    60:                    $this->pdf_renderer->AddPage();
    61:                    $this->pdf_renderer->setCurOrientation($templateinvoice->pagesize,$templateinvoice->pageorientation);
    62:                    $data = $template->assignData($id_template);
    63:                    
    64:                    if($templateinvoice->rtl){
    65:                        $this->pdf_renderer->setRTL((bool)$templateinvoice->rtl);
    66:                    }
    67:                    
    68:                    if($templateinvoice->activeheader){
    69:                        $this->pdf_renderer->SetPrintHeader(true);
    70:                        $this->pdf_renderer->createHeader($template->getHeaderGw($data));
    71:                    }else{
    72:                        $this->pdf_renderer->createHeader('');
    

    Stack trace

  8. Hi,

    When i create an order from backoffice, it dosent send email to the costumer and shows the following error:

    Class 'QRCodeLib' not found

    in file override/classes/pdf/HTMLTemplateInvoice.php at line 285

    Source file: override/classes/pdf/HTMLTemplateInvoice.php

    266:            $description_short = strip_tags($product->description_short);
    267:            if (Tools::strlen($description_short) > 90) {
    268:                $stringCut = Tools::substr($description_short, 0, 90);
    269:                $description_short = Tools::substr($stringCut, 0, strrpos($stringCut, ' ')).'...'; 
    270:            }
    271:            $order_detail['description_short'] = $description_short;
    272:            $order_detail['barcode'] = '';
    273:            $code = $template->barcodeproductformat;
    274:            $text = '';
    275:            if($code == 'product_link'){
    276:                $text = $product->getLink();//urlencode($product->getLink());
    277:            }else{
    278:                $text = urlencode($order_detail[$code]);
    279:            }
    280:            $filename = md5($template->barcodeproducttype.'_'.$text).'.png';
    281:            if(!Tools::file_exists_no_cache(_PS_MODULE_DIR_.'gwadvancedinvoice/views/img/barcodes/'.$filename)){
    282:                if($template->barcodeproducttype == 'qrcode'){
    283:                    $ecc = 0;
    284:                    if($code == 'product_link') $ecc = 1;
    285:                    $qrcodeObj =  new QRCodeLib($text,$ecc);
    286:                    $im = $qrcodeObj->createImage(4,2);
    287:                    imagepng($im,_PS_MODULE_DIR_.'gwadvancedinvoice/views/img/barcodes/'.$filename);
    288:                }else{
    289:                    $bacodeObj = new Barcode($text,$template->barcodeproducttype);
    290:                    $bacodeObj->getBarcodePNG(_PS_MODULE_DIR_.'gwadvancedinvoice/views/img/barcodes/'.$filename,2,35,array(0,0,0)); 
    291:                }
    292:            }
    293:            if(Tools::file_exists_no_cache(_PS_MODULE_DIR_.'gwadvancedinvoice/views/img/barcodes/'.$filename)){
    294:                $order_detail['barcode'] = '<img src="'.$base_url.'modules/gwadvancedinvoice/views/img/barcodes/'.$filename.'"/>';

    Do you have any solution for it? Thank you.

     

  9. Thank you both for your answer, @wartin i tried it but it doesn't have any effect, but what i dont understand is why the frontend changed to look complty messed up: www.unicadesign.dk

    @Traumflug I wanted to change the main domain name from unicae-design.dk to unicadesign.dk so that the old url would redirect to the new url, for that i had to go through all as i understood it.

     

  10. @Wartin Thank you very much, i tried up to nr. 4, but now i cant access the backend of the older domian, as it refuse to accept my password, and when i click on send by email nothing happens

    Also when i when i type in the old domain url it redirects to the new domain, but looks very messy: www.unicae-design.dk (old domain) -> www.unicadesign.dk (new domain url)

    and another strange things is that when i change the shop url via SQL on the database it automatically changes on the other SQL database, i have checked settings.inc.php  for both and they are correct, meaning that they are not pointing on the same SQL database but different ones

  11. @Wartin Thank you for your reply, let me try to explain:

    I have a webshop with the domain www.unicae-design.dk that is hosted on simply.com, then i decided to change the domain to one that is easier therefor i bought another domain, without any hosting: www.unicadesign.dk (I only bought the domian name/adress/Url). Now to change the old domain for the shop to the new i had to buy another webspace/hosting on the same host, so when i did that i then copied all the files from the old domain map to the new domain map, so i know have 2 website hosted on there own seperat webspace, so now when i change the domain name in SEO 6 URL under preference from the backoffice in the old domain, the domian also changes on the new one, so when i try type the new url it then redirects me to the old domain. I know it is a bit unclear, but hopefully you understand me

  12. Hi,

    I have two url one wich is www.unicae-design.dk which is the original one and the second www.unicadesign.dk, both are hosted on there own webhotels, but when i change the URL in the SEO & URL section the shop url for both of them changes to one, how can i split these so there is no connection between these two?

    Thank you

     

  13. Hi all,

    When i am trying to access the CMS menu from my backoffice, the whole website goes white, nothing shows up, when i click refresh nothing happens, all the other menus does work, but not the CMS.

    I toggled on the bug-finding but that to doesn't give any information.

    I hope you can help me. Thx-

×
×
  • Create New...