Jump to content
thirty bees forum

roband7

Members
  • Posts

    131
  • Joined

  • Last visited

Posts posted by roband7

  1. I do remember @mdekker writing someplace (I forgot where) that he wanted to make the installer and upgrader more robust before releasing 1.0.4.

    But all the latest commits have been all over the place except in these two components.

    So I'm also a bit confused about the plan...

  2. Technically it's quite possible to program a new core, while still leaving a compatibility layer for PS 1.6. Developers hate making stuff like that, but if there's a business case for it, it's sure doable.

  3. The code in the paypal 6 module, in controllers/front/expresscheckoutconfirm.php, function assignCartSummary(), the assignment: $cart->idcarrier = arraykeys($deliveryOption)[0]

    Could that be the problem? Other code in core that picks the id_carrier from deliveryOptions does it differently.

  4. The installation doesn't look complete, or it assumes you have done some sort of post-installation setup that you haven't done. It assumes the existence of: classes/controller/cbdom.php

    This file seems to be missing at your site.

    Was this addon perhaps just copied over from another site and you missed some files. Is there perhaps an addon install procecure you should have used instead?

    Probably better if you check with someone that supports the ccavenue addon than here.

  5. Looks like a regression in 1.0.2, classes/AttributeGroup.php function getHigherPosition() was bugged by:

    commit bc9637ba9092ad0ba3a4d5c3744a068e025e58b8 Author: Michael Dekker git@michaeldekker.nl Date: Thu Jun 22 02:42:04 2017 +0200 Cleanup AttributeGroup

    To fix it, just replace: ->select('MAX(position') With: ->select('MAX(position)')

  6. @vzex said in TinyMCE editor in the back office:

    @lesley said in TinyMCE editor in the back office:

    Are you still getting the 500 error when you try to upload images?

    Yes after a new clean install yesterday

    Does TinyMCEeditor require imagic module installed to add images because I did not install imagic

    Nothing in thirty bees needs imagemagick, it´s an optional module.

    For the 500 error surely you have something logged server-side. Check the log directory in your backoffice and/or the PHP error log.

  7. I'm worried this topic is derailing a bit.

    @vzex Doesn't really want or need imagick. There should be no need to install the thirty bees imagemagick addon in his case.

    We just went down that road because of errors done by the host, the PHP install complained about an incorrect version imagick extension.

  8. This indeed looks like a host issue.

    Have you recently moved from one version of PHP to another?

    Looks like your host has an incorrect version of the PHP extension "imagick" included in the config for the PHP version you´re using now.

  9. It's a hard problem, you have: PHP installation has maxexecutiontime (default 30) Nginx fastcgireadtimeout (default 60) Apache Timeout/ProxyTimeout (default 60)

    Then the PHP code may go on doing something really long-running (like loading the database or resizing images). Or something that blocks on an external resource (like a HTTP request to a dead or slow host)

    How to handle this mess in a good way, so it always either works or gives a meaningful error message when it doesn't? And even worse when it's an AJAX-request triggering the above...

×
×
  • Create New...