1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Tweak ZANGO Gateway with this code and increase installs/revenue

Discussion in 'Affiliate Programs' started by andheresjohnny, Jan 24, 2008.

  1. mubin

    mubin Notable Member

    Messages:
    3,434
    Likes Received:
    123
    Best Answers:
    0
    Trophy Points:
    240
    #21
    how much does zango pay per install?
     
    mubin, Jan 27, 2008 IP
  2. andheresjohnny

    andheresjohnny Well-Known Member

    Messages:
    964
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    120
    #22
    Depends upon the country (from zango):

    
    Install Rates
    Monthly Installs 	Tier 1 	Tier 2 	Tier 3
    
    1 to 3,000 	         $0.75 	$0.40 	$0.10
    3,001 to 15,000       $1.00   $0.53   $0.15
    15,001 to 50,000      $1.13   $0.59  $0.18
    50,001 to 100,000    $1.21   $0.63   $0.19
    100,001 to 150,000   $1.29  $0.67   $0.21
    150,001 to 200,000   $1.37  $0.71   $0.22
    over 200,000            $1.45  $0.75   $0.24
    
    
    Tier 	Countries
    1 	United States
    2 	Canada, France, Germany, Italy, Netherlands, Spain, United Kingdom
    3 	Australia, Austria, Belgium, Denmark, Finland, Iceland, Ireland, Mexico, New Zealand, Norway, Portugal, Singapore, Sweden, Switzerland
    Code (markup):
     
    andheresjohnny, Jan 27, 2008 IP
  3. mubin

    mubin Notable Member

    Messages:
    3,434
    Likes Received:
    123
    Best Answers:
    0
    Trophy Points:
    240
    #23
    why not just use a firefox referral without making them install zango?

    Have you heard of explorer destroyer.
     
    mubin, Jan 27, 2008 IP
  4. argothiusz

    argothiusz Well-Known Member

    Messages:
    1,500
    Likes Received:
    79
    Best Answers:
    0
    Trophy Points:
    140
    #24
    Do the sessions restart if the visitors close their browser and open again? Because it would be meaningless since they can just close the browser and open again instead of downloading it.
     
    argothiusz, Jan 31, 2008 IP
  5. andheresjohnny

    andheresjohnny Well-Known Member

    Messages:
    964
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    120
    #25
    Yes, sessions restart if they close the browser and start again. I analyzied my stats for just that type of visitor behavior. In my case that does not appear to happen often.

    My thinking was that if that was a problem then I would store the visitor's IP in a mySQL database and do an additional check inside the code that I posted. This would track a visitor across multiple sessions.

    I concluded that in my case it was not worth the effort. Others may think otherwise.
     
    andheresjohnny, Jan 31, 2008 IP
  6. ListedHosting

    ListedHosting Banned

    Messages:
    606
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #26
    Is this only for the us? Also do they pay via paypal?
     
    ListedHosting, Jan 31, 2008 IP
  7. andheresjohnny

    andheresjohnny Well-Known Member

    Messages:
    964
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    120
    #27
    Yes, Paypal is one method of payment. They will also do bank transfers when you make enough :D.

    No, it is NOT only for the US.
     
    andheresjohnny, Jan 31, 2008 IP
  8. ListedHosting

    ListedHosting Banned

    Messages:
    606
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #28
    If i choice to say i am from the us, since they get paid a lot more, would they be able to find out if i am lieing? Also am i allowed to have text telling the visitors to download the toolbar?
     
    ListedHosting, Jan 31, 2008 IP
  9. andheresjohnny

    andheresjohnny Well-Known Member

    Messages:
    964
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    120
    #29
    Ok, now I think I understand what you're asking. The payscale doesn't depend upon where the WEBMASTER is located. It depends upon where the VISITOR is located. If a VISITOR from the United States comes to your website and installs the zango toolbar then you will get a minimum of 75 cents. Visitors from other countries will earn you less.

    Does that make sense?
     
    andheresjohnny, Jan 31, 2008 IP
  10. ListedHosting

    ListedHosting Banned

    Messages:
    606
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #30
    Ohh okay thanks. And what about the ad question?
     
    ListedHosting, Jan 31, 2008 IP
  11. andheresjohnny

    andheresjohnny Well-Known Member

    Messages:
    964
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    120
    #31
    Yes, you sure can have ads/text instructing the visitor to download the toolbar.

    It's NOT like Google Adsense.
     
    andheresjohnny, Jan 31, 2008 IP
  12. ListedHosting

    ListedHosting Banned

    Messages:
    606
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #32
    Okay sounds good, thanks again ill sign up under your link :)
     
    ListedHosting, Jan 31, 2008 IP
  13. jjetoni

    jjetoni Peon

    Messages:
    98
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #33
    The code:

    <?php
    session_start();
    $_SESSION['zango'] = 0;
       if (isset($_SESSION['views'])) {
          if ($_SESSION['views'] < 2) {
             $_SESSION['views'] = $_SESSION['views']+ 1;
          } else {
                 $_SESSION['zango'] = 1;
          }
       } else {
              $_SESSION['views'] = 1;
       }
    ?>
    
    <?php
    if ($_SESSION['zango'] === 1) {
    ?>
    <!-- zango gateway code START -->
    <!-- zango gateway code END -->
    <?php
    }
    ?>
    
    Code (markup):
    Place the gateway javascript between the 2 lines:

    <!-- zango gateway code START -->
    <!-- zango gateway code END -->


    Is thiss code ilegal ??
     
    jjetoni, Jan 31, 2008 IP
  14. andheresjohnny

    andheresjohnny Well-Known Member

    Messages:
    964
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    120
    #34
    Yes, this code sure is legal.
     
    andheresjohnny, Jan 31, 2008 IP
  15. jjetoni

    jjetoni Peon

    Messages:
    98
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #35
    to be sure i have to ask my menager
    on 10 000 uniques my install ratio is 1-7
    and i hope it will be more with that code
     
    jjetoni, Jan 31, 2008 IP
  16. bookm

    bookm Banned

    Messages:
    1,096
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #36
    okey ..where exactly i have to put this tweak code?
     
    bookm, Feb 1, 2008 IP
  17. deathfromabove

    deathfromabove Active Member

    Messages:
    309
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    58
    #37
    thanks for the info. yahoo is paying a $1 at cj to get their toolbar installed but its only for us visitors.
     
    deathfromabove, Feb 1, 2008 IP
  18. mashup

    mashup Active Member

    Messages:
    144
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    55
    #38
    dont use zango gateway and adsense on the same page

    popups and adsense are not allowed
    so you will get banned in the end..
     
    mashup, Feb 2, 2008 IP
  19. liquidmedia

    liquidmedia Active Member

    Messages:
    516
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    80
    #39
    I tired the code but every page I was getting a pop up
     
    liquidmedia, Feb 2, 2008 IP
  20. moneymind

    moneymind Peon

    Messages:
    232
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #40
    Dont promote zango they are just tring to monoploze the entire web. The quick cash you make now will end up hurting you in the long run.
     
    moneymind, Feb 2, 2008 IP