Page 1 of 1

sales order not deleted

Posted: Tue Feb 24, 2015 5:14 pm
by dswtpl
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 :)

Re: sales order not deleted

Posted: Wed Feb 25, 2015 8:37 pm
by dswtpl
Hello Everyone,

Is there any response for my issue ? It would be great if anyone suggest me solution for this issue

Thank you. :laugh:

Re: sales order not deleted

Posted: Thu Feb 26, 2015 3:15 pm
by yuno
do you have create a api user?
login as admin> system> users> api

are you in the maintained mode?

have your php server enable curl function?

http://forum.opencart.com/viewtopic.php?f=190&t=135248

Re: sales order not deleted

Posted: Thu Feb 26, 2015 4:42 pm
by dswtpl
Hello yuno,

Thank you for reply.
Only delete button is not work on the sales -> order. when click tick mark on order list and the try to click on delete button so it was nothing work.

Thank You.

Re: sales order not deleted

Posted: Fri Feb 27, 2015 11:20 am
by nhucbcb
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)

Re: sales order not deleted

Posted: Wed Mar 04, 2015 5:34 am
by 619design
Wow, I have been having the same issue and that was the solution for me! Thank you so much!