|
|
|
|
|
|
![]() |
#26 |
Banned
Join Date: Oct 2006
Posts: 13
|
Jim,
I think the coincidence is a bit too big! plus you modifyed that .htaccess so badly that you even broke it Code:
RewriteCond %{HTTP_REFERER} !^$ if they have ZangoToolbar. Why would you want that ? Code:
RewriteCond %{HTTP_REFERER} !^http://(.*@)?([a-z0-9-]+\.)*yourdomain\.com(:[0-9]+)?(/.*)?$ [NC] "the url might be of the form yourdomain.com:135" or any other group of digits Is that a new tld extension ? Using stuff like (.*@)?([a-z0-9-]+\.)* is overkill when you can simply use (.*)? which will match anything. |
![]() |
![]() |
![]() |
#27 |
Banned
Join Date: Oct 2006
Posts: 13
|
Also please note that the javascript history.go(-1)
won't set the referer to adwaresucks.com making Code:
RewriteCond %{HTTP_REFERER} !^http://(.*@)?([a-z0-9-]+\.)*adwaresucks\.com(:[0-9]+)?(/.*)?$ [NC] |
![]() |
![]() |
![]() |
#28 |
Banned
Join Date: Aug 2003
Location: Mohawk, New York
Posts: 19,477
|
I can't address the code since I didn't write it but I'm sure when the person that did will correct you...or not.
As far as the coincidence, that would be exactly what it is. If you knew me at all you would know that the last place I go is gfy. I would much rather take care of business than to look at Lindsey Lohan's latest nip slips. Our pages look nothing alike. Or are you talking about the idea? I'm sure you and I are not the first to come up with a redirect for people using a scumware program. As a matter of fact, I saw a mainstream site that started doing it in 2003 yesterday. But go ahead...question my honesty again. |
![]() |
![]() |
![]() |
#29 | ||
Banned
Join Date: Oct 2006
Posts: 13
|
Quote:
Quote:
Notice, I didn't have anything against making your own page and using that stuff. I don't care, I put the solution there to be used. But if the thing is indeed taken from there and pretend to be your own solution that would majorly suck, don't you think ? |
||
![]() |
![]() |
![]() |
#30 |
Banned
Join Date: Aug 2003
Location: Mohawk, New York
Posts: 19,477
|
I agree that it would suck...
And perhaps if you had posted it on a webmaster only board, you might have some type of claim. The fact alone that I only surf webmaster/surfer boards when greenguyandjim is mentioned should be enough. And most times with most people, my word is good enough. But, if you look at this thread...about post number 19 http://www.greenguysboard.com/board/...ad.php?t=35453 you will see my thought process. It would have been a lot easier if I did see your post. ![]() All in all, the idea has been around since at least 2003. I have read so much in the past few days about zango so I can't point you to the page I am talking about. (Please take my word for it) But, I suppose that person can come out and say we both stole his idea. And yet, I saw it yesterday and you probably haven't seen it at all. Truthfully, I didn't see your post. As I said, if I did, I would have asked you to be involved in somthing that is going to be much bigger than just zango. We are basically on the same page with this thing. There is a ton of work to be done. If you would like to help us, that would be great. But please, don't question my honesty or integrity. Call me a piece of shit, asshole...etc. But, I have been in this business for over 10 years. And nobody ever questions my honesty. This is why so many people are using adwaresucks.com. Webmasters know I am never going to do anything to hurt them. |
![]() |
![]() |
![]() |
#31 |
Lord help me, I'm just not that bright
|
After being told it's not a good idea everytime this year, I'm glad a few of you have taken your coding knowledge and got pro-active to do something with it.
I will be using it on my sites for sure. Thanks
__________________
Patrizia -Trixxxia trixxxia[at]gmail[dot]com ICQ: 465.826.441 |
![]() |
![]() |
![]() |
#32 | ||
The Original Greenguy (Est'd 1996) & AVN HOF Member - I Crop Pics For Thumbs In My Sleep
|
Quote:
Quote:
Or maybe you didn't see that thread? Sorta like Jim didn't see that one or your thread or any of the other threads that you can find by throwing some words into Google? |
||
![]() |
![]() |
![]() |
#33 | ||
Banned
Join Date: Oct 2006
Posts: 13
|
Quote:
Can you point me to where he remotely mentions anything about the User Agent Zango uses ? Did you even read what that code does ? let me quote it for you: Quote:
|
||
![]() |
![]() |
![]() |
#34 | |
Banned
Join Date: Oct 2006
Posts: 13
|
Quote:
Its like: "Yes I stole it, but look so did you, so I'm ok to do that" peace |
|
![]() |
![]() |
![]() |
#35 |
The Original Greenguy (Est'd 1996) & AVN HOF Member - I Crop Pics For Thumbs In My Sleep
|
Ok - you got me
![]() My bad. I apologize. |
![]() |
![]() |
![]() |
#36 |
Banned
Join Date: Aug 2003
Location: Mohawk, New York
Posts: 19,477
|
It doesn't matter Greenie. You know, Sparky knows and anyone I talked to about this knows that I never saw his post. Hell, anyone that knows me knows I didn't see his post. I don't want this to cloud what we are trying to do.
But please darksole, change your page to not send people to anti-adware software. Unless you found a free one that leaves cookies alone. And if you did, please share. |
![]() |
![]() |
![]() |
#37 |
The Original Greenguy (Est'd 1996) & AVN HOF Member - I Crop Pics For Thumbs In My Sleep
|
That's not what I was trying to say! My point (which is moot now) was that if there is another thread or page ANYWHERE on the internet that's dated prior to yours on how to redirect zango surfers - and assuming that you did not read it yourself - would you too be considered a thief?
|
![]() |
![]() |
![]() |
#38 |
Banned
Join Date: Oct 2006
Posts: 13
|
Heres the right code to use
Code:
RewriteEngine on RewriteCond %{HTTP_USER_AGENT} ZangoToolbar [NC] RewriteCond %{HTTP_REFERER} !^http://(.*)?yourdomain\.com(.*)$ [NC] RewriteCond %{HTTP_REFERER} !^http://(.*)?adwaresucks\.com(.*)$ [NC] RewriteRule .* http://www.adwaresucks.com/zango/?ref=yourdomain.com [R=302,L] Code:
<?php $ref = $_REQUEST['ref'] .......... if($ref) { echo "<a href='http://$ref'>Go Back</a>"; ?> |
![]() |
![]() |
![]() |
#39 | ||
Banned
Join Date: Oct 2006
Posts: 13
|
Quote:
thread poster but you popped out beeing defensive. Quote:
|
||
![]() |
![]() |
![]() |
#40 | |
Banned
Join Date: Oct 2006
Posts: 13
|
Quote:
This thing is hardly something to call someone a thief for, I put it there for everyone to use. But I think its common courtesy to give credits where its due. |
|
![]() |
![]() |
![]() |
#41 | |
a.k.a. Sparky
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
|
Quote:
So, any similarity is just two people coming up with the same answer for the same problem. I got involved with this from a code perspective yesterday morning after seeing what Greenguy and Jim had done and came up with a solution that was a little more robust and flexible than their first version. As for allowing the empty referrer, surfers use privacy software which blocks the referrer. Using your example .htaccess, if a surfer running privacy software hits your site, they get redirected to dark5.com, but, since they don't set a referrer, how do they get to click on the link back to your site? Try it in firefox, go into about:config and change network.http.sendRefererHeader to 0 and you should get stuck in the loop. (unless that should be a 3 to not send the referrer -- their config values are a bit cryptic and I didn't test firefox to verify) It seemed to be a compromise that affected the fewest number of people. As for properly supporting RFC3986 uri constructs, call me guilty. Ray Morris from StrongBox/bettercgi developed those when we were dealing with hotlinking with a bit of input from the board to make sure that any valid url construct would be covered, but, mangled urls would not be allowed access. I merely copied known tested, valid and working url constructs that absolutely supported every condition we threw at it ages ago. Code:
RewriteCond %{HTTP_REFERER} !^http://www.yourdomain.com.*$ [NC] If a surfer hits http://yourdomain.com/ -- they would be redirected for not having the www. I still support the .htaccess the way that it was written in part to conversations held directly with Greenguy and Jim and in part due to conditions I thought of that would unnecessarily complicate issues for a surfer. As you have mentioned the javascript back button doesn't make sense, and that was addressed yesterday in private conversations with Greenguy and Jim as were a number of other issues that haven't been raised yet. I'll state for the record right now that I didn't take your idea and today is the first that I even knew about it. I commend you for coming up with a solution prior to there being demand.
__________________
SnapReplay.com a different way to share photos - iPhone & Android |
|
![]() |
![]() |
![]() |
#42 |
Kodak Ghosts Run Amok
Join Date: Apr 2003
Location: Hobbs End
Posts: 1,718
|
I would like to follow up on what we chatted about last night in the channel about "anti zanga approved sponsors" we would be happy to make the banners that were mentioned. hit me up on icq or email me
we at lotzadollars are committed to supporting our honest affiliates and won't put up with these kinds of scams. we also appreciate all the positive feedback lotza received for takng this stand ![]() Last edited by spookyx; 2006-10-25 at 11:07 AM.. |
![]() |
![]() |
![]() |
#43 | |
The Original Greenguy (Est'd 1996) & AVN HOF Member - I Crop Pics For Thumbs In My Sleep
|
Quote:
You're not the 1st one to make up some htaccess coding to redirect surfers with adware installed - and if Jim & I have to sit here all fucking day trying to find a page that's dated prior to Oct 17, then that's what we'll fucking do. |
|
![]() |
![]() |
![]() |
#44 | |
Banned
Join Date: Oct 2006
Posts: 13
|
Quote:
but you don't really know how mod_rewrite works. There are legit no referer surfers, surfers that come to your site by typing your url in the address bar. Code:
RewriteEngine On RewriteCond %{HTTP_USER_AGENT} ZangoToolbar [NC] RewriteCond %{HTTP_REFERER} !^$ ... RewirteRule .* http://www.adwaresucks.com/zango/ [R,L] If the User has Zango Toolbar installed and he's comming from no referer or from adawaresucks or from yourdomain then DON'T redirect him. The user is redirected only if it has Zango Toolbar and its not coming from (no referer) , adwaresucks, yourdomain.com You can easily see that all no referer users are NOT sent to the Zango page and I really don't see the reason for it. |
|
![]() |
![]() |
![]() |
#45 | ||
Banned
Join Date: Oct 2006
Posts: 13
|
Quote:
Quote:
Its ok, I'll give you all credits, you can apply for a patent. |
||
![]() |
![]() |
![]() |
#46 |
The Original Greenguy (Est'd 1996) & AVN HOF Member - I Crop Pics For Thumbs In My Sleep
|
What I'm trying to prove to you is that NO ONE HERE READ YOUR THREAD ON GFY!
2 parties came up with a similar solution - you posted yours 1st & no one is disputing that. But by you asking for credit, you're saying that Jim did read it & that he stole the idea from you. |
![]() |
![]() |
![]() |
#47 |
Just because I don't care doesn't mean I don't understand!
|
Sorry to interupt discussion
![]() It may sound like stupid question but I am not very good at this. Need explanation about htaccess, Under same domain name have TGP and LL. Would It be enough to put It In public_html folder of my domain name or should I put separatly htaccess 1 for TGP and 1 for LL.
__________________
http://www.pornhound.net |
![]() |
![]() |
![]() |
#48 | |
a.k.a. Sparky
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
|
Quote:
Surfer with privacy software that doesn't send a referrer hits the site, has the ZangoToolbar installed. They are redirected. They read through the page, remove the links, but, haven't restarted IE yet. While the toolbar is indeed removed so that the next time they run IE, it won't advertise the ZangoToolbar user agent, their current surfing session will still say that ZangoToolbar is installed. They click the link at the bottom of the page, continue on to the site. Their referrer is still blank due to the privacy software, the user is then redirected back to the Zango page. I saw no simple way to keep that surfer without allowing the empty referrer. Setting a cookie would be a little nasty and would lump any efforts right back into the antispyware vendors that pop up ads every time someone visits a site. Not to mention, their privacy software probably wouldn't accept the cookie in the first place. Requiring webmasters to install a small script that checked an IP database against surfers that had originally hit the site would work, unless the surfer used AOL and their apparant IP address changed from one of AOLs multiple proxies. I felt it was a compromise that seemed to affect the smallest group of people without irritating a large number of people.
__________________
SnapReplay.com a different way to share photos - iPhone & Android |
|
![]() |
![]() |
![]() |
#49 |
Banned
Join Date: Oct 2006
Posts: 13
|
well,
Are you so keen on what you did that even if its broken you want to keep it ? I offered you the easy fix, and this cd guy which I assume is your coder comes to prove he has no understanding of what he does. You can apply my fix from above, or make your own fix but don't persist just for the sake of it. |
![]() |
![]() |
![]() |
#50 |
Banned
Join Date: Aug 2003
Location: Mohawk, New York
Posts: 19,477
|
darksole, you are right...I am a theif. CD34 knows nothing about server software, Greenguy is an uneductated ass and guess what???
You are gone... |
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | Rate This Thread |
|
|