FIREFLYFANS.NET Central

Can someone help me tell this person not to inline FFF.NET images?

POSTED BY: Haken
UPDATED: Wednesday, June 16, 2004 09:35
VIEWED: 12044
PAGE 2 of 5

Monday, June 14, 2004 8:27 PM

Quote:

Originally posted by DarkSky:
switzerland...



Okay, explain to me why Switzerland is .ch? One would think that it might be something like .sw or .sz. :)

NOTIFY: Y  | REPLY  | REPLY WITH QUOTE  | PERMALINK  | TOP  | HOME

Monday, June 14, 2004 8:27 PM

Quote:

Originally posted by Haken:
btw, what is .ch? China?




.cn or .tw (depending on "which" china you are talking about)

http://www.dnsstuff.com/tools/whois.ch?domain=list


NOTIFY: Y  | REPLY  | REPLY WITH QUOTE  | PERMALINK  | TOP  | HOME

Monday, June 14, 2004 8:29 PM

Quote:

Originally posted by Haken:
Quote:

Originally posted by DarkSky:
switzerland...



Okay, explain to me why Switzerland is .ch? One would think that it might be something like .sw or .sz. :)



http://www.about.ch
ch = Confoederatio Helvetica

Quote:


Switzerland is also known as "Confoederatio Helvetica", therefore the abbreviation CH. "Confoederatio" stands for "confederation", "Helvetica" derives from the Latin word "Helvetier", the name of the people who lived in the area which became later Switzerland.




NOTIFY: Y  | REPLY  | REPLY WITH QUOTE  | PERMALINK  | TOP  | HOME

Monday, June 14, 2004 8:35 PM

Originally posted by Jasonzzz:

Quote:


Switzerland is also known as "Confoederatio Helvetica", therefore the abbreviation CH. "Confoederatio" stands for "confederation", "Helvetica" derives from the Latin word "Helvetier", the name of the people who lived in the area which became later Switzerland.



Then should I be as bold to assume that the font "Helvetica" is related to Switzerland somehow?

NOTIFY: Y  | REPLY  | REPLY WITH QUOTE  | PERMALINK  | TOP  | HOME

Monday, June 14, 2004 8:48 PM

Quote:

Originally posted by Haken:
Originally posted by Jasonzzz:
Quote:


Switzerland is also known as "Confoederatio Helvetica", therefore the abbreviation CH. "Confoederatio" stands for "confederation", "Helvetica" derives from the Latin word "Helvetier", the name of the people who lived in the area which became later Switzerland.



Then should I be as bold to assume that the font "Helvetica" is related to Switzerland somehow?



I suppose you could, but that would prolly make as much sense as saying that Rome (and the defunct Latin language) has something to do with Mexico and people in South America in general (Latinos...)



NOTIFY: Y  | REPLY  | REPLY WITH QUOTE  | PERMALINK  | TOP  | HOME

Monday, June 14, 2004 9:39 PM


What a bastard.

NOTIFY: Y  | REPLY  | REPLY WITH QUOTE  | PERMALINK  | TOP  | HOME

Monday, June 14, 2004 9:57 PM


Haken, how about blocking image theft with htaccess?

http://altlab.com/htaccess_tutorial.html

HOW DO I STOP HOTLINKING AND BANDWIDTH THEFT?
You can stop servers from hotlinking your site's files by editing the .htaccess file in your site's root directory. (Consult your webhost on accessing your .htaccess file.)


Example: Your site url is www.example.com. To stop hotlinking images from an outside domain and display an image called nohotlink.jpg instead, use this code in your .htaccess file:


RewriteEngine On
RewriteCond %{ HTTP_REFERER} !^ http://(www\.)?example\.com/ [NC
RewriteCond %{ HTTP_REFERER} !^$
RewriteRule \.(jpe?g|gif|bmp|png)$ images/nohotlink.jpg [L]


To allow hotlinking images only if the REFERER (sic) is from a specific directory from your domain:


RewriteEngine On
RewriteCond %{ HTTP_REFERER} !^ http://(www\.)?example\.com/dir/ [NC
RewriteCond %{ HTTP_REFERER} !^$
RewriteRule \.(jpe?g|gif|bmp|png)$ images/nohotlink.jpg [L]


To stop hotlinking images from specific outside domains only, named badsite.net and badsite.com:


RewriteEngine On
RewriteCond %{ HTTP_REFERER} ^ http://(www\.)?badsite\.net/ [NC,OR
RewriteCond %{ HTTP_REFERER} ^ http://(www\.)?badsite\.com/ [NC
RewriteRule \.(jpe?g|gif|bmp|png)$ images/nohotlink.jpg [L]


Limit bandwidth usage by returning a 403 forbidden code. Replace the last line of the previous examples with this line:


RewriteRule \.(jpe?g|gif|bmp|png)$ - [F]

NOTIFY: Y  | REPLY  | REPLY WITH QUOTE  | PERMALINK  | TOP  | HOME

Monday, June 14, 2004 10:52 PM


ack. Might work if he uses Apache
on this site. But it's M/S stuff.


Quote:

Originally posted by Succatash:

Haken, how about blocking image theft with htaccess?

http://altlab.com/htaccess_tutorial.html

HOW DO I STOP HOTLINKING AND BANDWIDTH THEFT?
You can stop servers from hotlinking your site's files by editing the .htaccess file in your site's root directory. (Consult your webhost on accessing your .htaccess file.)


Example: Your site url is www.example.com. To stop hotlinking images from an outside domain and display an image called nohotlink.jpg instead, use this code in your .htaccess file:


RewriteEngine On
RewriteCond %{ HTTP_REFERER} !^ http://(www\.)?example\.com/ [NC
RewriteCond %{ HTTP_REFERER} !^$
RewriteRule \.(jpe?g|gif|bmp|png)$ images/nohotlink.jpg [L]


To allow hotlinking images only if the REFERER (sic) is from a specific directory from your domain:


RewriteEngine On
RewriteCond %{ HTTP_REFERER} !^ http://(www\.)?example\.com/dir/ [NC
RewriteCond %{ HTTP_REFERER} !^$
RewriteRule \.(jpe?g|gif|bmp|png)$ images/nohotlink.jpg [L]


To stop hotlinking images from specific outside domains only, named badsite.net and badsite.com:


RewriteEngine On
RewriteCond %{ HTTP_REFERER} ^ http://(www\.)?badsite\.net/ [NC,OR
RewriteCond %{ HTTP_REFERER} ^ http://(www\.)?badsite\.com/ [NC
RewriteRule \.(jpe?g|gif|bmp|png)$ images/nohotlink.jpg [L]


Limit bandwidth usage by returning a 403 forbidden code. Replace the last line of the previous examples with this line:


RewriteRule \.(jpe?g|gif|bmp|png)$ - [F]




NOTIFY: Y  | REPLY  | REPLY WITH QUOTE  | PERMALINK  | TOP  | HOME

Tuesday, June 15, 2004 1:11 AM

I thought it would be possible to block requests from a specific referrer address, even without extra software. No?

"I left my heart in Serenity Valley"

NOTIFY: Y  | REPLY  | REPLY WITH QUOTE  | PERMALINK  | TOP  | HOME

Tuesday, June 15, 2004 2:16 AM

Haken,

A friend of mine used to have the same problem with a gallery she ran. She was able to find a CGI Script that would only show the picture if the request came from a certain address.

This would keep people from stealing your bandwidth. I will ask her about the script next time I talk to her.

NOTIFY: Y  | REPLY  | REPLY WITH QUOTE  | PERMALINK  | TOP  | HOME