I want update payment module Dotpay to 1.0.15 – require PHP Version 7.1+ So I run command with PHP 7.1: composer71 require dotpay/magento2-payment:1.0.15 But during update I received issue: Problem 1 - scommerce/googleremarketing 2.0.1 requires php ~5.5.0|~5.6.0|~7.0.0 -> your PHP version (7.1.29) does not satisfy that requirement. - scommerce/googleremarketing 2.0.1 […]
Magento1
Could you please help me? I have this error with my magento2 installation: vendor/zendframework/zend-mvc/src/Service/HttpExceptionStrategyFactory.php on line 29 Thank you very much
I am using following code to create order using rest API. $apiURL="https://domain.com/index.php/rest/V1/carts/mine/payment-information"; $data_string =json_encode(array("paymentMethod"=>array("method"=>"banktransfer"),"billing_address"=>array("customer_id"=>100,"region"=>"Test Region","region_id"=>25,"country_id"=>"US","telephone"=>"1234567890","postcode"=>06401,"street"=>array("0"=>"testing"),"city"=>"testing","firstname"=>"John","lastname"=>"Doe","region_code"=>"NV"))); $ch = curl_init($apiURL); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, array("Authorization: Bearer ".$token,"Content-Type: application/json")); Order is created but no email is sent. In admin section “The order confirmation email is not […]
When I click on button Create Merge Fields i got error in log file 2019-10-29T16:47:37+00:00 DEBUG (7): Merge Max Limit Exceeded for Api Call: [https://us15.api.mailchimp.com/3.0/lists/7e3c61605f/merge-fields/] using method [POST] Detail: [You have exceeded the maximum number of 30 merge fields for this list.] Params: {“name”:”Middle Name/Initial”,”type”:”text”,”tag”:”MNAME”,”public”:true} i use last mailchimp extension […]
I am trying to use default Color Picker component of Magento. If I edit products individually the color picker works perfectly. Once I try the update attributes action from Catalog->Products page I get: 1 exception(s): Exception #0 (ReflectionException): Class colorPicker does not exist Exception #0 (ReflectionException): Class colorPicker does not […]
I recently upgraded from 2.2.3 to 2.2.8 then to 2.3 and onto 2.3.3 and i’ve come across a strange error. When an order is being created, I get the following error: Failed address validation: Email has a wrong format I’ve searched stack exchange and magento forums and I cannot seem […]
I’m trying to install magento 2.3.3 with composer over Ubuntu 18.04 composer -vvv create-project --repository=https://repo.magento.com/ magento/project-community-edition magento Installing magento/project-community-edition (2.3.3) - Installing magento/project-community-edition (2.3.3): Downloading (100%) Created project in magento Loading composer repositories with package information Updating dependencies (including require-dev) Package operations: 437 installs, 0 updates, 0 removals - Installing […]
I would like to describe our problem with Google Analytics configuration. I have tried to find any solution here, in GA documentation and Google but nothing solve our problems. Configured GA througth System > Configuration > API Google We asked Google support why have huge difference between campaign statistics clicks […]
I have configured test DB creds for “api-functional” tests (dev/tests/api-functional/config/install-config-mysql.php file). However, that configuration seems to be ignored – my tests load data from main database. Is that the expected behavior? Confusing is “api-functional” name itself, suggesting that those are functional tests which point to production DB. So, should or […]