Bitcoin Forum
August 17, 2024, 10:29:06 AM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Help please , Real Problem With All Faucet Refferal link  (Read 1269 times)
vas000 (OP)
Member
**
Offline Offline

Activity: 119
Merit: 100


View Profile
August 28, 2014, 09:22:27 PM
 #1

Hi Gus , First sorry if this not the place of my post , But I didn't find another place.
I have a big problem when I use my refferal link inside the "iframe" tag of HTML , The problem is not with the site , but in the refferal link , the problem is with 2 Temporary Wallets (Microwallet and bitcoin-cloud) , Bitchest is ok and work great , But How can I solve the others ?

This is my html tag ..
Code:
<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;">
<iframe id="frame" src="" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;">
 <p>NO FRAME</p>
 </iframe>
</div>
And my Js Code is very Simple..
Code:
function changeframe(){
document.getElementById('frame').src = "http://YYYYYY.COM/?r=XXX";
}

I use the inspect tools and call the "changeframe" function , It called successfully , but the problem is that not take the refferal "XXX" HERE ! I check that from my refferals by contacting them !
I used many codes (setAttribute ,  jquery ..) But I still have the problem with the 2 temp.wallets above , Can help please About solving that , and thanks.
BitCoinDream
Legendary
*
Offline Offline

Activity: 2366
Merit: 1204

The revolution will be digital


View Profile
August 28, 2014, 10:09:35 PM
Last edit: August 28, 2014, 10:22:22 PM by BitCoinDream
 #2

Hi Gus , First sorry if this not the place of my post , But I didn't find another place.
I have a big problem when I use my refferal link inside the "iframe" tag of HTML , The problem is not with the site , but in the refferal link , the problem is with 2 Temporary Wallets (Microwallet and bitcoin-cloud) , Bitchest is ok and work great , But How can I solve the others ?

This is my html tag ..
Code:
<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;">
<iframe id="frame" src="" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;">
 <p>NO FRAME</p>
 </iframe>
</div>
And my Js Code is very Simple..
Code:
function changeframe(){
document.getElementById('frame').src = "http://YYYYYY.COM/?r=XXX";
}

I use the inspect tools and call the "changeframe" function , It called successfully , but the problem is that not take the refferal "XXX" HERE ! I check that from my refferals by contacting them !
I used many codes (setAttribute ,  jquery ..) But I still have the problem with the 2 temp.wallets above , Can help please About solving that , and thanks.

I'm not sure why u r employing such a complicated coding practice ? U could simply use a href and if iframe is unavoidable then use it inside it.

Code:
<iframe src="demo_iframe.htm" name="iframe_a"></iframe>
<p><a href="http://YYYYYY.COM/?r=XXX" target="iframe_a">My Link Name</a></p>

Keep a note that, once u click on the link, whether u can get it as your URL with the ref link.

vas000 (OP)
Member
**
Offline Offline

Activity: 119
Merit: 100


View Profile
August 28, 2014, 10:27:43 PM
 #3

Hi Gus , First sorry if this not the place of my post , But I didn't find another place.
I have a big problem when I use my refferal link inside the "iframe" tag of HTML , The problem is not with the site , but in the refferal link , the problem is with 2 Temporary Wallets (Microwallet and bitcoin-cloud) , Bitchest is ok and work great , But How can I solve the others ?

This is my html tag ..
Code:
<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;">
<iframe id="frame" src="" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;">
 <p>NO FRAME</p>
 </iframe>
</div>
And my Js Code is very Simple..
Code:
function changeframe(){
document.getElementById('frame').src = "http://YYYYYY.COM/?r=XXX";
}

I use the inspect tools and call the "changeframe" function , It called successfully , but the problem is that not take the refferal "XXX" HERE ! I check that from my refferals by contacting them !
I used many codes (setAttribute ,  jquery ..) But I still have the problem with the 2 temp.wallets above , Can help please About solving that , and thanks.

I'm not sure why u r employing such a complicated coding practice ? U could simply use a href and if iframe is unavoidable then use it inside it.

Code:
<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;"><iframe src="http://YYYYYY.COM/?r=XXX" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;"><p>NO FRAME</p></iframe>

Keep a note that, once u click on the link, whether u can get it as your URL with the ref link.


No .. I mean I used that way to build NEXT - PREVIEWS - html document with js code , SO I try the example above , but that's not work , Also the direct source not work , you can also try that ! SO , I need help please , Thanks
micaman
Sr. Member
****
Offline Offline

Activity: 345
Merit: 500



View Profile WWW
August 29, 2014, 01:37:24 AM
 #4

I think you need to call the "changeframe" function, you can try these 2 working examples. You can call it from js or from the body onload event.

Code:
<script type="text/javascript">

function changeframe(){
document.getElementById('frame').src = "http://YYYYYY.COM/?r=XXX";
}

</script>
<body onload="changeframe();">

<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;">
<iframe id="frame" src="" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;">
<p>NO FRAME</p>
</iframe>
</div>

</body>

or

Code:
<script type="text/javascript">

function changeframe(){
document.getElementById('frame').src = "http://YYYYYY.COM/?r=XXX";
}

window.onload = changeframe;

</script>

<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;">
<iframe id="frame" src="" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;">
<p>NO FRAME</p>
  </iframe>
</div>
vas000 (OP)
Member
**
Offline Offline

Activity: 119
Merit: 100


View Profile
August 29, 2014, 02:27:40 AM
 #5

I think you need to call the "changeframe" function, you can try these 2 working examples. You can call it from js or from the body onload event.

Code:
<script type="text/javascript">

function changeframe(){
document.getElementById('frame').src = "http://YYYYYY.COM/?r=XXX";
}

</script>
<body onload="changeframe();">

<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;">
<iframe id="frame" src="" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;">
<p>NO FRAME</p>
</iframe>
</div>

</body>

or

Code:
<script type="text/javascript">

function changeframe(){
document.getElementById('frame').src = "http://YYYYYY.COM/?r=XXX";
}

window.onload = changeframe;

</script>

<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;">
<iframe id="frame" src="" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;">
<p>NO FRAME</p>
  </iframe>
</div>

Thanks But the both NOT WORK !! I used All Method I Now , But I faced like this problem first time , What is the solution , You can Also try that in your PC , Thanks Again For Your Reply  Cheesy
micaman
Sr. Member
****
Offline Offline

Activity: 345
Merit: 500



View Profile WWW
August 29, 2014, 08:51:10 AM
 #6

I tried both and they both work, at least on chrome.
Don't forget to replace that URL by the real one.
vas000 (OP)
Member
**
Offline Offline

Activity: 119
Merit: 100


View Profile
August 29, 2014, 10:46:15 AM
 #7

I tried both and they both work, at least on chrome.
Don't forget to replace that URL by the real one.

hi bro. , is the faucet accept referral link ? I dont say that the frame not worked or not shown , but it not accept ref. link
so are you tested that with ref link , and then checked it by the others how claim from your frame link ?
micaman
Sr. Member
****
Offline Offline

Activity: 345
Merit: 500



View Profile WWW
August 29, 2014, 02:34:14 PM
 #8

I can't confirm that because I tested it using my own referral.
Depending on the referral validation system of the faucet you are using, they might be tracking your IP, or something like that, coming to the conclusion that the referrer/referred are the same person, and as a result they won't count it as a new referred. It's a possibility, I'm not sure.

Try it using a different faucet link or a different host for your page (with a different IP from yours).
vas000 (OP)
Member
**
Offline Offline

Activity: 119
Merit: 100


View Profile
August 29, 2014, 03:26:42 PM
Last edit: August 29, 2014, 03:40:03 PM by vas000
 #9

I can't confirm that because I tested it using my own referral.
Depending on the referral validation system of the faucet you are using, they might be tracking your IP, or something like that, coming to the conclusion that the referrer/referred are the same person, and as a result they won't count it as a new referred. It's a possibility, I'm not sure.

Try it using a different faucet link or a different host for your page (with a different IP from yours).

The Problem is With All MicroWallet and Bitcoin-Cloud Faucets , A very Simple code I test in my browser , localhost , and in my web server , and NOT WORKED

Code:
<html>
<head></head>
<body>

<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;">
<iframe id="frame" src="http://YYYY.eu/?r=XXXXX" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;">
 <p>NO FRAME</p>
 </iframe>
</div>

</body>
</html>

But I try that in Jsbin (http://jsbin.com) , It worked and counted me one referral for one time , because Of the site server IP.
And I want to NOTE that My Referrals Claim not me , I contact 4 of them and It's work great in their browser , But I'm not receiving referrals !
I'm also not beginner in Developing , But This is the first time that I faced Like This Problem.
Can Help with other suggestion , and thanks.
BitCoinDream
Legendary
*
Offline Offline

Activity: 2366
Merit: 1204

The revolution will be digital


View Profile
August 29, 2014, 03:30:41 PM
 #10

Hi Gus , First sorry if this not the place of my post , But I didn't find another place.
I have a big problem when I use my refferal link inside the "iframe" tag of HTML , The problem is not with the site , but in the refferal link , the problem is with 2 Temporary Wallets (Microwallet and bitcoin-cloud) , Bitchest is ok and work great , But How can I solve the others ?

This is my html tag ..
Code:
<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;">
<iframe id="frame" src="" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;">
 <p>NO FRAME</p>
 </iframe>
</div>
And my Js Code is very Simple..
Code:
function changeframe(){
document.getElementById('frame').src = "http://YYYYYY.COM/?r=XXX";
}

I use the inspect tools and call the "changeframe" function , It called successfully , but the problem is that not take the refferal "XXX" HERE ! I check that from my refferals by contacting them !
I used many codes (setAttribute ,  jquery ..) But I still have the problem with the 2 temp.wallets above , Can help please About solving that , and thanks.

I'm not sure why u r employing such a complicated coding practice ? U could simply use a href and if iframe is unavoidable then use it inside it.

Code:
<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;"><iframe src="http://YYYYYY.COM/?r=XXX" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;"><p>NO FRAME</p></iframe>

Keep a note that, once u click on the link, whether u can get it as your URL with the ref link.


No .. I mean I used that way to build NEXT - PREVIEWS - html document with js code , SO I try the example above , but that's not work , Also the direct source not work , you can also try that ! SO , I need help please , Thanks

I'm not sure why it is not working at your end as it is working fine at my local machine. It is good if u provide a complete HTML code with JS to test us at our end. Unless we can simulate your problem, we cant provide a solution to U !!!

vas000 (OP)
Member
**
Offline Offline

Activity: 119
Merit: 100


View Profile
August 29, 2014, 03:44:46 PM
 #11

Quote
I'm not sure why it is not working at your end as it is working fine at my local machine. It is good if u provide a complete HTML code with JS to test us at our end. Unless we can simulate your problem, we cant provide a solution to U !!!

Please Can you try this simple code ,,
Quote
<html>
<head></head>
<body>

<div id="frame-div" style="clear:right;position:relative;margin:auto auto;width:auto;height:auto;">
          <iframe id="frame" src="http://YYYYYY.eu/?r=XXX" style="margin-top:10px;width:800px;height:570px;float:none;position:relative;">
           <p>NO FRAME</p>
           </iframe>
</div>

</body>
</html>

I try that in Jsbin (jsbin.com) Worked and count the Ref. Earnings , paybe It's Dedicated Server IP , But Anyway , I tried that in my local browser and my web server of my site , also not work , I dont Understand Why , Instead of that The Bitchest.me faucet works great , But the problem is With All (MicroWallet and Bitcoin-Cloud) !!
Can You give me any suggestions please ? Thanks  Smiley
vas000 (OP)
Member
**
Offline Offline

Activity: 119
Merit: 100


View Profile
August 29, 2014, 08:03:03 PM
 #12

Finaly It's Work I dont know Where the problem was , But I'm using now $('frame') accessing with jquery but I add the link and ref link into one variable then changing it , and Maybe if anyone have the same problem , this could be helped. Anyway , Thanks to EveryOne Who Helped me.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!