I can't run the last two steps, becuase I can't FIND the code sections in my subscriptions.php .... vBulletin version 3.03 Any hints on where these might go in subscriptions.php ?
Code:
File subscriptions.php
FIND
// first check this is active if not die
if (!$subscriptioncache["$subscriptionid"]['active'])
{
$idname = $vbphrase['subscription'];
eval(print_standard_error('error_invalidid'));
}
BELOW that ADD
if ($subscriptioncache["$subscriptionid"]['onetime']) {
// Check if user has already purchased this subscription
$usersub = $DB_site->query_first("SELECT regdate FROM " . TABLE_PREFIX . "subscriptionlog WHERE subscriptionid=$subscriptionid AND userid=$bbuserinfo[userid]");
if ($usersub[regdate])
eval(print_standard_error('onetime_subscription'));
}
**************************************
FIND
$costs = unserialize($sub['cost']);
$subscription_title = $sub['title'];
BELOW that ADD
if (($costs[usd] == '0.00') AND ($costs[gbp] == '0.00') AND ($costs[eur] == '0.00')) {
build_user_subscription($subscriptionid, $bbuserinfo[userid]);
eval(print_standard_error('freesubscription_thankyou'));
}