Results 1 to 4 of 4

Thread: 2013-2014 HYIP monitor script modifications, Mods Programmers

  1. #1
    Administrator admin's Avatar
    Join Date
    Mar 2012
    Posts
    437

    2013-2014 HYIP monitor script modifications, Mods Programmers

    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.

  2. #2
    Administrator admin's Avatar
    Join Date
    Mar 2012
    Posts
    437
    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:
    {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}
    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.

    Example. I had this line in my add_site.tpl file:
    <td><input type="submit" value="Add to listing" class="sbmt" id="addlist"></td>
    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>
    {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

  3. #3
    Junior Member
    Join Date
    Sep 2012
    Posts
    9
    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

  4. #4
    Administrator admin's Avatar
    Join Date
    Mar 2012
    Posts
    437
    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:
    function procVote()
    {
    d = document.vote;
    if (!document.vote.email.value)
    {
    alert('Please, enter your E-Mail address!');
    document.vote.email.focus();
    return false;
    }
    By:

    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;
    }
    and then in same file replace:

    <input type="submit" value="Vote" class=sbmt>
    by:

    <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>
    replace

    <input type="radio" name="vote" value=2 checked>
    by

    <input type="radio" name="vote" value=2>
    replace

    Very Bad<br>
    </td>
    by

    Very Bad<br>
    </td>
    <td align=center width=0%>
    <input type="radio" name="vote" value=10 checked>
    No vote<br>
    </td>
    It will

    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:
    var d = document.add_form;
    by following:
    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;
    }
    then in same file, replace:
    <td colspan=2><textarea name="description" cols=82 rows=5 class=inpts></textarea></td>
    </tr>
    <tr><td colspan=2>&nbsp;</td>
    </tr>
    by:
    <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>
    It may NOT eliminate SPAM, another way to decrease SPAM is to install ZBBlock (google it).
    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.

Similar Threads

  1. Where to buy reliable HYIP script (secure HYIP script)?
    By admin in forum Webmaster Money Making
    Replies: 8
    Last Post: 06-02-2022, 05:43 AM
  2. [WTS] Monphp.com - Sell PTC license - site Buxhost - Script hyip monitor - domain - hosting
    By hikaru2838 in forum Buying, Selling or Trading
    Replies: 0
    Last Post: 01-31-2013, 12:05 PM
  3. [WTS] [ShopHYIP] Cheap hyip manager script, hyip templates, hyip lister
    By shophyip in forum Buying, Selling or Trading
    Replies: 0
    Last Post: 01-29-2013, 10:03 AM
  4. [WTS] Monphp.com - Sell script monitor,program,software,hosting,domain....
    By hikaru2838 in forum Buying, Selling or Trading
    Replies: 0
    Last Post: 11-23-2012, 01:27 AM
  5. Replies: 6
    Last Post: 11-03-2012, 01:26 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •