+ Reply to Thread
Results 1 to 8 of 8

Thread: how to prevent misuse of service?
      
   

  1. #1
    Freedom35 is offline Staff Sergeant
    Join Date
    Dec 2006
    Posts
    43

    Default how to prevent misuse of service?

    I'm providing a subscription-based service.

    When a user registered with me (I only collect his name and email), I will give him a two-weeks free trial of my service. At the end of the two weeks, he will only continue receiving my service if he pay for it.

    There are some users who may after the two-week free trial, cancel his account, re-register with a different name and email to receive the two weeks free trial again and the cycle continue.

    How can I minimize such misuse?

  2. #2
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: how to prevent misuse of service?

    Well- you could have the php script that processes your form collect the IP address of the sender. That way- if you suspect that this is occuring, you can compare the IP addresses and if they are the same, deny service.
    Additionally, once it is detected that this person is doing this- you could modify the script to not process any requests coming from that IP address.

    Be mindful that if a person signs up from a computer at their work- there may be over a hundred computers with that same IP address. So if they tell a friend and they also sign up from work- it could appear that the same person is abusing the free service.

    That is why it is important to get additional information such as address, contact number etc... They would be less likely to provide that much false info.

    Thats my two cents worth. There may be better methods out there that I am unaware of. But that would get you started.

    Andy
    PHP- is a blast!

  3. #3
    LadyEye's Avatar
    LadyEye is offline General & Forum Moderator
    Join Date
    Jun 2006
    Location
    Canada
    Posts
    10,548

    Default Re: how to prevent misuse of service?

    I don't know of any programs or anything, but I can only imagine there must be something to track the ip of the computer and this would be the way to track this ... perhaps, do a search for "ip tracker" .... maybe something will show up under this ....

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  4. #4
    Freedom35 is offline Staff Sergeant
    Join Date
    Dec 2006
    Posts
    43

    Default Re: how to prevent misuse of service?

    hi Andy,

    How do I capture the sender's IP address using the php script?

    KG

  5. #5
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,061

    Default Re: how to prevent misuse of service?

    Yes, IP tracking and storing is one of the possible measures. However, even if you log in from the same computer, most ISPs use dynamically changing IP addresses, and they have HUNDREDS ot THUSANDS, so it becomes practically impossible to trace a customer (he's IP address changes continously).
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  6. #6
    Freedom35 is offline Staff Sergeant
    Join Date
    Dec 2006
    Posts
    43

    Default Re: how to prevent misuse of service?

    Thanks for all your kind help. will think of alternate ways to minimize the misuse.

    KG

  7. #7
    econstas's Avatar
    econstas is offline Second Lieutenant
    Join Date
    Jul 2006
    Location
    Durham, NC
    Posts
    105

    Default Re: how to prevent misuse of service?

    how about email address? There are still ways around it but it could be a start to stopping many small timers.

  8. #8
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,061

    Default Re: how to prevent misuse of service?

    Quote Originally Posted by econstas
    how about email address? There are still ways around it but it could be a start to stopping many small timers.
    ?? Please explain.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49