Hi there, im creating this thread for me and you all who have HYIP monitor script 2013,2014 (older one) or you are a programmer.
Here you can add your modification suggestions or add guides how to improve and modiffy HYIP monitor script.
Hi there, im creating this thread for me and you all who have HYIP monitor script 2013,2014 (older one) or you are a programmer.
Here you can add your modification suggestions or add guides how to improve and modiffy HYIP monitor script.
CashBB is a moneymaking community. Not a member yet? Get CashBB account now.
Mod suggestion 1 - Antispam measure Add Listing
Hi there as an HYIP monitor admin you may experience alot of nonsense spam in filled into Add HYIP and Add Advertisement forms. Im receiving around 50 emails daily. This is the script im talking about: hyipmonitorfree.com
Can be good to make Mod guide how to modiffy advertise.tpl so form is sent only after payment made, not before....
I can contribute $4 to man who make it. If anyone else need this mod, please add your contribution.
SOLUTION
You may try prevent automated spam submission on your hyip lister by editing /tmpl/add_premium.tpl (add_normal, add_trial, add_site.tpl....) files. These files shows sourcecode for pages where HYIP admins add their listing details. We will edit the submit button of the web form so it will be disabled for the first 20 seconds after page is loaded. THis might filter out some robots which submit forms earlier than 20 seconds after loading webpage.
1. Open that file add_premium.tmpl (or normal, trial, add_site.tpl...)
2. Find: <input type="submit" value=" (whole input field code should be something like:
<input type="submit" value="Add My Site" class=sbmt>
OR
<input type="submit" value="Add to listing" class="sbmt" id="addlist">
3. What is your input field code look like?
a) If your input field code contains "id=*****", then copy the id value (example: addlist) and paste it into following code:
Then copy above mentioned block of code below the input field in your /tmpl/add_site.tpl file or any other file with the web form.{literal}
<script type="text/javascript">
document.getElementById('addlist').disabled = true;
document.getElementById('addlist').value = "Please take Your time to fill all fields correctly first. Then You will be able to Submit";
setTimeout(function(){
document.getElementById('addlist').disabled = false;
document.getElementById('addlist').value = "Add My Site";
}, 20000);
</script>
{/literal}
Example. I had this line in my add_site.tpl file:
So i coppied above mentioned code to my add_site.tpl file just below that line making it:<td><input type="submit" value="Add to listing" class="sbmt" id="addlist"></td>
<td><input type="submit" value="Add to listing" class="sbmt" id="addlist"></td>
{literal}
<script type="text/javascript">
document.getElementById('addlist').disabled = true;
document.getElementById('addlist').value = "Please take Your time to fill all fields correctly first. Then You will be able to Submit";
setTimeout(function(){
document.getElementById('addlist').disabled = false;
document.getElementById('addlist').value = "Add My Site";
}, 20000);
</script>
{/literal}
So i ensured that addlist is in the literal code block and it is also as the input html code as a valuie of id="".
PS: You can replace 20000 by any other number, this is number of miliseconds so there is 20 seconds delay during which no one can submit form. It may stop some spam bots.
Last edited by admin; 11-04-2012 at 09:35 AM. Reason: Adding Mod guide for HYIP lister
Hello I am a programmer and I have a HYIP Monitor script that support pay before add program. This feature helps to prevent spam emails from users. I sell for just $10. Contact me on [email protected]
@Admin: I can send you the Modified advertise.tpl for $4
Thx for the offer, your price is low, but i prefer free modifications now
If someone interested, here another tweak:
Reduce/Prevent SPAM in HYIP lister/monitor votes & add listing
Backup file tmpl/details.tpl and then inside this file
Replace:
By:function procVote()
{
d = document.vote;
if (!document.vote.email.value)
{
alert('Please, enter your E-Mail address!');
document.vote.email.focus();
return false;
}
and then in same file replace:function procVote()
{
d = document.vote;
if (document.vote.url.value || document.vote.tellme.value != 'tnahpele' || document.vote.vote.value == '10')
{
alert('Voting not possible. If you will submit SPAM to this site, your IP will be logged and might be reported to the SPAMHaus.');
document.vote.email.focus();
return false;
}
if (!document.vote.email.value)
{
alert('Please, enter your E-Mail address!');
document.vote.email.focus();
return false;
}
by:<input type="submit" value="Vote" class=sbmt>
replace<input name="url" type="text" style="display: none;">Antispam: write word elephant backwards:<br /><input name="tellme" type="text" /><br /><input type="submit" value="Vote" class=sbmt>
by<input type="radio" name="vote" value=2 checked>
replace<input type="radio" name="vote" value=2>
byVery Bad<br>
</td>
It willVery Bad<br>
</td>
<td align=center width=0%>
<input type="radio" name="vote" value=10 checked>
No vote<br>
</td>
1) add new hidden input form field into the voting form. Some bots may input URLs inside it, normal users do not see such field. If field is filled, user(bot) canot submit.
2) Submitter must provide correct answer to the antispam question
3) Default vote is "No vote" which do not allow form to be submitted, default vote is used by bots usually
--------------
Similar way with protecting Add Listing form:
backup file tmpl_hyipguyz/add_site.tpl and then edit it. (note that tmpl_hyipguiz is example folder, use your tmpl folder (not tmpl_c))
Replace line:
by following:var d = document.add_form;
then in same file, replace:var d = document.add_form;
if (d.hidd.value || d.tellme.value != 'tnahpele'){
alert('Bot submissions will not be published. They can be reported to the SPAMhaus. You failed to answer anti-bot question correctly.');
d.email.focus();
return false;
}
by:<td colspan=2><textarea name="description" cols=82 rows=5 class=inpts></textarea></td>
</tr>
<tr><td colspan=2> </td>
</tr>
It may NOT eliminate SPAM, another way to decrease SPAM is to install ZBBlock (google it).<td colspan=2><textarea name="description" cols=82 rows=5 class=inpts></textarea></td>
</tr>
<tr><td colspan=2>Please write down word "elephant" backwards/in reverse order (anti-bot question):<br /><input name="tellme" type="text" /><input name="hidd" type="text" style="display: none;"></td></tr>
If you know better way to eliminate it, please share.
One can also ban IP addresses of the SPAMmers. It is visible from within votes management section in admin area.
CashBB is a moneymaking community. Not a member yet? Get CashBB account now.