Skip to content

Instantly share code, notes, and snippets.

View katsar0v's full-sized avatar
💭
Happy

Kristiyan Katsarov katsar0v

💭
Happy
View GitHub Profile
@katsar0v
katsar0v / migrateorders.php
Created July 31, 2021 13:08 — forked from cfaria/migrateorders.php
Migrate WooCommerce Orders
<?php
//increase max execution time of this script to 150 min:
ini_set('max_execution_time', 9000);
//increase Allowed Memory Size of this script:
ini_set('memory_limit','960M');
// Copies woocommerce orders and users over from source to target.
// I use this on my local machine - loading both db's up there side by side
// could easily adjust the connect strings to connect elsewhere if needed.