Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: order_place_unlock_by_imei.php
<?php require_once('iosapi.php'); /* * See example in file get_list_of_products.php * $params() array must have 'ProductID' and 'IMEI' values * 626 is a ProductID for "Generic - France Bouygues (all models without iPhone) unlock code by imei" */ $params = array('ProductID' => 626, 'IMEI' => '123456789012345'); $r = $API->Order($params); echo print_r($r, true); /* success: Array ( [ID] => 12345 <=== use this value as $order_id later to check order status [IMEI] => 123456789012345 [Error] => 0 [Comment] => [Operation] => Order [Debug] => 0 ) error: Array ( [ID] => 12345 [IMEI] => 123456789012345 [Error] => 255 [Comment] => Job QUEUED already exist [Operation] => Order [Debug] => 0 ) */