I tried to clone an updated cart v1.3.3 from v1.3.2 via Softcaulous and it fails.
I check the config.php, compared with a new v1.3.3 install and find out the config.php format are not the same.
v1.3.2 is using define('DB_DRIVER','amysqli');
v1.3.3 is using const DB_DRIVER = 'amysqli';
Also upgrading from v1.3.2 to v1.3.3 does not update the config.php file. This is not using softaculous.
When i change change the define to const, i can clone the website.
My questions are:
1. Why is it changed?
2. Is using const a permanent change or may change in the future?
3. How do we know that there is a change for the config.php format? in case we need to make adjustment again for the clone works.