Greenguy's Board


Go Back   Greenguy's Board > Link Lists & Getting Listed
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2004-04-16, 05:35 AM   #1
tony
You tried your best and you failed miserably. The lesson is 'never try'
 
tony's Avatar
 
Join Date: Apr 2004
Location: Poland
Posts: 167
Send a message via ICQ to tony
Problem with wmv files

Im a rather newbie webmaster Ive done only a few free sites. Ive got a problem : few linklist rejected my sites and reviewers told me the reason was that my movie files were broken and were not playing. Ive chcecked it a lot of times and they worked for me ( besides most linklists listed my sites ). Can you check it and maybe you will know what is going on?

http://www.porntide.com/reality/hardcoreamateur/

Btw can you review this site and give me some advices?

THX in advance
tony is offline   Reply With Quote
Old 2004-04-16, 06:11 AM   #2
Matt35
Internet! Is that thing still around?
 
Join Date: Apr 2004
Posts: 2
I also get an error message and it seems to me that you have made a mistake in correctly linking the wmv files.
It is linked to a htm file and not to a wmv file.

Matt
Matt35 is offline   Reply With Quote
Old 2004-04-16, 06:23 AM   #3
Surfn
If you don’t take a chance the Angels won’t dance
 
Surfn's Avatar
 
Join Date: Aug 2003
Location: Earth on occasion
Posts: 8,812
Send a message via ICQ to Surfn
Hi dirty welcome to the board

I get errors on the clips as well. I think you need to re-link them.
Surfn is offline   Reply With Quote
Old 2004-04-16, 07:01 AM   #4
tony
You tried your best and you failed miserably. The lesson is 'never try'
 
tony's Avatar
 
Join Date: Apr 2004
Location: Poland
Posts: 167
Send a message via ICQ to tony
ok i turned off hot link protection and it works now
tony is offline   Reply With Quote
Old 2004-04-16, 07:03 AM   #5
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Yeah something is wrong.
http://cleocrap.com/wmverror.jpg
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2004-04-16, 07:04 AM   #6
tony
You tried your best and you failed miserably. The lesson is 'never try'
 
tony's Avatar
 
Join Date: Apr 2004
Location: Poland
Posts: 167
Send a message via ICQ to tony
but now im endangered by hotlinkers. How should I properly set the hotlink protection to let the wmv files play?
tony is offline   Reply With Quote
Old 2004-04-16, 07:26 AM   #7
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Don't use wmv files. Use mpg files as those can be easily protected by htaccess.

While I accept wmv files I would never use them myself just for this reason.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2004-04-16, 08:09 AM   #8
Fonz
Former pr0n slinger.
 
Fonz's Avatar
 
Join Date: Aug 2003
Location: Antwerp, Belgium
Posts: 7,932
Hi Dirty,

welcome aboard, nice to see you've sorted things out. I'll approve your sites now, no need to resubmit
__________________
See how I abuse little trees on my Shumi no Bonsai Blog
Fonz is offline   Reply With Quote
Old 2004-04-16, 09:15 AM   #9
DangerDave
Bonged
 
DangerDave's Avatar
 
Join Date: Mar 2003
Location: BrisVegas, AUSTRALIA
Posts: 4,882
Hi Dirty,

WMVs work for me...

Protection of WMVs cannot be done with ordinary htacess. YOu need a cookie solution usually;(

DD
__________________
Old Dollars >>>> Now with over 90 Hosted Free Sites <<<<
DangerDave.com.au - Adult Links to Free Porn
DangerDave is offline   Reply With Quote
Old 2004-04-16, 09:21 AM   #10
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Yeah they work for me now that dirty turned off hotlinking protection, but I'm concerned that it gets turned back on after listing which would cause the domain to get added to a ban list due to the movies nor showing up.

What DD said about how to protect the files.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2004-04-16, 01:26 PM   #11
stev0
You tried your best and you failed miserably. The lesson is 'never try'
 
stev0's Avatar
 
Join Date: Mar 2004
Location: Calgary
Posts: 165
Send a message via ICQ to stev0
there's a way you can protect them from hotlinking... but I think a better way would be to put your URL in the corner of the video. That way if people hotlink it's free advertising for you... im not sure if any linklists have a problem with this though? i haven't done any video freesites before.


I'll get you the hotlink protection info, one sec.
stev0 is offline   Reply With Quote
Old 2004-04-16, 01:30 PM   #12
stev0
You tried your best and you failed miserably. The lesson is 'never try'
 
stev0's Avatar
 
Join Date: Mar 2004
Location: Calgary
Posts: 165
Send a message via ICQ to stev0
Use an htaccess file like this

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://([a-z0-9-]+\.)*yourdomain.com(:80)*/ [NC]
RewriteCond %{HTTP_REFERER} !^http://([a-z0-9-]+\.)*allowedreferer.com(:80)*/ [NC]
RewriteCond %{HTTP_REFERER} !^http://([a-z0-9-]+\.)*anotherallowedreferer.com(:80)*/ [NC]
RewriteCond %{HTTP_COOKIE} !(^|(.+*)id=valid(;.*|$)
RewriteRule /* http://www.sendhotlinkershere.com[R,L] )

change the URLs obviously...

then, on the content page serving the videos, add this javascript between the HEAD tags.

<SCRIPT LANGUAGE="javascript">
// Calculate the expiration date
var expires = new Date ();
expires.setTime(expires.getTime() + 24 * 60 * 60 * 1000);
document.cookie = "id=valid; path=/" + "; expires=" + expires.toGMTString();
</SCRIPT>


....

that javascript will create a cookie (which is one of the access conditions in that htaccess). So the videos will work after the user views the content page, and be hotlink protected.
stev0 is offline   Reply With Quote
Old 2004-04-16, 01:32 PM   #13
stev0
You tried your best and you failed miserably. The lesson is 'never try'
 
stev0's Avatar
 
Join Date: Mar 2004
Location: Calgary
Posts: 165
Send a message via ICQ to stev0
aww crap, the board changed "; )" in the htaccess code into a smiley. You'll have to edit that part.
stev0 is offline   Reply With Quote
Old 2004-04-16, 01:56 PM   #14
tony
You tried your best and you failed miserably. The lesson is 'never try'
 
tony's Avatar
 
Join Date: Apr 2004
Location: Poland
Posts: 167
Send a message via ICQ to tony
thx a LOT for your help
I do appreciate it
newbie's life is hard
tony is offline   Reply With Quote
Old 2004-04-16, 03:32 PM   #15
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
stev0
Disable smillies when you post code.

dirty
The problem with the code posted is many places don't allow the javascript on your pages.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2004-04-17, 02:02 AM   #16
stev0
You tried your best and you failed miserably. The lesson is 'never try'
 
stev0's Avatar
 
Join Date: Mar 2004
Location: Calgary
Posts: 165
Send a message via ICQ to stev0
yeah, javascript can be a problem with some LL's. to bad alot of malicious people ruin it for the rest of us.. If you put something in the comments about it i'm sure most wouldn't have a problem though. I just use it on my big premium AVS sites.

The best method i think would be to add a URL to those video files. Then even if someone hotlinks them, it's free advertising for you.

-Steve
stev0 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:46 PM.


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