Hi, I'm new to the forum.
I am importing from CRE Loaded 6.2 "Pro" to ZenCart. Everything looks good and I ran the products and customers import both with no problems.
My orders import is having problems, though, I must be doing something wrong. I have encryption enable, and I pasted my key into import_cre_orders.php as below (shown with a sample key).
Code:
$key = BhDt8rCjrdf3FoB;
$enc =base64_decode($enc);
$key = md5($key);
$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
$decrypttext = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, $enc, MCRYPT_MODE_ECB, $iv);
$decrypttext1 = trim($decrypttext);
return ($decrypttext1) ;
}
When I run the import it does not complete. It says:
Code:
Exporting Orders ...
.......................................................................................................................................................................................................200 -|
.......................................................................................................................................................................................................400 -|
.......................................................................................................................................................................................................600 -|
.......................................................................................................................................................................................................800 -|
.......................................................................................................................................................................................................1000 -|
.......................................................................................................................................................................................................1200 -|
.......................................................................................................................................................................................................1400 -|
.......................................................................................................................................................................................................1600 -|
.......................................................................................................................................................................................................1800 -|
.......................................................................................................................................................................................................2000 -|
.......................................................................................................................................................................................................2200 -|
.......................................................................................................................................................................................................2400 -|
.......................................................................................................................................................................................................2600 -|
.......................................................................................................................................................................................................2800 -|
.......................................................................................................................................................................................................3000 -|
.......................................................................................................................................................................................................3200 -|
.......................................................................................................................................................................................................3400 -|
.......................................................................................................................................................................................................3600 -|
.......................................................................................................................................................................................................3800 -|
.......................................................................................................................................................................................................4000 -|
.......................................................................................................................................................................................................4200 -|
.......................................................................................................................................................................................................4400 -|
.......................................................................................................................................................................................................4600 -|
.......................................................................................................................................................................................................4800 -|
.......................................................................................................................................................................................................5000 -|
.......................................................................................................................................................................................................5200 -|
.......................................................................................................................................................................................................5400 -|
.......................................................................................................................................................................................................5600 -|
.......................................................................................................................................................................................................5800 -|
.......................................................................................................................................................................................................6000 -|
.......................................................................................................................................................................................................6200 -|
.......................................................................................................................................................................................................6400 -|
...................................................................................
But it does not say done. When I look at the target database, the orders tables are still empty. I have almost 7000 orders so I don't know if this could be causing the problem.
Anyway, thanks for making this import tool, I prefer to use ZenCart and if I can get this step figured out with your help I will be much happier with the new software. Thank you!