Welcome, Guest. Please Login or Register
  HomeHelpSearchLoginRegister Latest Rules Support  
 
Pages: 1 ... 50 51 52 53 54 ... 60
Send Topic Print
YouGetProfit - Revenue sharing program from Twickerz (Read 542919 times)
moneymarketing
Sub Moderator
*****
Offline



Posts: 3908
Vancouver, Canada
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #765 - 12th Apr, 2018 at 5:20pm
 
SolidSnake wrote on 12th Apr, 2018 at 11:23am:
So, it seems that Payza has been completely removed from YGP..

My withdrawal from 2 days ago got reversed.

The option to add funds through Payza is not available anymore, and I guess the same goes for withdrawals as well.

Now there's only Bitcoin and Perfect Money as deposit options so we'll have to work with them I guess..


Yes, they are being pulled from most sites because even the Euro site is blocking entire countries. I don't think they will survive.

Also, note that the co-op is on hold since payza was the main conduit for funds and getting cash across different sites is proving difficult. Until more of them adopt the cryptos I am putting it on hold
Back to top
 

David
 
IP Logged
 
moneymarketing
Sub Moderator
*****
Offline



Posts: 3908
Vancouver, Canada
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #766 - 27th Apr, 2018 at 7:47am
 
Quote:
Total Members: 100000


Smiley
Back to top
 

David
 
IP Logged
 
dansbanners
VIP Member
*****
Offline


I love being here!

Posts: 2025
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #767 - 27th Apr, 2018 at 5:09pm
 
moneymarketing wrote on 27th Apr, 2018 at 7:47am:
Smiley

100,000 members! Smiley
Back to top
 

 
IP Logged
 
SolidSnake
Forum Administrator
*****
Offline


I'm impossible to forget,
but I'm hard to remember

Posts: 3386
Center of the Universe
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #768 - 4th Jun, 2018 at 11:02am
 
I've improved the referrals extension selection script to include a calculation of the price to be added to the purchase balance just to prevent myself from doing the maths every time.  Grin

Here's the upgraded version:
Code (Javascript):
var days = 1 //<-- Adjust this number to select referrals expiring in X days
var price = 0.528 //<-- Adjust this number to set the price per referral extension
var separator = '***********************************************************';
$('#tablelist > tr > td').filter(function(){ var pattern = / days/;
	if(pattern.test($(this).text())){return $(this).text().replace(/ days/i, "") <= days}
}).parent().children().has('input').children().prop('checked', true);
$('#rentedbar').show();
var rrs = $('#tablelist > tr > td input:checked').length
console.log('\n' + separator + '\n' + rrs + ' RRs expiring in ' + days + ' days require $' + (rrs * price).toFixed(5) + ' to be extended.\n' + separator); 



You just need to set the first two lines with values based on your preferrence.
Then paste the script in the browser's console (display it by clicking F12) and press "enter".

The result will be something like:
Code (HTML):
***********************************************************
39 RRs expiring in 2 days require $20.59200 to be extended.
*********************************************************** 



The script automatically selects all checkboxes based on your preferences set above.  Smiley
Back to top
 
WWW  
IP Logged
 
SolidSnake
Forum Administrator
*****
Offline


I'm impossible to forget,
but I'm hard to remember

Posts: 3386
Center of the Universe
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #769 - 4th Jun, 2018 at 1:48pm
 
I also upgraded the referrals recycling script to a similar format:

Code (Javascript):
var inputDateStr = "24-05-2018"; //<-- Adjust this to the date RRs haven't clicked since
var recyclePrice = 0.05; //<-- Adjust this to the recycling price per referral
var separator = '*****************************************************************************';
$('#tablelist > tr > td:nth-child(4)').filter(function() { var i=0;
	var inputDate = inputDateStr.split("-");
	inputDate = new Date(inputDate[2], inputDate[1]-1, inputDate[0]);

	var foundDate = $(this).text();
	foundDate = foundDate.split("-");
	foundDate = new Date(foundDate[2], foundDate[1]-1, foundDate[0]);

	if (foundDate <= inputDate){ i++; return true; }
}).parent().children().has('input').children().prop('checked', true);
$('#rentedbar').show(); $('#tablelist > tr > td > input:checked').length;
var rrs = $('#tablelist > tr > td input:checked').length
console.log('\n' + separator + '\n' + rrs + ' RRs that haven\'t clicked since ' + inputDateStr + ' require $' + (rrs * recyclePrice).toFixed(5) + ' to be recycled.\n' + separator); 



Only with this script you first need to sort your referrals list using the "last click" column (older dates should be at the top).
The result should be something like this:

Code (HTML):
*****************************************************************************
7 RRs that haven't clicked since 24-05-2018 require $0.35000 to be recycled.
***************************************************************************** 



And again the script will have already checked them for you. Now you only need to select the recycle command.
Back to top
 
WWW  
IP Logged
 
SolidSnake
Forum Administrator
*****
Offline


I'm impossible to forget,
but I'm hard to remember

Posts: 3386
Center of the Universe
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #770 - 14th Jul, 2018 at 1:35pm
 
Lately I've been facing an adblock issue on YGP.. Even though I've disabled my adblockers YGP still doesn't show ads up..

So, I use the following way to display them.
While on the view ads page using Chrome on a Desktop/Laptop:

(I'll just link to the images since they're huge and will make it messy here)
  1. Right click on the "Paid To Click Ads" and select "Inspect".
  2. Click one of the following lines that start with "<div " and are marked with class="ad-block ".
  3. Find the rule to the right that starts with ":root .ad-block" and states: "display: none !important;" and uncheck it.
  4. Notice it gets striked through and click F12 (or close the development console window using its "X" button)

The ads should now show up.. don't refresh, browse elsewhere or close the YGP ads page because you'll have to repeat the process. Just complete your ads clicking routine normally (Click ad => view it on new tab => close the new tab => click the next ad etc.).

The process should be similar in Firefox or other browsers as well.. mobile browsers still don't support the developer console as far as I know.
Back to top
 
WWW  
IP Logged
 
moneymarketing
Sub Moderator
*****
Offline



Posts: 3908
Vancouver, Canada
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #771 - 15th Jul, 2018 at 2:46am
 
SolidSnake wrote on 14th Jul, 2018 at 1:35pm:
Lately I've been facing an adblock issue on YGP.. Even though I've disabled my adblockers YGP still doesn't show ads up..

So, I use the following way to display them.
While on the view ads page using Chrome on a Desktop/Laptop:

(I'll just link to the images since they're huge and will make it messy here)
  1. Right click on the "Paid To Click Ads" and select "Inspect".
  2. Click one of the following lines that start with "<div " and are marked with class="ad-block ".
  3. Find the rule to the right that starts with ":root .ad-block" and states: "display: none !important;" and uncheck it.
  4. Notice it gets striked through and click F12 (or close the development console window using its "X" button)

The ads should now show up.. don't refresh, browse elsewhere or close the YGP ads page because you'll have to repeat the process. Just complete your ads clicking routine normally (Click ad => view it on new tab => close the new tab => click the next ad etc.).

The process should be similar in Firefox or other browsers as well.. mobile browsers still don't support the developer console as far as I know.


I'm not having a problem with FF but I don't use AdBlock there, only NoScript
Back to top
 

David
 
IP Logged
 
SolidSnake
Forum Administrator
*****
Offline


I'm impossible to forget,
but I'm hard to remember

Posts: 3386
Center of the Universe
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #772 - 28th Oct, 2018 at 6:17pm
 
I've just spotted another interesting way to advertise R4A on YouGetProfit, that actually makes it worthwhile due to the high cost of $1.5 per 1000 visitors.

I was interested in driving traffic to a Greek site I'm running, so I decided to check how much greek traffic YGP could deliver.

So, I purchased 1000 credits and assigned 500 credits to a URL with a filter of Greek members only.

Unsurprisingly only a few people from Greece click daily on YGP, however to my surprise there are a lot of people that click on those ads while not having registered on YGP at all.

So, after 4-5 days my ad has received only 15 clicks from members but 168 outside clicks from non-logged in visitors.

That's almost 10x times more than the actual credits I have spent so far. Smiley

Now since all PTC campaigns are equally exposed to the same outside visitors it's not like I'm cheating the system.. it's just a matter of targetting and it is a good advanced tactic to get much more from our campaigns.

It's just like the PPC banner exposure when using BoB where every impression counts (not click).
I can guess we could use this tactic on other sites as well..

So, let's see how much we could benefit from it! Smiley
Back to top
 
WWW  
IP Logged
 
dansbanners
VIP Member
*****
Offline


I love being here!

Posts: 2025
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #773 - 28th Oct, 2018 at 6:44pm
 
SolidSnake wrote on 28th Oct, 2018 at 6:17pm:
I've just spotted another interesting way to advertise R4A on YouGetProfit, that actually makes it worthwhile due to the high cost of $1.5 per 1000 visitors.

I was interested in driving traffic to a Greek site I'm running, so I decided to check how much greek traffic YGP could deliver.

So, I purchased 1000 credits and assigned 500 credits to a URL with a filter of Greek members only.

Unsurprisingly only a few people from Greece click daily on YGP, however to my surprise there are a lot of people that click on those ads while not having registered on YGP at all.

So, after 4-5 days my ad has received only 15 clicks from members but 168 outside clicks from non-logged in visitors.

That's almost 10x times more than the actual credits I have spent so far. Smiley

Now since all PTC campaigns are equally exposed to the same outside visitors it's not like I'm cheating the system.. it's just a matter of targetting and it is a good advanced tactic to get much more from our campaigns.

It's just like the PPC banner exposure when using BoB where every impression counts (not click).
I can guess we could use this tactic on other sites as well..

So, let's see how much we could benefit from it! Smiley

That might be a good way to do it. Since you're not getting too many internal clicks with this ad, you may wind up with tons of external clicks by the time it reaches 1000 internal clicks. See how it goes.
Back to top
 

 
IP Logged
 
moneymarketing
Sub Moderator
*****
Offline



Posts: 3908
Vancouver, Canada
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #774 - 28th Oct, 2018 at 7:24pm
 
dansbanners wrote on 28th Oct, 2018 at 6:44pm:
That might be a good way to do it. Since you're not getting too many internal clicks with this ad, you may wind up with tons of external clicks by the time it reaches 1000 internal clicks. See how it goes.


It would almost work like a PTC text ad
Back to top
 

David
 
IP Logged
 
dansbanners
VIP Member
*****
Offline


I love being here!

Posts: 2025
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #775 - 29th Oct, 2018 at 2:03am
 
moneymarketing wrote on 28th Oct, 2018 at 7:24pm:
It would almost work like a PTC text ad

Well. With the text ads, it's pay per impression. Whereas in the method SS described, he could get tons of extra, external clicks.
Back to top
« Last Edit: 29th Oct, 2018 at 11:54am by dansbanners »  

 
IP Logged
 
SolidSnake
Forum Administrator
*****
Offline


I'm impossible to forget,
but I'm hard to remember

Posts: 3386
Center of the Universe
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #776 - 5th Nov, 2018 at 11:28am
 
I'm facing this weird issue lately, I don't seem to receive clicks once per week even though my activity is steady.

Take a look at this:

...

Have you guys noticed the same problem?
Back to top
 
WWW  
IP Logged
 
dansbanners
VIP Member
*****
Offline


I love being here!

Posts: 2025
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #777 - 5th Nov, 2018 at 1:33pm
 
SolidSnake wrote on 5th Nov, 2018 at 11:28am:
I'm facing this weird issue lately, I don't seem to receive clicks once per week even though my activity is steady.

Take a look at this:

https://image.ibb.co/cJBCk0/2018-11-03-Error-no-Clicks.png

Have you guys noticed the same problem?

Could it have something to do with the time zone?
Back to top
 

 
IP Logged
 
SolidSnake
Forum Administrator
*****
Offline


I'm impossible to forget,
but I'm hard to remember

Posts: 3386
Center of the Universe
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #778 - 6th Nov, 2018 at 11:23am
 
dansbanners wrote on 5th Nov, 2018 at 1:33pm:
Could it have something to do with the time zone?

I think the graphs are based solely on their own timezone, just like the rest of the site.

I have a 2 hours difference with them, so the server reset time is at my 2am (winter time).

Plus it only happens once a week which doesn't match a server time problem.. as it should happen every day otherwise.

Just like when I miss a day's clicking the next day is boosted in RR clicks.. so that doesn't cost me a lot, but it shouldn't happen in the first place.

I'll monitor to see if that happens the next week as well and I'll then contact them about it.
Back to top
 
WWW  
IP Logged
 
dansbanners
VIP Member
*****
Offline


I love being here!

Posts: 2025
Gender: male
Re: YouGetProfit - Revenue sharing program from Twickerz
Reply #779 - 9th Nov, 2018 at 5:46am
 
SolidSnake wrote on 28th Oct, 2018 at 6:17pm:
I've just spotted another interesting way to advertise R4A on YouGetProfit, that actually makes it worthwhile due to the high cost of $1.5 per 1000 visitors.

I was interested in driving traffic to a Greek site I'm running, so I decided to check how much greek traffic YGP could deliver.

So, I purchased 1000 credits and assigned 500 credits to a URL with a filter of Greek members only.

Was your ad written in Greek or English?
Back to top
« Last Edit: 10th Nov, 2018 at 1:41pm by dansbanners »  

 
IP Logged
 
Pages: 1 ... 50 51 52 53 54 ... 60
Send Topic Print