Jump to content
thirty bees forum

jn1

Members
  • Posts

    16
  • Joined

  • Last visited

Posts posted by jn1

  1. 13 minutes ago, datakick said:

    You need to look into error logs (collectlogs module) to find out if there is any error. It may be caused by override, module, or whatnot.

    I personally can't reproduce this issue, and I do sell virtual products.

    I will not get an new error. Might be a server problem, because the error seems to be from the server/browser.

    Serverdaten Linux localhost 4.18.0-477.15.1.el8_8.x86_64 #1 SMP Linux localhost 4.18.0-477.15.1.el8_8.x86_64 #1 SMP Linux localhost 4.18.0-477.15.1.el8_8.x86_64 #1 SMP

    Version der Server-Software Apache/2.4.57 (Unix)

    PHP-Version 8.0.30

    Speichergrenze 512M

    max_execution_time 240

     

    Shall I change my (php?)settings? I am not sure, where I can change them.

    Thanks
    Josef

  2. Thanks, datakick.

    Now, I can duplicate, but I still have the problem, that I cannot change (save) existing products.

    I will get messages like

    Bestätitung

    Tab : VirtualProduct (500 error)
    Einige Menüpunkte werden nicht korrekt angezeigt. Möchten Sie die Seite neu laden?
    Bitte die Seite noch einmal neu laden!
    Wenn das Problem weiter auftritt, überprüfen Sie die Log-Dateien Ihres Servers oder bitten Sie Ihren Provider um Hilfe.

     

    (Sorry, for the German. I cannot find how to use English as backoffice language)

    After reloading (several times) it works. Strange.

    Best wishes

    Josef

  3. Hi,

    I cannot not make duplicates of my articles anymore.

    Thirty bees version: 1.6.0

    Thirty bees revision: 2e2e9ed95a2117467d58e8b44255de432185fa2b

    Build for PHP version: 8.0

    Location:

    classes/ObjectModel.php line 1049

    #0  classes/ObjectModel.php(1049)
    #1  classes/ObjectModel.php(329): ObjectModelCore->validateFields()
    #2  classes/ObjectModel.php(357): ObjectModelCore->getFields()
    #3  classes/ObjectModel.php(606): ObjectModelCore->getFieldsPrimary()
    #4  classes/Product.php(7737): ObjectModelCore->add()
    #5  controllers/admin/AdminProductsController.php(828): ProductCore->add()
    #6  classes/controller/AdminController.php(583): AdminProductsControllerCore->processDuplicate()
    #7  controllers/admin/AdminProductsController.php(1344): AdminControllerCore->postProcess()
    #8  classes/controller/Controller.php(198): AdminProductsControllerCore->postProcess()
    #9  classes/Dispatcher.php(851): ControllerCore->run()
    #10 admin213f1srar/index.php(58): DispatcherCore->dispatch()

     

     

     

    and I get

    Tab : Seo (500 error)
    Einige Menüpunkte werden nicht korrekt angezeigt. Möchten Sie die Seite neu laden?
    Bitte die Seite noch einmal neu laden!
    Wenn das Problem weiter auftritt, überprüfen Sie die Log-Dateien Ihres Servers oder bitten Sie Ihren Provider um Hilfe.

     

    when I go to a product (Artikel)

     

    Strange behavior. I guess I cannot change or add new products.

     

    Best wishes and Thank you for all kind of help/suggestions.

  4. Hello,

     

    After updating to 1.5 I get "500 Server Error" when I try to save.

    "Front-Office Funktionen
    Startseiten-Texteditor v2.6.0 - von PrestaShop
    Ein Texteditor-Modul für Ihre Startseite"

    I am using PHP 8.0.

    The problem did not disappear when I get the latest bleeding edge.

    Debugger says:

    TypeError

    key_exists(): Argument #2 ($array) must be of type array, EditorialClass given

    in file modules/editorial/EditorialClass.php at line 80
    public function copyFromPost()
    76:	{
    77:		/* Classical fields */
    78:		foreach ($_POST as $key => $value)
    79:		{
    80:			if (key_exists($key, $this) && $key != 'id_'.$this->table)
    81:				$this->{$key} = $value;
    82:		}

    Thanks a lot

    Josef

     

    ps

    I am using now and it works. But if you see a problem let me know. Thanks. Josef

    Front-Office Funktionen
    HTML-Block v1.2.1 - von thirty bees
     
     

     

  5. 1 hour ago, datakick said:

    Do you have some email transport module installed?

    EDIT - you can use one of these two mail modules

    • Mail via swiftmailer
    • Mail via PHPmailer

     

    This helped. Thank you very much. This is a change. I have now three Option (none swiht PHPmailer). And the default was at "none".

    Great that you could help me

    • Like 1
  6. I guess I have both. And the systems says that it has sent. But I will not receive any email.

    The strato-setup is unchanged and worked before. And I can sent and receive E-Mails with strato-Server-Setup from within thunderbird ... So, it does not look like a strato problem

  7.  

    I got an divsion by zero error. I do not know what the customer had done but it happened that one cart seems to have this problem.

    Any idea? Is it a problem with the code? should I try to remove the cart (which requires deep sql-knowledge and might be dangerous)

    Best wishes
    Josef

    Source file: .../thirtybees/classes/Cart.php

    591:                true,
    592:                $cartShopContext
    593:            );
    594:
    595:            $row['total'] = $this->roundPrice(
    596:                $row['price_with_reduction_without_tax'],
    597:                $row['price_with_reduction'],
    598:                $row['cart_quantity'],
    599:                false
    600:            );
    601:            $row['total_wt'] = $this->roundPrice(
    602:                $row['price_with_reduction_without_tax'],
    603:                $row['price_with_reduction'],
    604:                $row['cart_quantity'],
    605:                true
    606:            );
    607:
    608:            // Recalculate prices after rounding, these go into an order.
    609:            $row['price'] = round(
    610:                $row['total'] / $row['cart_quantity'],
  8. In TB (I am using TB 1.4) the export function of SQL code to the SQL manager does not work. It transfer code that cannot be saved within the manager.

    Here is a code example. I guess there is some preprocessing missing to get expanded sql-code.

    "SELECT SQL_CALC_FOUND_ROWS
                                    a.`id_order`, `reference`, `total_paid_tax_incl`, `payment`, a.`date_add` AS `date_add`
                ,
            a.id_currency,
            a.id_order AS id_pdf,"
         
               

    Any ideas. It would be great to have this feature to add and then modify new sql queries for the shop.
     

    Thanks and best wishes

    Josef

  9. Solved. I had a strange .htaccess file in my prestool-directory.

    I have problems to get prestools running on TB 1.4 after an upgrade. I tried to install prestools again. But only will get

    403

    Forbidden

    You don't have permission to access this resource.

    The permissions for the prestools directory are 755 and the files have 644

    Any ideas

     

    • Like 1
  10. Hello

    I will get the following errors after I have update to 1.4 unsing php 8.0.

    any ideas where I should start to find the problems.

    Best wishes

    Josef

    Error

    Attempt to modify property "value" on null

    when rendering smarty template /mnt/web306/e3/87/52118087/htdocs/ptsv/presta1_6/thirtybees/themes/ptsvshop-template/modules/blockcart/blockcart.tpl
     
    vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 source content_63c68dcfd19537_45880373()
    2. vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 source Smarty_Template_Resource_Base->getRenderedTemplateCode()
    3. vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 source Smarty_Template_Compiled->render()
    4. vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 source Smarty_Internal_Template->render()
    5. vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 source Smarty_Internal_TemplateBase->_execute()
    6. classes/SmartyCustom.php:555 source Smarty_Internal_TemplateBase->fetch()
    7. classes/SmartyCustom.php:530 source Smarty_Custom_Template->fetchWithRetries()
    8. classes/module/Module.php:3170 source Smarty_Custom_Template->fetch()
    9. modules/blockcart/blockcart.php:251 source ModuleCore->display()
    10. modules/blockcart/blockcart.php:488 source BlockCart->hookRightColumn()
    11. classes/Hook.php:769 source BlockCart->hookTop()
    12. classes/Hook.php:473 source HookCore::coreCallHook()
    13. classes/Hook.php:288 source HookCore::execWithoutCache()
    14. classes/controller/FrontController.php:346 source HookCore::exec()
    15. controllers/front/IndexController.php:53 source FrontControllerCore->initContent()
  11. Ich konnte nirgend eine Lösung zu einem Problem finden, das ich sowohl in Prestashop 1.6.1.23 wie auch in TB 1.08 replizieren kann.

    Wenn ich Bestellungen im backend ediere und habe einen Artikel mit Personalisierung, dann kann ich die Anzahl des Artikels nur über die Personalisierung ändern. Wenn ich das mache, erhalte ich einen ziemlich wüsten Zustand, den ich nicht ganz nachvollziehen kann. Es werden dann bei anderen Artikel falsche Preise angezeigt und es resultiert insgesamt ein inkonsistenter Zustand, der auch in prestool sichtbar ist.

    Es ist übrigens auch ein Problem im backend einen personalisierten Artikel einer Bestellung hinzufügen. Die Aufforderung, die Personalisierung einzugeben, erfolgt nicht.

    Die angehängten Bildschirmfotos bitte von unten nach oben betrachten. Das Problem tritt bei Bild 2 auf 3 auf.

    5_oe.PNG

    4_oe.PNG

    3_oe.PNG

    2_oe.PNG

    1_oe.PNG

×
×
  • Create New...