dswtpl wrote:Hello Everyone,
I have installed opencart Version 2.0.1.1, I have tested some order in my shop, but when i am trying to delete sales order so it is not working. I am not able to delete any record in the orders list. can you please guide me how i delete my tested order in the latest version. It was work fine on the previous version.
Thank You

Hi,
Perhaps, the prolem 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)