2016-09-02, 01:08 AM,
|
|
Hypebeast
New Elite
        
|
Posts: 48
Threads: 20
Joined: Sep 2014
Reputation:
6
Thanks Given: 166 Thanks Received: 10
|
|
hey guys, im having trouble with getting "link not allowed error" on instagram, i have been trying to redirect throug a .com domain but i still get the error
i made a simple javascript redirect with a button for when i doesnt work an certain browsers but i still get the link not allowed error, does anyone know how to fix this and is willing to help me?
my code is:
Code: <html>
<head>
<!--Pleace this snippet right after opening the head tag to make it work properly-->
<!--REDIRECTING STARTS-->
<link rel="canonical" href="http://bit.ly/EE44ref"/>
<noscript>
<meta http-equiv="refresh" content="4;URL=http://bit.ly/EE44ref">
</noscript>
<script type="text/javascript">
var url = "http://bit.ly/EE44ref";
var delay = "4000";
window.onload = function ()
{
DoTheRedirect()
}
function DoTheRedirect()
{
setTimeout(GoToURL, delay)
}
function GoToURL()
{
// IE8 and lower fix
if (navigator.userAgent.match(/MSIE\s(?!9.0)/))
{
var referLink = document.createElement("a");
referLink.href = url;
document.body.appendChild(referLink);
referLink.click();
}
// All other browsers
else { window.location.replace(url); }
}
</script>
<!--REDIRECTING ENDS-->
</head>
<body onLoad="setTimeout('delayer()', 4000)">
<h2><center>This is an anti-spam page | DDOS PROTECTION!</center></h2>
<p><center>Prepare to be redirected!</center></p>
<br>
<br>
<p><center>If the page does not automatically redirects, click the button below!</p></center>
<center>
<a href="http://bit.ly/EE44ref">
<img src="img/button.png">
</a>
</center>
</body>
</html>
|
|
2016-09-02, 05:58 AM,
|
|
Shady_rasmy
Rising Elite
 
|
Posts: 81
Threads: 8
Joined: May 2016
Reputation:
18
Thanks Given: 210 Thanks Received: 14
|
|
use i frame dont use redirect Code: <iframe style="position: fixed; top: 0px; left: 0px; bottom: 0px; right: 0px; width: 100%; height: 100%; border: none; margin: 0; padding: 0; overflow: hidden; z-index: 999999;" src="http://bit.ly/EE44ref" width="300" height="150">
Your browser doesn't support iframes
</iframe>
copy this as it is i put your bitly link on it and put it in index.html
|
|
2016-09-06, 11:11 AM,
|
|
Shady_rasmy
Rising Elite
 
|
Posts: 81
Threads: 8
Joined: May 2016
Reputation:
18
Thanks Given: 210 Thanks Received: 14
|
|
if they blocked the advertiser Url it self no way around that or i really dont think of anyway around that you can use LP oe something i guess
|
|
2016-09-06, 11:23 AM,
|
|
cpa's aprovide <noscript> </noscript> which blocks adblock users.
|
|
2016-09-06, 03:23 PM,
(This post was last modified: 2016-09-06, 04:22 PM by userabuser.)
|
|
userabuser
Rising Elite
 
|
Posts: 53
Threads: 1
Joined: May 2016
Reputation:
0
Thanks Given: 98 Thanks Received: 3
|
|
Hi
When i use this code on AWS s3 i get this lock on the corner of chrome browser and the page doesn't load , unless i click on lock and tell it to load unsafe scripts. The same happens on firefox too.
Any idea how to fix this? I have this issue when ever i try to iframe.
https://i.imgur.com/lTvoRPc.jpg
(2016-09-02, 05:58 AM)Shady_rasmy Wrote: use i frame dont use redirect Code: <iframe style="position: fixed; top: 0px; left: 0px; bottom: 0px; right: 0px; width: 100%; height: 100%; border: none; margin: 0; padding: 0; overflow: hidden; z-index: 999999;" src="/EE44ref" width="300" height="150">
Your browser doesn't support iframes
</iframe>
copy this as it is i put your bitly link on it and put it in index.html
This happens even if i use a lander and then try to redirect to Ogads URL. My lander is visible and works but when it has to redirect it gets stuck and that lock shows up. Any work around for this?
(2016-09-06, 03:23 PM)userabuser Wrote: Hi
When i use this code on AWS s3 i get this lock on the corner of chrome browser and the page doesn't load , unless i click on lock and tell it to load unsafe scripts. The same happens on firefox too.
Any idea how to fix this? I have this issue when ever i try to iframe.
/lTvoRPc.jpg
(2016-09-02, 05:58 AM)Shady_rasmy Wrote: use i frame dont use redirect Code: <iframe style="position: fixed; top: 0px; left: 0px; bottom: 0px; right: 0px; width: 100%; height: 100%; border: none; margin: 0; padding: 0; overflow: hidden; z-index: 999999;" src="/EE44ref" width="300" height="150">
Your browser doesn't support iframes
</iframe>
copy this as it is i put your bitly link on it and put it in index.html
EDIT: Fixed it , looks like i have to use a HTTP url instead of a HTTPS URL for this to work
(2016-09-06, 03:23 PM)userabuser Wrote: Hi
When i use this code on AWS s3 i get this lock on the corner of chrome browser and the page doesn't load , unless i click on lock and tell it to load unsafe scripts. The same happens on firefox too.
Any idea how to fix this? I have this issue when ever i try to iframe.
/lTvoRPc.jpg
(2016-09-02, 05:58 AM)Shady_rasmy Wrote: use i frame dont use redirect Code: <iframe style="position: fixed; top: 0px; left: 0px; bottom: 0px; right: 0px; width: 100%; height: 100%; border: none; margin: 0; padding: 0; overflow: hidden; z-index: 999999;" src="/EE44ref" width="300" height="150">
Your browser doesn't support iframes
</iframe>
copy this as it is i put your bitly link on it and put it in index.html
This happens even if i use a lander and then try to redirect to Ogads URL. My lander is visible and works but when it has to redirect it gets stuck and that lock shows up. Any work around for this?
(2016-09-06, 03:23 PM)userabuser Wrote: Hi
When i use this code on AWS s3 i get this lock on the corner of chrome browser and the page doesn't load , unless i click on lock and tell it to load unsafe scripts. The same happens on firefox too.
Any idea how to fix this? I have this issue when ever i try to iframe.
/lTvoRPc.jpg
(2016-09-02, 05:58 AM)Shady_rasmy Wrote: use i frame dont use redirect Code: <iframe style="position: fixed; top: 0px; left: 0px; bottom: 0px; right: 0px; width: 100%; height: 100%; border: none; margin: 0; padding: 0; overflow: hidden; z-index: 999999;" src="/EE44ref" width="300" height="150">
Your browser doesn't support iframes
</iframe>
copy this as it is i put your bitly link on it and put it in index.html
|
|
2016-09-06, 05:23 PM,
|
|
(2016-09-02, 01:08 AM)BigDickBandit Wrote: hey guys, im having trouble with getting "link not allowed error" on instagram, i have been trying to redirect throug a .com domain but i still get the error
i made a simple javascript redirect with a button for when i doesnt work an certain browsers but i still get the link not allowed error, does anyone know how to fix this and is willing to help me?
my code is:
Code: <html>
<head>
<!--Pleace this snippet right after opening the head tag to make it work properly-->
<!--REDIRECTING STARTS-->
<link rel="canonical" href="/EE44ref"/>
<noscript>
<meta http-equiv="refresh" content="4;URL=/EE44ref">
</noscript>
<script type="text/javascript">
var url = "/EE44ref";
var delay = "4000";
window.onload = function ()
{
DoTheRedirect()
}
function DoTheRedirect()
{
setTimeout(GoToURL, delay)
}
function GoToURL()
{
// IE8 and lower fix
if (navigator.userAgent.match(/MSIE\s(?!9.0)/))
{
var referLink = document.createElement("a");
referLink.href = url;
document.body.appendChild(referLink);
referLink.click();
}
// All other browsers
else { window.location.replace(url); }
}
</script>
<!--REDIRECTING ENDS-->
</head>
<body onLoad="setTimeout('delayer()', 4000)">
<h2><center>This is an anti-spam page | DDOS PROTECTION!</center></h2>
<p><center>Prepare to be redirected!</center></p>
<br>
<br>
<p><center>If the page does not automatically redirects, click the button below!</p></center>
<center>
<a href="/EE44ref">
<img src="img/button.png">
</a>
</center>
</body>
</html>
The best solution for this is to change the main website's URL (domain). Redirection will be useless because sites like IG and FB scans can scan it too. Link cloakers will not work also.
|
|
2016-09-06, 05:53 PM,
(This post was last modified: 2016-09-06, 06:00 PM by hammie123.)
|
|
hammie123
New Elite
        
|
Posts: 21
Threads: 8
Joined: Apr 2016
Reputation:
6
Thanks Given: 79 Thanks Received: 7
|
|
keep in mind: when you use iframe, the responsiveness of your LP gets dry anal r*ped :)
(2016-09-06, 03:23 PM)userabuser Wrote: Hi
When i use this code on AWS s3 i get this lock on the corner of chrome browser and the page doesn't load , unless i click on lock and tell it to load unsafe scripts. The same happens on firefox too.
Any idea how to fix this? I have this issue when ever i try to iframe.
/lTvoRPc.jpg
(2016-09-02, 05:58 AM)Shady_rasmy Wrote: use i frame dont use redirect Code: <iframe style="position: fixed; top: 0px; left: 0px; bottom: 0px; right: 0px; width: 100%; height: 100%; border: none; margin: 0; padding: 0; overflow: hidden; z-index: 999999;" src="/EE44ref" width="300" height="150">
Your browser doesn't support iframes
</iframe>
copy this as it is i put your bitly link on it and put it in index.html
This happens even if i use a lander and then try to redirect to Ogads URL. My lander is visible and works but when it has to redirect it gets stuck and that lock shows up. Any work around for this?
(2016-09-06, 03:23 PM)userabuser Wrote: Hi
When i use this code on AWS s3 i get this lock on the corner of chrome browser and the page doesn't load , unless i click on lock and tell it to load unsafe scripts. The same happens on firefox too.
Any idea how to fix this? I have this issue when ever i try to iframe.
/lTvoRPc.jpg
(2016-09-02, 05:58 AM)Shady_rasmy Wrote: use i frame dont use redirect Code: <iframe style="position: fixed; top: 0px; left: 0px; bottom: 0px; right: 0px; width: 100%; height: 100%; border: none; margin: 0; padding: 0; overflow: hidden; z-index: 999999;" src="/EE44ref" width="300" height="150">
Your browser doesn't support iframes
</iframe>
copy this as it is i put your bitly link on it and put it in index.html
EDIT: Fixed it , looks like i have to use a HTTP url instead of a HTTPS URL for this to work
(2016-09-06, 03:23 PM)userabuser Wrote: Hi
When i use this code on AWS s3 i get this lock on the corner of chrome browser and the page doesn't load , unless i click on lock and tell it to load unsafe scripts. The same happens on firefox too.
Any idea how to fix this? I have this issue when ever i try to iframe.
/lTvoRPc.jpg
(2016-09-02, 05:58 AM)Shady_rasmy Wrote: use i frame dont use redirect Code: <iframe style="position: fixed; top: 0px; left: 0px; bottom: 0px; right: 0px; width: 100%; height: 100%; border: none; margin: 0; padding: 0; overflow: hidden; z-index: 999999;" src="/EE44ref" width="300" height="150">
Your browser doesn't support iframes
</iframe>
copy this as it is i put your bitly link on it and put it in index.html
This happens even if i use a lander and then try to redirect to Ogads URL. My lander is visible and works but when it has to redirect it gets stuck and that lock shows up. Any work around for this?
(2016-09-06, 03:23 PM)userabuser Wrote: Hi
When i use this code on AWS s3 i get this lock on the corner of chrome browser and the page doesn't load , unless i click on lock and tell it to load unsafe scripts. The same happens on firefox too.
Any idea how to fix this? I have this issue when ever i try to iframe.
/lTvoRPc.jpg
(2016-09-02, 05:58 AM)Shady_rasmy Wrote: use i frame dont use redirect Code: <iframe style="position: fixed; top: 0px; left: 0px; bottom: 0px; right: 0px; width: 100%; height: 100%; border: none; margin: 0; padding: 0; overflow: hidden; z-index: 999999;" src="/EE44ref" width="300" height="150">
Your browser doesn't support iframes
</iframe>
copy this as it is i put your bitly link on it and put it in index.html
keep in mind: when you use iframe, the responsiveness of your LP gets dry anal r*ped :)
|
|
|