757jterrell
Reputation:
( +29)
Offline
Gender: 
Posts: 967
Referrals: 0
Get a site from the OWNERS of the script!!!
|
 |
May 16, 2010 11:19 AM |
|
Hello all,
I have been getting a lot of aurora owners stating that the paid to click highlight, icon, and subtitle fees are not working. I have checked the SDR scripts and some other auroras and this is very true. I have updated the SDR scripts loadfiles so this will no longer be an issue. However, if you own an SDR script, you can either send me a PM and I will fix this for you for free or you can follow the following steps to fix it yourself. For any other aurora owner, if you are having this issue also, this should fix your script as well.
The correction is in the admin2/settings/product.php file
These 2 settings need to be added:
$settings["iconCost"] = "$iconCost"; $settings["subtitleCost"] = "$subtitleCost";
you should already have this setting near the top of the file, but if you do not, then add it as well:
$settings["link_hl_price"] = "$link_hl_price";
Now, we just need to add the items that are in bold:
<tr> <td>Link Class D <a href=\"javascript:alert('Raw Credits Needed For 1 Class D Link Credit - CPM Cost = (Ratio * Base Price)')\" title=\"Help Me!\">?</a></td> <td align=\"center\"><input type=\"text\" name=\"class_d_ratio\" value=\"$settings[class_d_ratio]\" size=\"5\" onkeyup=\"calc_link_cost()\"></td> <td align=\"center\"><input type=\"text\" name=\"class_d_time\" value=\"$settings[class_d_time]\" size=\"3\"></td> <td align=\"center\">$settings[currency]<input type=\"text\" name=\"class_d_earn\" value=\"$settings[class_d_earn]\" size=\"5\" onkeyup=\"calc_link_cost()\"></td> <td align=\"center\"><input type=\"text\" name=\"class_d_credit_ratio\" value=\"$settings[class_d_credit_ratio]\" size=\"5\"></td> <td align=\"center\">$settings[currency]<input type=\"text\" name=\"class_d_cost\" size=\"3\" disabled=\"true\"></td> <td align=\"center\">$settings[currency]<input type=\"text\" name=\"class_d_cost2\" size=\"3\" disabled=\"true\"></td> </tr> <tr> <td><input type=\"checkbox\" name=\"sell_links\" value=\"1\"".iif($settings[sell_links] == 1,"checked=\"checked\"")."></td> <td>Link Subtitle Price</td> <td align=\"center\">$settings[currency]<input type=\"text\" name=\"subtitleCost\" value=\"$settings[subtitleCost]\" size=\"5\"></td> <td colspan=2> </td> </tr> <tr> <td><input type=\"checkbox\" name=\"sell_links\" value=\"1\"".iif($settings[sell_links] == 1,"checked=\"checked \"")."></td> <td>Link Icon Price</td> <td align=\"center\">$settings[currency]<input type=\"text\" name=\"iconCost\" value=\"$settings[iconCost]\" size=\"5\"></td> <td colspan=2> </td> </tr> <tr> <td><input type=\"checkbox\" name=\"sell_links\" value=\"1\"".iif($settings[sell_links] == 1,"checked=\"checked\"")."></td> <td>Link Highlight Price</td> <td align=\"center\">$settings[currency]<input type=\"text\" name=\"link_hl_price\" value=\"$settings[link_hl_price]\" size=\"5\"></td> <td colspan=2> </td> </tr> <tr> <td></td> <td>-----------------------------------</td> </tr> ")." ".iif(SETTING_PTRA==true," <tr> <td rowspan=4><input type=\"checkbox\" name=\"sell_ptra\" value=\"1\"".iif($settings[sell_ptra] == 1,"checked=\"checked\"")."></td> <td>PTR Ads Class A <a href=\"javascript:alert('Raw Credits Needed For 1 Class A PTR Credit - CPM Cost = (Ratio * Base Price)')\" title=\"Help Me!\">?</a></td> <td align=\"center\"><input type=\"text\" name=\"ptr_a_ratio\" value=\"$settings[ptr_a_ratio]\" size=\"5\" onkeyup=\"calc_link_cost()\"></td> <td align=\"center\"><input type=\"text\" name=\"ptr_a_time\" value=\"$settings[ptr_a_time]\" size=\"3\"></td> <td align=\"center\">$settings[currency]<input type=\"text\" name=\"ptr_a_earn\" value=\"$settings[ptr_a_earn]\" size=\"5\" onkeyup=\"calc_link_cost()\"></td> <td align=\"center\"><input type=\"text\" name=\"ptr_a_credit_ratio\" value=\"$settings[ptr_a_credit_ratio]\" size=\"5\"></td> <td align=\"center\">$settings[currency]<input type=\"text\" name=\"ptr_a_cost\" size=\"3\" disabled=\"true\"></td> <td align=\"center\">$settings[currency]<input type=\"text\" name=\"ptr_a_cost2\" size=\"3\" disabled=\"true\"></td> </tr>
|