Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: order_place_activation.php
<?php /* * Renew support for Infinity Box or Dongle * * See example in file get_list_of_products.php * $params() array must have 'ProductID' and 'SN' values * 685 is a ProductID for "Infinity-Box/Dongle software activation for Infinity [BEST], Chinese Miracle-2 and 1 year support included" * * NOTE: 'SN' should be Box or Dongle Serial Number but not IOS Username ! * Infinity Box or Dongle Serial Number is always 8 hex symbols */ require_once('iosapi.php'); $params = array('ProductID' => 685, 'SN' => '11223344'); $r = $API->Order($params); echo print_r($r, true); /* success: Array ( [ProductID] => 22 [Tag] => 11223344 [ID] => 823302 <=== use this value as $order_id later to check order status [Status] => QUEUED [Price] => 120 [Buffer] => [Operation] => Order [Debug] => 0 ) error: Array ( [Error] => 255 [Message] => Product 22 not enough funds 0 but 120 required ) */