I've got a strange thing happening with my OC V2.3.0.2 store running on https.
When I install a new extension and try to modify it I lose most of my front store settings because I lose some tables/row for instance when I compare the DB dumps from before and after.
Here's an example (I've cut the code a bit because of the length of the insert):
Before
Code: Select all
LOCK TABLES `oc_extension` WRITE;
/*!40000 ALTER TABLE `oc_extension` DISABLE KEYS */;
INSERT INTO `oc_extension` VALUES (1,'payment','cod'),(2,'total','shipping'),(3,'total','sub_total'),(4,'total','tax'),(5,'total','total'),(6,'module','banner'),(7,'module','carousel'),(8,'total','credit'),(9,'shipping','flat'),(10,'total','handling'),(11,'total','low_order_fee'),(12,'total','coupon'),(13,'module','category'),(14,'module','account'),(15,'total','reward'),(16,'total','voucher'),(17,'payment','free_checkout'),(18,'module','featured'),(19,'module','slideshow'),(20,'theme','theme_default'),
Code: Select all
LOCK TABLES `oc_extension` WRITE;
/*!40000 ALTER TABLE `oc_extension` DISABLE KEYS */;
INSERT INTO `oc_extension` VALUES (1,'payment','cod'),(2,'total','shipping'),(3,'total','sub_total'),(4,'total','tax'),(5,'total','total'),(8,'total','credit'),(9,'shipping','flat'),(10,'total','handling'),(11,'total','low_order_fee'),(12,'total','coupon'),(15,'total','reward'),(16,'total','voucher'),(17,'payment','free_checkout'),(20,'theme','theme_default'),
Strange thing also is that it's not with only 1 extension but it occurs also when I try to install other extensions. (but not with all)
Ideas anyone?