Jump to content
thirty bees forum

Derbai

Members
  • Posts

    9
  • Joined

  • Last visited

Derbai's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. I found that payment made with Thirty Bees Stripe module don't have customer information on it. Is it a know issue to be fixed?
  2. I tried to log-in but there are no entries anyway. This is what I see on APCu manager: General Cache Information APCu Version 5.1.11 PHP Version 7.1.15 APCu Host xxxx Server Software Apache Shared Memory 1 Segment(s) with 32.0 MBytes (mmap memory) Start Time 2018/03/13 23:15:21 Uptime 18 hours and 11 minutes Cache Information Cached Variables 0 ( 0.0 Bytes) Hits 0 Misses 0 Request Rate (hits, misses) 0.00 cache requests/second Hit Rate 0.00 cache requests/second Miss Rate 0.00 cache requests/second Insert Rate 0.00 cache requests/second Cache full count 0 Runtime Settings apc.coredumpunmap 0 apc.enablecli 0 apc.enabled 1 apc.entrieshint 4096 apc.gcttl 3600 apc.mmapfilemask apc.preloadpath apc.serializer php apc.shmsegments 1 apc.shmsize 32M apc.slamdefense 1 apc.smart 0 apc.ttl 0 apc.userequesttime 1 apc.writable /tmp My server is a CENTOS 6.9 with PHP 7.1 PHP-FPM Enabled MemCache enabled. I don't know which other information you should know about it. Thanks.
  3. Dear All, I have enabled APC cache and installed APCu cache manager module but the memory usage is still 100% free. It seams that APC not cache any data. I use APCu Version 5.1.11 ana PHP 7.1.15 On performance tab cache and full page cache are enabled. Any suggestion on why it is not working? Thanks, Daniele
  4. On Order page I found the AdminOrder section empty. I checked the code and see // TODO: implement refunds So right now is not possible to refund an order directly on the AdminOrder page? For when you suppose it will be done? If it is not done I can develope it and prodive to you? Thanks, Daniele
  5. I have a multilanguage e-commerce with different domains name: .fr, .it, .de, etc. Wich is the best practice to set the site with this configuration: one shop group for each language or one group with an URL for each language? With the first option I am not able to set the language for each url. With the second option the language module don't work. Which is your suggestion on it? Do you use a specific module for redirect the customer to his own language/currency? Usually it is correctly done with multilanguage site, but not through multishop. Thanks
  6. To fix the same problem is needed also the following fix: on modules/paypal/classes/PayPalRestApi.php $details['shipping_discount'] = abs(round($remaining - $giftWithoutTax, 2)); need to be changed as follow: $details['shippingdiscount'] = numberformat(abs($remaining - $giftWithoutTax), 2);
  7. I just fixed it: on function createPaymentObject I replaced round() with number_format() and it solved the problem.
  8. I am not able to let Paypal module work. I get the following error: Currency amount must be non-negative number, may optionally contain exactly 2 decimal places separated by '.', optional thousands separator ',', limited to 7 digits before the decimal point and currency which is a valid ISO Currency Code The call is: ``` stdClass Object ( [transactions] => Array ( [0] => stdClass Object ( [amount] => stdClass Object ( [total] => 174.79 [currency] => EUR [details] => Array ( [shipping] => 7.00 [tax] => 29.98 [subtotal] => 136.27 [handling_fee] => 1.54 ) ) [description] => Payment description [item_list] => Array ( [items] => Array ( [0] => stdClass Object ( [name] => xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx [currency] => EUR [quantity] => 1 [price] => 136.27 [tax] => 29.98 ) ) [shipping_address] => Array ( [recipient_name] => xxxxxx xxxxxx [line1] => xxxxxxxxxx [line2] => xxxxxxxxxx [city] => xxxxxxxxxx [country_code] => IT [postal_code] => XXXXX [state] => XX ) ) ) ) [payer] => stdClass Object ( [payment_method] => paypal ) [intent] => sale [experience_profile_id] => XP-XSTK-xxxx-7UX3-xxxx [redirect_urls] => stdClass Object ( [cancel_url] => https://xxx.xxx.com/it/module/paypal/expresscheckoutcancel?id_cart=34 [return_url] => https://xxx.xxx.com/it/module/paypal/expresscheckout?id_cart=34 ) ) ``` Can someone help me on fix it? Thansk, Daniele
×
×
  • Create New...