If an order comes through Magento as Suspected Fraud and you’ve addressed the issue via your Payment Gateway, many times Magento will not recognize the change. Here’s how to manually update the order status:
- From the backend of magento, open the order in question.
- Take Note of the Order # and the number after the last slash of the URL
- https://abc.com/index.php/manage/sales_order/view/order_id/47436/
- Open up the
sales_flat_order
table, and find the row with the matching entity_id (number you pulled from the URL in Step 2) column.- Change ‘state’ column value to ‘processing’
- Change ‘status’ column value to ‘processing’
- Close Table
- Open up the
sales_flat_order_grid
table, and find the row with the matching entity_id (number you pulled from the URL in Step 2) column.- Change ‘status’ column value to ‘processing’
- Open up the
sales_flat_order_status_history
table, and find the row with the matching parent_id (number you pulled from the URL in Step 2) column. There might be multiple rows, but we are looking for a row that has a value containing the word ‘fraud’ in the ‘status’ column- Change ‘status’ column value to ‘processing’