-1

Trying to delete sales order so it is not working. When try to click in update order button not do anything some time give me jose error

HDP
  • 4,005
  • 2
  • 36
  • 58
  • 1
    As it is written, your question is too broad. Please include code as shown in http://stackoverflow.com/help/mcve – Jason D Nov 30 '15 at 21:43

1 Answers1

0

Step 1: create a api user form login as admin> system> users> api but the web site in maintained mode Enable php server enable curl function

if this not solve problem do this:

Step 2: the problem is caused by your Hosting did disable the 443 port. The Opencart did use curl_setopt function to retrieve information from severs on ports 443 (for https). You can try enable the 443 port on server or try edit the file: admin/config finde code:

define('HTTPS_CATALOG', 'https://yoursite.com/');

change to:

//define('HTTPS_CATALOG', 'http://yoursite.com/');

=> change "https" to "http" => so Opencart will use 80 port(NOT 443)

https://forum.opencart.com/viewtopic.php?t=139436

Cœur
  • 37,241
  • 25
  • 195
  • 267