![]() |
|
|
|
||||||||||
![]() |
|
|
Thread Tools |
|
#1
|
||||
|
||||
|
Tweak ZANGO Gateway with this code and increase installs/revenue
I have been receiving alot of PMs and Live Messenger requests pertaining to a recent Zango-related post that I made in another thread. I will post the technique here instead of continuing to answer each request individually.
For those unaware, Zango is company that pays webmasters money for each visitor that downloads the Zango toolbar .. a "pay-per-install" affiliate program. This can be quite lucrative, with many webmasters earning hundreds or thousands of dollars per day. You must signup with Zango to make use of this program and technique. Go to their website either by Googling them or via the link in my signature below. This technique makes use of the Zango "gateway" which is a page that appears when visitors try to access protected content on your website (videos, music, games, downloads, etc). The page explains to the visitor that the content they are about to access is free, but in order to get to it they must install a small "toolbar" to try. When they install it then they are taken to the content. If they don't install it then they will or will not be taken to the content ... depending upon what type of gateway the webmaster is using. A good example of this Zango gateway in operation is www.glitterfy.com. Click the "Glitter Maker" tab, and you will be prompted to install the toolbar, but even if you decline you still have access to the glitter maker option. I have several blogs with content where I have installed the Zango gateway. By the very nature of a blog visitors can enter by any page. I discovered that many people were just "clicking away" when the first page they saw was popping up the Zango gateway right off the bat. The visitors weren't getting a taste of what I had to offer ... they weren't getting "hooked". I decided that I needed to allow visitors to sample several blog posts (content) before I hit them with the gateway to continue. I figured they would be more likely to install the toolbar if they liked what they already saw. What I did was add some PHP code to the top of each page in the blog. This was easy to do since the blog software (wordpress) was structured more or less with templates. Add the PHP code to one of the templates (ie; header) and it would be available on every page that included the template. You can use ths code even if you are not using a blog. You just have to make sure that it appears on every page. The code below uses what is called PHP sessions. Basically these are variables that exist for the life of one visitor's browsing "session". All it does is keep track of how many pages a visitor has viewed. After a pre-determined number of pages have been viewed the Zango gateway will begin poppng up. Hopefully by this point the visitor is "hooked" and will be more likely to install the toolbar. Well it works very very well. The code below is written in PHP, so the server hosting your account must be able to process PHP. If your server is Microsoft-based you will have to write this code in another language. At least you will know what it should do ... hire a script writer! The code: 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
}
?>
<!-- zango gateway code START --> <!-- zango gateway code END --> The above code will allow the visitor to view 2 pages of content before popping up the gateway. To change the number of pages that you want the visitor to see before they get the gateway, change the number '2' on the line if ($_SESSION['views'] < 2) { . Now I'm not a professional PHP coder, and I'm sure there are cleaner ways to write the code ... but the extra money this generates doesn't care. I have several other techniques that I use to dramatically increase my install ratio when using the syndicated content. If I find the time someday I'll do a post regarding that. Good luck folks. |
|
#2
|
|||
|
|||
|
thats sweet!
|
|
#3
|
||||
|
||||
|
Hopfully I didn't screw up the code as I was typing it in.
I tell you though ... the technique works very well. |
|
#4
|
|||
|
|||
|
I sent you a PM, and I am glad I did, because it really works great. Now I am just waiting for the popover gateway so that the content can still be seen behind the installer. I was doing good with zangocash already. Now it will be that much better. I really appreciate the little snippet.
|
|
#5
|
||||
|
||||
|
Quote:
|
|
#6
|
|||
|
|||
|
But glitterfly is not using it now. I am not seeing anything like that when i clicked their tabs
|
|
#7
|
||||
|
||||
|
Quote:
Did you click on the "Glitter Maker" tab at the top? That is what is triggering the pop-over gateway. Also, have you already installed the Zango toolbar on your own PC? The gateway will not appear if you already have the toolbar installed. |
|
#8
|
|||
|
|||
|
I clicked. I think i have installed from other site.Thats why..
|
|
#9
|
||||
|
||||
|
Then you can uninstall it and try again .. that should work.
|
|
#10
|
||||
|
||||
|
they accept warez forum?
__________________
PraHost Netherlands VPS | Netherlands and Germany Dedicated Server | Provider Since 2007
|
|
#11
|
||||
|
||||
|
I doubt they would allow you to signup with an "illegal" website. I believe a warez site might fit that description in their eyes.
|
|
#12
|
|||
|
|||
|
What An IDea? I joined one week back in zango cash,My site is games site I got your php code,let's try,I will edit your php to 5 pages(you kept 2 pages), and I will keep the gateway which will not allow to play the game if visitor or user click 'no'.he can play the game only when he clicks 'yes'.How is my Idea?Somebody is saying that zango is a spyware don't use,some times I am confident about zango when I see's like this thread.Sometimes when I see post's like zango is a spy then I am really confusing.Somebody is saying we will loss our repeated visitors but I got confidence when I seen Your php code again.By your php code we can get Install from others after sometime when they enjoyed littlebit in our site.it's good idea.I solved one problem from your thread now.There are other problems that are I am going to use google adsense(just applied today waiting for thier approval) ,I seen one thread in this Dp that one person said that google banned his site for using the gateway of zangocash.Is it True? But everybody saying that no problem with money and easy money with zango.Please provide me more details abt zango.
|
|
#13
|
||||
|
||||
|
Quote:
I've been using Zango with no problems from any seach engine. Zango is not spyware. |
|
#14
|
|||
|
|||
|
Yes, I am believing zango I am keeping the zango in my website.
|
|
#15
|
||||
|
||||
|
Are you placing zango on the games site in your sig? Because that site has so much zango potential.
Post in this thread if you'd like some suggestions on that games website. I'l post my thoughts here so all can see. Last edited by andheresjohnny; Jan 26th 2008 at 11:26 am. Reason: Corrected spelling |
|
#16
|
||||
|
||||
|
How many sites can you sign-up with?
Also do they allow gaming sites? What are the reqriment? |
|
#17
|
||||
|
||||
|
Quote:
Then you can add an unlimited number of websites. Tracking is done by website, so you can see how well each site performs. Actually, their entire tracking reporting is excellent. I have used their stats to determine what should go where. The requirements are that you do not put zango on illegal sites. Be sure to read their TOS to stay on the straight and narrow. |
|
#18
|
||||
|
||||
|
andheresjohnny Thx alot
|
|
#19
|
||||
|
||||
|
I am in LOVE! Installed a Zango popover gateway yesterday on ONE of my TWENTY sites (getting the same amount of traffic around 3.000 unique a day and are dedicated to video/television) and made over $80 in 24 hours!
I am placing the code on 10 more Monday and plan on taking a long vacation!! |
|
#20
|
||||
|
||||
|
Also, if anyone needs help. Feel free to msg me!
|
![]() |
| Bookmarks |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Anyone promoting revenue gateway? | BigWill | Affiliate Programs | 3 | Jan 20th 2009 10:44 am |
| Many Services (Forum Installs, Mod/Skin Installs, PHP Script Installs, ETC!) | SuperHumanly | Services | 0 | Jan 19th 2008 3:14 pm |
| help me with zango:i will register with your referrer code:400k unique a month | nevret2 | Affiliate Programs | 9 | Dec 28th 2007 5:26 pm |
| Help me Tweak this code ^^ | Yazari | Programming | 2 | Feb 19th 2007 4:15 am |
| Revenue Gateway | MrMoolah.com | Affiliate Programs | 1 | Jan 6th 2007 7:39 pm |