Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 10-15-2006, 11:31 AM   #1
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Can someone check this code and tell me whats wrong with it?

Code:
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var refarray = new Array();
refarray['google.com'] = "http://www.mysite.com/404.htm?from=google";
refarray['yahoo.com'] = "http://www.mysite.com/404.htm??from=yahoo";
refarray['altavista.com'] = "http://www.mysite.com/404.htm??from=altavista";
refarray['alltheweb.com'] = "http://www.mysite.com/404.htm??from=alltheweb";
refarray['msn.com'] = "http://www.mysite.com/404.htm??from=msn";
refarray['lycos.com'] = "http://www.mysite.com/404.htm??from=lycos";
refarray['infoseek.com'] = "http://www.mysite.com/404.htm??from=infoseek";
for (var i in refarray) {
if (document.referrer.indexOf(i) != -1) window.open('http://www.mysite.com/404.htm?','_top');
}
// End -->
</script>
I use it to redirect image traffic and it always worked fine. A few mins ago i decided to redirect to another url so i simply replaced the mysite part with a different url. I saved it (Wordpress) and since then the redirect completely stopped working. I can't figure out what went wrong as i didnt touch anything but the url part.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:35 AM   #2
Spunky
I need a beer
 
Spunky's Avatar
 
Industry Role:
Join Date: Jun 2002
Location: ♠ Toiletville ♠
Posts: 133,940
"http://www.mysite.com/404.htm?from=google";
is missing a ? after htm
__________________
Spunky is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:37 AM   #3
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Crap..ignore the double ??, thats supposed to be one. I fucked up when posting it here. On my site its 1 ?
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:38 AM   #4
BV
wtf
 
BV's Avatar
 
Industry Role:
Join Date: Sep 2001
Location: Bikini State, FL USA
Posts: 10,914
try this one:


<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var refarray = new Array();
refarray['excite.com'] = "http://www.domain.com?from=excite";
refarray['google.com'] = "http://www.domain.com?from=google";
refarray['yahoo.com'] = "http://www.domain.com?from=yahoo";
refarray['altavista.com'] = "http://www.domain.com?from=altavista";
refarray['alltheweb.com'] = "http://www.domain.com?from=alltheweb";
refarray['msn.com'] = "http://www.domain.com?from=msn";
refarray['lycos.com'] = "http://www.domain.com?from=lycos";
refarray['infoseek.com'] = "http://www.domain.com?from=infoseek";
for (var i in refarray) {
if (document.referrer.indexOf(i) != -1) window.location.replace(refarray[i]);
}
// End -->
</script>
BV is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:38 AM   #5
corvette
Confirmed User
 
corvette's Avatar
 
Join Date: Oct 2001
Location: scottsdale
Posts: 7,880
offsubject, but thanks for the comments in the other thread a few days back, wanted to tell you that, no hard feelings, take care

-Mark
__________________
If you need a good company for check writing services, then check out checkissuing, and for webhosting, check out Phoenix NAP
corvette is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:39 AM   #6
BV
wtf
 
BV's Avatar
 
Industry Role:
Join Date: Sep 2001
Location: Bikini State, FL USA
Posts: 10,914
i think i gave you that code a while back didn't i?
BV is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:40 AM   #7
k0nr4d
Confirmed User
 
k0nr4d's Avatar
 
Industry Role:
Join Date: Aug 2006
Location: Poland
Posts: 9,228
im not sure if its the same in javascript, but i think your for should be a foreach
k0nr4d is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:43 AM   #8
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by corvette View Post
offsubject, but thanks for the comments in the other thread a few days back, wanted to tell you that, no hard feelings, take care

-Mark
Cool, thanks.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:44 AM   #9
polish_aristocrat
Too lazy to set a custom title
 
Join Date: Jul 2002
Posts: 40,377
sorry i dont even know HTML, cant help you....
__________________
I don't use ICQ anymore.
polish_aristocrat is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:44 AM   #10
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by BV View Post
try this one:


<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var refarray = new Array();
refarray['excite.com'] = "http://www.domain.com?from=excite";
refarray['google.com'] = "http://www.domain.com?from=google";
refarray['yahoo.com'] = "http://www.domain.com?from=yahoo";
refarray['altavista.com'] = "http://www.domain.com?from=altavista";
refarray['alltheweb.com'] = "http://www.domain.com?from=alltheweb";
refarray['msn.com'] = "http://www.domain.com?from=msn";
refarray['lycos.com'] = "http://www.domain.com?from=lycos";
refarray['infoseek.com'] = "http://www.domain.com?from=infoseek";
for (var i in refarray) {
if (document.referrer.indexOf(i) != -1) window.location.replace(refarray[i]);
}
// End -->
</script>

Doesnt work...wtf...what happened.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:46 AM   #11
Deputy Chief Command
Deputy Chief Command
 
Industry Role:
Join Date: Nov 2005
Posts: 4,482
gallery submitting sucks ? doenst it ?
__________________
Deputy Chief Command is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:46 AM   #12
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by polish_aristocrat View Post
sorry i dont even know HTML, cant help you....
Well, im happy you posted in my thread anyway.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:48 AM   #13
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by Deputy Chief Command View Post
gallery submitting sucks ? doenst it ?
You really are such a fucking retard.

Wtf has this to do with gallery submitting you fucking idiot. I wonder you are so obsessed with the fact that i submit a few galleries everyday anyway. Can you explain it?

this coming from a guy who spams his blog on gfy to get some traffic....how stupid can you get. Its like Metaman, calling everybody ugly but doesnt have the guts to post a pic of himself.

Last edited by Dirty F; 10-15-2006 at 11:50 AM..
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:49 AM   #14
Deputy Chief Command
Deputy Chief Command
 
Industry Role:
Join Date: Nov 2005
Posts: 4,482
Quote:
Originally Posted by Franck View Post
You really are such a fucking retard.

Wtf has this to do with gallery submitting you fucking idiot. I wonder you are so obsessed with the fact that i submit a few galleries everyday anyway. Can you explain it?


you love changing storys dont you ? can you explain THAT
__________________
Deputy Chief Command is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:51 AM   #15
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by k0nr4d View Post
im not sure if its the same in javascript, but i think your for should be a foreach
Not sure what you are trying to say but i didnt touch any code. Only the url part.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:53 AM   #16
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by Deputy Chief Command View Post
you love changing storys dont you ? can you explain THAT
Dude changing what stories? Are you on fucking crack. Still after what 1 year or so you cant backup ONE single claim you made about me. Come on, you should know better by now. Youre a delusional liar who spams his blog on gfy.

I offered money several times to people who could back up your claims about me. I never had to pay a penny...i think that says enough you moron

Now fuck off idiot.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 11:58 AM   #17
Deputy Chief Command
Deputy Chief Command
 
Industry Role:
Join Date: Nov 2005
Posts: 4,482
ahh , so I should revamp the threads where you claim you DONT submit galleries , or where you caim that the only gallery submtitting y ou do is t he occasional gallery you submit to the hun ?

now all of a sudden it became "I do it every day so fuckin what" ? ?
__________________
Deputy Chief Command is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:00 PM   #18
MikesTraffic
Confirmed User
 
Join Date: Jan 2006
Location: Montgomery, Alabama
Posts: 1,992
Hey Frank I just implemented the code into my wordpress blog at www.porno-shack.com and it works just fine for me. gimme a shout on icq 59975954 and lemme know what it is you are doing, maybe i can help.
__________________
Fortinet GURU
MikesTraffic is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:11 PM   #19
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by Deputy Chief Command View Post
ahh , so I should revamp the threads where you claim you DONT submit galleries , or where you caim that the only gallery submtitting y ou do is t he occasional gallery you submit to the hun ?

now all of a sudden it became "I do it every day so fuckin what" ? ?
Idiot, i mean total fucking big idiot, not that i have to explain anything to you but just to show the people who read this thread what a fucking moron you are. Although most know that by now.

You are obsessed with me and my galleries for over a year now. Back then when you started your scary obsession i was INDEED submitting the odd gallery. You even had evidence as you googled my site and where you thought you found 100's of galleries you actually only found a few galleries with several duplicated index pages with different recips. Now that already made you look like the retard you are but still you just keep on going and going and look more pathetic with every try.

And yes, obsessive freak, i submit a few galleries a day now and yes it makes me more money than you spamming your blog on gfy

I know it sucks that everything i do i do it better than you hence your obsession. That in combination with your compulsive lying and this is the result. Very pathetic.

Youve been trying forever to make me look stupid with made up claims and delusional thoughts that appear in your tiny brain while jerking off to my posts and pics. You have a problem. Its in your head. Find help.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:12 PM   #20
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by MikesTraffic View Post
Hey Frank I just implemented the code into my wordpress blog at www.porno-shack.com and it works just fine for me. gimme a shout on icq 59975954 and lemme know what it is you are doing, maybe i can help.
I just fucking dont get it how it suddenly stopped working for me. The same fucking code. I'll hit you up if i still cant figure it out.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:23 PM   #21
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
sigspot.
scottybuzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:26 PM   #22
Deputy Chief Command
Deputy Chief Command
 
Industry Role:
Join Date: Nov 2005
Posts: 4,482
my lil comment here and there really makes you go off doesnt it ? me >> lil line of text you >> a whole fucking book
__________________
Deputy Chief Command is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:30 PM   #23
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by Deputy Chief Command View Post
my lil comment here and there really makes you go off doesnt it ? me >> lil line of text you >> a whole fucking book
Oh dont even go there you obsessed freak. You fucking stalk me for over a year

Fucking idiot.

Funny how you completely ignore what i just explained...and what you knew already.

So what claim are you gonna make up next?

Tell me, how does it work being an compulsive liar? I mean do you know you lie or do you lies become instant truth for you the moment you make something up.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:37 PM   #24
Deputy Chief Command
Deputy Chief Command
 
Industry Role:
Join Date: Nov 2005
Posts: 4,482
ya , Franck , you are right

you never change your story
__________________
Deputy Chief Command is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:40 PM   #25
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
sigspot 2
scottybuzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:40 PM   #26
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by Deputy Chief Command View Post
ya , Franck , you are right

you never change your story


Ignore ignore and make up some more shit

You are truly fucked in your head. As in really.

Ok enough...no point in trying to make sense because a delusional liar will make up anything he wants and ignore the truth.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:41 PM   #27
scottybuzz
Too lazy to set a custom title
 
scottybuzz's Avatar
 
Industry Role:
Join Date: May 2006
Location: NY
Posts: 14,800
franck stop ignoring me dude. u seem to make 10 threads about me a day and now your ignoring my plea's for attention. whats going on?
scottybuzz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:42 PM   #28
GrouchyAdmin
Now choke yourself!
 
GrouchyAdmin's Avatar
 
Industry Role:
Join Date: Apr 2006
Posts: 12,085
FRANCK'S HOUSE OF JAVASCRIPT CARDS IS FALLING DOWN AROUND HIM :o :o :o :o
__________________
GrouchyAdmin is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:42 PM   #29
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by BV View Post
try this one:


<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var refarray = new Array();
refarray['excite.com'] = "http://www.domain.com?from=excite";
refarray['google.com'] = "http://www.domain.com?from=google";
refarray['yahoo.com'] = "http://www.domain.com?from=yahoo";
refarray['altavista.com'] = "http://www.domain.com?from=altavista";
refarray['alltheweb.com'] = "http://www.domain.com?from=alltheweb";
refarray['msn.com'] = "http://www.domain.com?from=msn";
refarray['lycos.com'] = "http://www.domain.com?from=lycos";
refarray['infoseek.com'] = "http://www.domain.com?from=infoseek";
for (var i in refarray) {
if (document.referrer.indexOf(i) != -1) window.location.replace(refarray[i]);
}
// End -->
</script>
Ok i got it working.

I suggest replacing the last line with

if (document.referrer.indexOf(i) != -1) window.open('http://www.mysite.com/404.htm?','_top');
}

Because it will break the frame.

Last edited by Dirty F; 10-15-2006 at 12:43 PM..
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-15-2006, 12:43 PM   #30
MaddCaz
Confirmed User
 
Join Date: Mar 2006
Location: Illinois
Posts: 9,483
I just dont KNOOO!!!!
MaddCaz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.