Search:

Type: Posts; User: tbee

Search: Search took 0.01 seconds.

  1. Re: ERROR: admin/includes/configure.php file not found. Suggest running zc_install/in

    Copying the whole tree leads to the "To begin installation" page. Better, but not yet.
  2. Re: ERROR: admin/includes/configure.php file not found. Suggest running zc_install/in

    Turns out the error is hardcoded in application_top.php as a result for some 'interesting' checks;

    die('ERROR: admin/includes/configure.php file not found. Suggest running zc_install/index.php?');...
  3. ERROR: admin/includes/configure.php file not found. Suggest running zc_install/index.

    As instructed in the documentation, I have renamed the admin. But I also wanted to use HTTPS. ATM the admin folder is reachable via the regular path:

    http://webshop.mydomain.com/renamedadmin/
    ...
  4. Replies
    7
    Views
    932

    Re: Turing a cart into an order without payment

    I did not find any place to sneek a callback in. Hm.
  5. Replies
    7
    Views
    932

    Re: Turing a cart into an order without payment

    The advanced version indeed allows for such a hidden request and I'm using that for one shop now. But the regular version... If only I would be able to spoof in a request back home somewhere. Hm. I...
  6. Replies
    7
    Views
    932

    Re: Turing a cart into an order without payment

    In this case ABN Amro iDeal (payment method only available in the Netherlands which is a direct bank account to bank account transfer). And naturally we have the same text, but that does not mean the...
  7. Replies
    7
    Views
    932

    Re: Turing a cart into an order without payment

    I understand your reasoning, the problem is in the "payment succesful" page the payment provider shows before returning to the shop. I do not have control over that. Naturally the more expensive...
  8. Replies
    7
    Views
    932

    Turing a cart into an order without payment

    Does anyone know if it is possible to turn a cart into an order BEFORE paying, but postponing the sending of emails until the payment succeeded.

    Our current most used payment module requires...
  9. Replies
    310
    Views
    115,407

    Re: Zones Table Rate Shipping Module

    If you first define the zones, that is: create them and make sure the indicator in the list becomes green by a.o. specifying a TAX.

    Then uninstall the payment method in the admin panel and then...
  10. Replies
    310
    Views
    115,407

    Re: Zones Table Rate Shipping Module

    Regular
  11. Thread: double rounding

    by tbee
    Replies
    3
    Views
    1,654

    rounding error

    http://www.zen-cart.com/forum/showthread.php?p=702001

    If a products has price 37.605 then this is rounded in 2 decimals to 37.60 instead of 37.61. PHP's round function does not handle floats very...
  12. Thread: double rounding

    by tbee
    Replies
    3
    Views
    1,654

    Re: double rounding

    Appearantly this is semicorrect behavior

    http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/PHP/Q_23201889.html

    The number simply isn't accurate enough for this specific...
  13. Thread: double rounding

    by tbee
    Replies
    3
    Views
    1,654

    Re: double rounding

    I have replaced the round($number, $precision) with

    $t = ($number * pow(10,$precision)) + 0.5;
    $t = (int)("" . $t);
    $t = $t / pow(10,$precision);

    And now the outcome is correct.
  14. Thread: double rounding

    by tbee
    Replies
    3
    Views
    1,654

    double rounding

    I had a problem with a price being rounded incorrectly. The webshop I have should have prices ending on 0 or 5 (so 1.00, 1.05, 1.10, etc).

    The tax rate is 19%, so if I have a price without taxes...
  15. Replies
    310
    Views
    115,407

    Re: Zones Table Rate Shipping Module

    I've installed the extention as well (on 1.3.8). Works ok, with one problem: if you add zones AFTER the module is installed, you get all kinds error messages. So I added the following code just after...
Results 1 to 15 of 15
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR