Jump to content

New Orders not showing in the order section


Ferguson230

Recommended Posts

I just got a new order a few minutes ago, I only noticed it because PayPal sent me an email. When I log into the admin control panel and click on orders, it doesn't show up. When I check on the error logs, I see it over there. I have attached a screenshot. How do I fix this? Thanks.

Link to comment
Share on other sites

This has been fixed in the next version. https://github.com/cubecart/v6/issues/1987

To fix it now, use an external database utility to execute the following SQL statement:

ALTER TABLE `CubeCart_order_summary` CHANGE `custom_oid` `custom_oid` VARCHAR(50) NULL DEFAULT NULL;

(Be sure to use a table prefix if necessary.)

Currently, this column requires a unique, non-null value for 'custom_oid', but empty strings are being used. Even an empty string can be considered as duplicated content. By setting this column to hold a null value as default, the database engine will no longer complain.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...