Greenguy's Board


Go Back   Greenguy's Board > General Business Knowledge
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2003-09-15, 02:09 AM   #1
FoZzI
Lord help me, I'm just not that bright
 
Join Date: Aug 2003
Location: Denmark
Posts: 104
Send a message via ICQ to FoZzI
What do to with this hotlink?

Was having a go at my stats today. And I found a strange URL at the top of the BW eater.

http://www.apollos-temple.com/wwwboa...ges/45644.html


And in there was links to some of my mpg files I use for a mgp gallery. As you see now, the link has been close. But if you enter this Url:

http://apollos-temple.com/wwwboard/index.html

The site has a "Movie Posting Forum". Should I do anything about it, other than putting a .htaccess up in my movie folders?

Just found another post with my movies in it:
http://www.apollos-temple.com/wwwboa...ges/45684.html

I see my htaccess can stop people from clicking the [1]<-linking to the movie. But if people copy and paste the url into their browser they still get to view the movie. Anyway around that?
__________________
Looking for a new tranny sponors that converts ? Check Out Tranny Pay
FoZzI is offline   Reply With Quote
Old 2003-09-15, 02:39 AM   #2
NotThatKevin
Well you know boys, a nuclear reactor is a lot like women. You just have to read the manual and press the right button
 
NotThatKevin's Avatar
 
Join Date: Sep 2003
Location: Australia
Posts: 155
I love it when they hot link my TGP galleries because it's free traffic and you do get sales from them. I post my TGP galleries on sites like this so don't see it as a negative
NotThatKevin is offline   Reply With Quote
Old 2003-09-15, 02:46 AM   #3
FoZzI
Lord help me, I'm just not that bright
 
Join Date: Aug 2003
Location: Denmark
Posts: 104
Send a message via ICQ to FoZzI
Well, the problem is that they only link to the contents ( .mpg .avi .mpeg). But not to the .htm page.
__________________
Looking for a new tranny sponors that converts ? Check Out Tranny Pay
FoZzI is offline   Reply With Quote
Old 2003-09-15, 03:09 AM   #4
NotThatKevin
Well you know boys, a nuclear reactor is a lot like women. You just have to read the manual and press the right button
 
NotThatKevin's Avatar
 
Join Date: Sep 2003
Location: Australia
Posts: 155
Don't you have a url in your video? If not you should but I'm not sure how the TGP gallery owners feel about this.

If you can't then I wouldn't just block them. Redirect them to a traffic trading page or something.
NotThatKevin is offline   Reply With Quote
Old 2003-09-15, 03:12 AM   #5
NotThatKevin
Well you know boys, a nuclear reactor is a lot like women. You just have to read the manual and press the right button
 
NotThatKevin's Avatar
 
Join Date: Sep 2003
Location: Australia
Posts: 155
By the way you can also embed a url popup at the end of the video so that it redirects them to your pay site.
NotThatKevin is offline   Reply With Quote
Old 2003-09-15, 03:18 AM   #6
FoZzI
Lord help me, I'm just not that bright
 
Join Date: Aug 2003
Location: Denmark
Posts: 104
Send a message via ICQ to FoZzI
I dont think that tgp sites likes a embed url popup in the movies
I wanna stop them by htaccess
__________________
Looking for a new tranny sponors that converts ? Check Out Tranny Pay
FoZzI is offline   Reply With Quote
Old 2003-09-15, 03:34 AM   #7
NotThatKevin
Well you know boys, a nuclear reactor is a lot like women. You just have to read the manual and press the right button
 
NotThatKevin's Avatar
 
Join Date: Sep 2003
Location: Australia
Posts: 155
Have a look at this page it may be able to help you http://www.webmastersguide.com/htacc...cess.htm#video
NotThatKevin is offline   Reply With Quote
Old 2003-09-15, 04:27 AM   #8
WolfPack
Heh Heh Heh! Lisa! Vampires are make believe, just like elves and gremlins and eskimos!
 
WolfPack's Avatar
 
Join Date: Sep 2003
Posts: 71
Quote:
Originally posted by NotThatKevin
Have a look at this page it may be able to help you http://www.webmastersguide.com/htacc...cess.htm#video
Hey Kevin, what's up man? long time no see.
__________________
Never shall innocent blood be shed. Yet the blood of the wicked shall flow like a river.
WolfPack is offline   Reply With Quote
Old 2003-09-15, 05:26 AM   #9
urb
All the way from Room 101
 
urb's Avatar
 
Join Date: Aug 2003
Posts: 3,557
Send a message via ICQ to urb
Just to mention that Apollos Temple used to have some serious traffic. They've been on my .htaccess for a long time now.

Not sure how much traffic they have now, but if you are worried about bandwidth, block 'em out asap.
urb is offline   Reply With Quote
Old 2003-09-15, 05:31 AM   #10
FoZzI
Lord help me, I'm just not that bright
 
Join Date: Aug 2003
Location: Denmark
Posts: 104
Send a message via ICQ to FoZzI
How do I block a domain in htaccess?
__________________
Looking for a new tranny sponors that converts ? Check Out Tranny Pay
FoZzI is offline   Reply With Quote
Old 2003-09-15, 05:32 AM   #11
NotThatKevin
Well you know boys, a nuclear reactor is a lot like women. You just have to read the manual and press the right button
 
NotThatKevin's Avatar
 
Join Date: Sep 2003
Location: Australia
Posts: 155
Hiya wolfpack do I know you mate?
NotThatKevin is offline   Reply With Quote
Old 2003-09-15, 05:52 AM   #12
urb
All the way from Room 101
 
urb's Avatar
 
Join Date: Aug 2003
Posts: 3,557
Send a message via ICQ to urb
Quote:
Originally posted by FoZzI
How do I block a domain in htaccess?
RewriteEngine on
RewriteOptions inherit
RewriteCond %{HTTP_REFERER} ^.*livejournal.*$ [OR]
RewriteCond %{HTTP_REFERER} ^.*communities.*$ [OR]
RewriteCond %{HTTP_REFERER} ^.*systran.*$ [OR]
RewriteCond %{HTTP_REFERER} ^.*password.*$ [OR]
RewriteCond %{HTTP_REFERER} ^.*onecenter.*$ [OR]
RewriteCond %{HTTP_REFERER} ^.*readworld.*$ [OR]
RewriteCond %{HTTP_REFERER} ^.*keeptalking.*$ [OR]
RewriteCond %{HTTP_REFERER} ^.*apollos-temple.*$ [OR]
RewriteCond %{HTTP_REFERER} ^.*terra.*$
RewriteRule /* http://www.yourdomainorsponsor.com/ [R,L]


I use the above, and it works ok.
urb is offline   Reply With Quote
Old 2003-09-15, 05:55 AM   #13
FoZzI
Lord help me, I'm just not that bright
 
Join Date: Aug 2003
Location: Denmark
Posts: 104
Send a message via ICQ to FoZzI
Cheers mate,

Do you know how to stop it, if the surfer copy the url into their browers?
__________________
Looking for a new tranny sponors that converts ? Check Out Tranny Pay
FoZzI is offline   Reply With Quote
Old 2003-09-15, 05:57 AM   #14
urb
All the way from Room 101
 
urb's Avatar
 
Join Date: Aug 2003
Posts: 3,557
Send a message via ICQ to urb
Yep, move or rename whatever they are hotlinking.
urb is offline   Reply With Quote
Old 2003-09-15, 05:59 AM   #15
FoZzI
Lord help me, I'm just not that bright
 
Join Date: Aug 2003
Location: Denmark
Posts: 104
Send a message via ICQ to FoZzI
Good idea, but then I have to change all the tgp htm files. So they are linking to the right movies. The change for being blacklisted for change the htm file after been listed is getting big then
__________________
Looking for a new tranny sponors that converts ? Check Out Tranny Pay
FoZzI is offline   Reply With Quote
Old 2003-09-15, 06:03 AM   #16
urb
All the way from Room 101
 
urb's Avatar
 
Join Date: Aug 2003
Posts: 3,557
Send a message via ICQ to urb
DoS attack them |skull|

Just kidding

How many TGPs are we talking about? You could email all who have listed you and go 404.

Last edited by urb; 2003-09-15 at 06:06 AM..
urb is offline   Reply With Quote
Old 2003-09-15, 06:09 AM   #17
FoZzI
Lord help me, I'm just not that bright
 
Join Date: Aug 2003
Location: Denmark
Posts: 104
Send a message via ICQ to FoZzI
I submit daily to over 100 tgp sites. Gonna give it a go
__________________
Looking for a new tranny sponors that converts ? Check Out Tranny Pay
FoZzI is offline   Reply With Quote
Old 2003-09-15, 07:40 AM   #18
Mikey 219
Heh Heh Heh! Lisa! Vampires are make believe, just like elves and gremlins and eskimos!
 
Mikey 219's Avatar
 
Join Date: Aug 2003
Location: SUNSHINE STATE
Posts: 79
Send a message via ICQ to Mikey 219 Send a message via AIM to Mikey 219
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://(www\.)?teenieman.com(/)?.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|mpg|mpeg)$ http://www.teenieman.com/tour_01.php [R,NC]

works for me ... cant view video by posting url path to it in address bar.

its option 2 at:

http://www.htmlbasix.com/disablehotlinking.shtml
Mikey 219 is offline   Reply With Quote
Old 2003-09-15, 07:45 AM   #19
urb
All the way from Room 101
 
urb's Avatar
 
Join Date: Aug 2003
Posts: 3,557
Send a message via ICQ to urb
Quote:
Originally posted by Mikey 219
works for me ... cant view video by posting url path to it in address bar.
Ooohhh Mikey, that's a very nice piece of code.
urb is offline   Reply With Quote
Old 2003-09-15, 08:41 AM   #20
Mikey 219
Heh Heh Heh! Lisa! Vampires are make believe, just like elves and gremlins and eskimos!
 
Mikey 219's Avatar
 
Join Date: Aug 2003
Location: SUNSHINE STATE
Posts: 79
Send a message via ICQ to Mikey 219 Send a message via AIM to Mikey 219
i aim to please
Mikey 219 is offline   Reply With Quote
Old 2003-09-15, 11:11 AM   #21
spazlabz
You can now put whatever you want in this space :)
 
spazlabz's Avatar
 
Join Date: Apr 2003
Location: Bluegrass State
Posts: 963
Send a message via ICQ to spazlabz Send a message via AIM to spazlabz Send a message via Yahoo to spazlabz
FoZzI,
No problem at all man. I can ban your TGPs URL on my script and prevent anyone from posting any of your Pages/Files on the ReddyFreddys Movie Posting Forum in a split second. Matter of fact, it's done now. I had considered closing down the forum a month or so ago, but there is a little bit of traffic to it and I still make sales from it so we keep it up. www.gaymovietgp.com has been banned from the script so if anyone tries and post anything from that domain they won't be able to.
Again FoZzI, sorry for the trouble.

spaz
__________________
spazlabz is offline   Reply With Quote
Old 2003-09-15, 12:04 PM   #22
Wazza
I'm a jaded evil bastard, I wouldn't piss on myself if I was on fire...
 
Join Date: Apr 2003
Location: Melbourne, Australia
Posts: 808
Send a message via ICQ to Wazza
Wouldn't banning .mgp .wmv .mov et al be more effective in preventing file leeching originating from your board?

At the very least ppl would be forced to post links to galleries and give the person who's supplying content to your board (and is indirectly financing some of your sales) a chance to make a sale of their own?
__________________
I sale Internet

My sites have no traffic and no PR - let's trade - PM me
Wazza is offline   Reply With Quote
Old 2003-09-15, 12:08 PM   #23
spazlabz
You can now put whatever you want in this space :)
 
spazlabz's Avatar
 
Join Date: Apr 2003
Location: Bluegrass State
Posts: 963
Send a message via ICQ to spazlabz Send a message via AIM to spazlabz Send a message via Yahoo to spazlabz
NO, because we have a lot of posters who post their movies in various formats with their URL on the movie file itself. If I ban the file formats itself it ceases to be a movie posting forum and becomes a linklist. Not that there is anything wrong with those, but this forum has been up unchanged for quite awhile now (think years)

spaz
__________________
spazlabz is offline   Reply With Quote
Old 2003-09-15, 12:13 PM   #24
urb
All the way from Room 101
 
urb's Avatar
 
Join Date: Aug 2003
Posts: 3,557
Send a message via ICQ to urb
Yep, well that's one thing we didn't suggest....... contact the webmaster of the messsage board.

I am so used to message board webmasters being hostile about hotlinking or quoting legal shit at me.

I don't agree with hotlinking, but at least spazlabz has sorted it out.
urb is offline   Reply With Quote
Old 2003-09-15, 12:19 PM   #25
spazlabz
You can now put whatever you want in this space :)
 
spazlabz's Avatar
 
Join Date: Apr 2003
Location: Bluegrass State
Posts: 963
Send a message via ICQ to spazlabz Send a message via AIM to spazlabz Send a message via Yahoo to spazlabz
yeah we try and be as reasonable as possible, as you can imagine we have pretty high BW bills ourselves and aren't looking to make life any harder on anyone else that's for sure. We actually have link trades with several MGP (gay)sites out there, and have always enjoyed a good relationship with them. If anyone has a problem with that site a quick e mail will resolve it quickly.
Quote:
I am so used to message board webmasters being hostile about hotlinking or quoting legal shit at me.
my personal opinion is that respect between those of us who are in the business is very important. I won't get rude with another webmaster, even if they are rude with me, I just won't reply....... I save any and all venom I have specifically for Acacia|raygun|

spaz
__________________
spazlabz is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:56 PM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc