<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: How do you prevent people from hotlinking photos from your typepad blog?</title>
	<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog/</link>
	<description>Comments on Ask MetaFilter post How do you prevent people from hotlinking photos from your typepad blog?</description>
	<pubDate>Tue, 17 Apr 2007 10:29:46 -0800</pubDate>
	<lastBuildDate>Tue, 17 Apr 2007 10:29:46 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: How do you prevent people from hotlinking photos from your typepad blog?</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog</link>	
		<description>How do you prevent people from hotlinking photos from your typepad blog? &lt;br /&gt;&lt;br /&gt; I have original content (photos) on my typepad blog (the intermediate account, not the most expensive one: should I upgrade?): they are getting hotlinked up to the wazoo by a bunch for forums. How do I avoid that? I&apos;ve tried to rename some files in the &quot;edit post&quot; HTML window but I just deleted the images and I had to reload them. Obviously, I am technically not that savvy, at least for blogs. Thanks.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2007:site.60779</guid>
		<pubDate>Tue, 17 Apr 2007 10:26:15 -0800</pubDate>
		<dc:creator>PenguinBukkake</dc:creator>
		
			<category>blog</category>
		
			<category>typepad</category>
		
			<category>photos</category>
		
			<category>hotlink</category>
		
			<category>hotlinking</category>
		
	</item> <item>
		<title>By: PenguinBukkake</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915319</link>	
		<description>I guess I should add that they are big files, I don&apos;t want to have bandwidth problems with typepad</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915319</guid>
		<pubDate>Tue, 17 Apr 2007 10:29:46 -0800</pubDate>
		<dc:creator>PenguinBukkake</dc:creator>
	</item><item>
		<title>By: chunking express</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915327</link>	
		<description>You should get in touch with SixApart.  They might be able to set something in the .htaccess file to prevent your stuff being served up when requested from a server that isn&apos;t hosting the rest of your site.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915327</guid>
		<pubDate>Tue, 17 Apr 2007 10:36:25 -0800</pubDate>
		<dc:creator>chunking express</dc:creator>
	</item><item>
		<title>By: sbutler</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915345</link>	
		<description>Can you host them on a site like Flickr instead?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915345</guid>
		<pubDate>Tue, 17 Apr 2007 10:54:24 -0800</pubDate>
		<dc:creator>sbutler</dc:creator>
	</item><item>
		<title>By: Steven C. Den Beste</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915364</link>	
		<description>This is the .htaccess file I have in my image directory:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;RewriteEngine on&lt;br&gt;
&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^$&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://(www\.)?denbeste.nu/.*$ [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://(www\.)?denbeste.nu [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://regulus.denbeste.nu/.*$ [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://regulus.denbeste.nu [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://70.90.130.45 [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://70.90.130.45/.*$ [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://192.168.1.1 [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://192.168.1.1/.*$ [NC]&lt;br&gt;
RewriteRule \.(gif|jpg|png|swf)$ http://denbeste.nu/common/myspace.gif [R,L]&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
The &quot;myspace.gif&quot; file is huge (in pixels) and obnoxious; it blinks between blue and red. I think of it as deterrence; when people link to it, they soon change their minds and unlink again.&lt;br&gt;
&lt;br&gt;
This only works if the server has &quot;mod_rewrite&quot; installed and certain permissions enabled, something you can&apos;t do without admin privilege. However, on many servers they do have this turned on, and this would work if placed in the directory where the image files are kept.&lt;br&gt;
&lt;br&gt;
What this file says is that refers from my own domain, or refers from the literal IP, are permitted to access my image files. (And the first line says that if there&apos;s no referer at all, that&apos;s also OK.) Everyone else gets the deterrence GIF.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915364</guid>
		<pubDate>Tue, 17 Apr 2007 11:16:20 -0800</pubDate>
		<dc:creator>Steven C. Den Beste</dc:creator>
	</item><item>
		<title>By: Steven C. Den Beste</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915368</link>	
		<description>By the way, line break placement is critical, and it won&apos;t work if there are extra ones. Looks like the font is huge there and it&apos;s wrapping. Here&apos;s the same thing, smaller (I hope) so that it doesn&apos;t wrap:&lt;br&gt;
&lt;br&gt;
&lt;small&gt;&lt;small&gt;&lt;small&gt;&lt;code&gt;RewriteEngine on&lt;br&gt;
&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^$&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://(www\.)?denbeste.nu/.*$ [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://(www\.)?denbeste.nu [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://regulus.denbeste.nu/.*$ [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://regulus.denbeste.nu [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://70.90.130.45 [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://70.90.130.45/.*$ [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://192.168.1.1 [NC]&lt;br&gt;
RewriteCond %{HTTP_REFERER} !^http://192.168.1.1/.*$ [NC]&lt;br&gt;
RewriteRule \.(gif|jpg|png|swf)$ http://denbeste.nu/common/myspace.gif [R,L]&lt;/code&gt;&lt;/small&gt;&lt;/small&gt;&lt;/small&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915368</guid>
		<pubDate>Tue, 17 Apr 2007 11:20:53 -0800</pubDate>
		<dc:creator>Steven C. Den Beste</dc:creator>
	</item><item>
		<title>By: KevinSkomsvold</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915406</link>	
		<description>Steven C. Den Beste, if I&apos;m not mistaken, I don&apos;t think one can edit the htaccess file on a TypePad blog since it&apos;s hosted by them.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915406</guid>
		<pubDate>Tue, 17 Apr 2007 12:17:23 -0800</pubDate>
		<dc:creator>KevinSkomsvold</dc:creator>
	</item><item>
		<title>By: Steven C. Den Beste</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915414</link>	
		<description>There&apos;s a master .htaccess file in a central directory, and you can&apos;t change that one. But depending on how the system is configured, it&apos;s also possible to put a .htaccess file in individual directories to protect their contents. All that would require is FTP, or some other file transfer ability.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915414</guid>
		<pubDate>Tue, 17 Apr 2007 12:26:27 -0800</pubDate>
		<dc:creator>Steven C. Den Beste</dc:creator>
	</item><item>
		<title>By: KevinSkomsvold</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915416</link>	
		<description>Ah! I stand corrected. Thanks.&lt;br&gt;
&lt;br&gt;
PenguinBukkake, have you considered photobucket.com as a interim solution? They do not allow hot-linking and their free account is pretty generous.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915416</guid>
		<pubDate>Tue, 17 Apr 2007 12:31:22 -0800</pubDate>
		<dc:creator>KevinSkomsvold</dc:creator>
	</item><item>
		<title>By: MonkeySaltedNuts</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915494</link>	
		<description>Swap pictures? (get some gay porn or something).&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.bluejersey.com/showDiary.do?diaryId=4549&quot;&gt;bluestate&lt;/a&gt; had this problem and substituted &lt;a href=&quot;http://www.flickr.com/photos/bluejersey/463109624/&quot;&gt;this picture&lt;/a&gt; for &lt;a href=&quot;http://www.flickr.com/photos/bluejersey/463143723/&quot;&gt;this one&lt;/a&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915494</guid>
		<pubDate>Tue, 17 Apr 2007 13:49:16 -0800</pubDate>
		<dc:creator>MonkeySaltedNuts</dc:creator>
	</item><item>
		<title>By: Mr. Gunn</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915568</link>	
		<description>Well, back in my day, we&apos;d just goatse &apos;em.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915568</guid>
		<pubDate>Tue, 17 Apr 2007 15:10:35 -0800</pubDate>
		<dc:creator>Mr. Gunn</dc:creator>
	</item><item>
		<title>By: Staggering Jack</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915576</link>	
		<description>I recently asked typepad customer support this same question and if there is any way to edit the .htacess file.  Here is the completely useless email response I received:&lt;br&gt;
&lt;br&gt;
&lt;blockquote&gt;TypePad Customer Support has responded to your ticket &apos;Hotlinking&apos;. This email notification has been automatically sent by TypePad.&lt;br&gt;
&lt;br&gt;
    Thanks for the note, but at this time, to use a .htaccess&lt;br&gt;
    file with TypePad.&lt;br&gt;
    &lt;br&gt;
    If you are concerned that your images may be used&lt;br&gt;
    inappropriately, you may want to watermark your images (and&lt;br&gt;
    upload them to your blog that way.&lt;br&gt;
    &lt;br&gt;
    Please let us know if there is anything else we can do for&lt;br&gt;
    you.&lt;br&gt;
    &lt;br&gt;
    Thanks,&lt;br&gt;
    Kymberlie&lt;/blockquote&gt;&lt;br&gt;
I assume they meant it&apos;s &quot;not possible&quot; to use a .htacess file.  I like typepad a lot but due to their lack of support for pagination and inability to prevent hotlinking, I&apos;m considering moving to a different system</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915576</guid>
		<pubDate>Tue, 17 Apr 2007 15:24:28 -0800</pubDate>
		<dc:creator>Staggering Jack</dc:creator>
	</item><item>
		<title>By: Gerard Sorme</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915587</link>	
		<description>Staggering Jack, With web hosting as cheap as it is, you could actually pay about the same as TypePad and &lt;em&gt;get more.&lt;/em&gt; For example, Dreamhost has a package that starts at $9.95 and has one-click-install for Wordpress blogs. I&apos;ve used DH since 1999. They went through a period of growing pains, but since the massive server upgrade - hardly a blip. Plus, you get your own domain name (free when you sign-up) and all the goodies that come with it (email, photo galleries, etc.). It&apos;s something to think about.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915587</guid>
		<pubDate>Tue, 17 Apr 2007 15:37:14 -0800</pubDate>
		<dc:creator>Gerard Sorme</dc:creator>
	</item><item>
		<title>By: BlackLeotardFront</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915839</link>	
		<description>For the record, my blog (robosexual) is on Typepad too, and I was going about 800% over my bandwidth every month from the mp3s I serve up, but I&apos;ve never heard a peep from them.  In fact, even now I get as many hits but it says I&apos;m only doing about like 10mb of transfers a month, in addition to only using 0mb of my 500 allotted, when in fact I&apos;d say I&apos;m using 200% of my space and I know more than 2 people are downloading songs each month.&lt;br&gt;
&lt;br&gt;
My point is, their bandwidth monitoring (and space too) either sucks or completely doesn&apos;t exist, so I wouldn&apos;t worry about it.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915839</guid>
		<pubDate>Tue, 17 Apr 2007 20:29:26 -0800</pubDate>
		<dc:creator>BlackLeotardFront</dc:creator>
	</item><item>
		<title>By: staggernation</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#915858</link>	
		<description>You could try using &lt;a href=&quot;http://imgred.com/&quot;&gt;ImgRed&lt;/a&gt; links.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-915858</guid>
		<pubDate>Tue, 17 Apr 2007 21:02:41 -0800</pubDate>
		<dc:creator>staggernation</dc:creator>
	</item><item>
		<title>By: antifuse</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#916049</link>	
		<description>&lt;em&gt;PenguinBukkake, have you considered photobucket.com as a interim solution? They do not allow hot-linking and their free account is pretty generous.&lt;/em&gt;&lt;br&gt;
&lt;br&gt;
Umm, if Photobucket doesn&apos;t allow hotlinking, how will PenguinBukkake display the photos on his/her blog?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-916049</guid>
		<pubDate>Wed, 18 Apr 2007 05:35:31 -0800</pubDate>
		<dc:creator>antifuse</dc:creator>
	</item><item>
		<title>By: antifuse</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#916057</link>	
		<description>And ImgRed will prevent your image from being hotlinked from *your* site, but it won&apos;t prevent hotlinking in general.  Do you want people to not use your images at all?  Or are you happy as long as they&apos;re not leeching up your TypePad bandwidth?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-916057</guid>
		<pubDate>Wed, 18 Apr 2007 05:48:50 -0800</pubDate>
		<dc:creator>antifuse</dc:creator>
	</item><item>
		<title>By: anildash</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#917543</link>	
		<description>Hi, I work with the TypePad team and if you file a help ticket, we&apos;ll definitely note that people are hotlinking to your image and not bill you for any overage. Staggering Jack, sorry you didn&apos;t find that email response useful -- most people that ask the .htaccess question are concerned about image reuse, not bandwidth, and that may be what Kymberlie was anticipating.&lt;br&gt;
&lt;br&gt;
If either of you need a hand, feel free to drop me a line at anil@sixapart.com, though as I mentioned, filing a help ticket is pretty quick and easy, and we won&apos;t hold someone&apos;s hotlinking against you anyway.&lt;br&gt;
&lt;br&gt;
Hope that helps!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-917543</guid>
		<pubDate>Thu, 19 Apr 2007 09:26:28 -0800</pubDate>
		<dc:creator>anildash</dc:creator>
	</item><item>
		<title>By: Staggering Jack</title>
		<link>http://ask.metafilter.com/60779/How-do-you-prevent-people-from-hotlinking-photos-from-your-typepad-blog#917596</link>	
		<description>Hi Anil - thanks for the response and letting us know about Six Apart&apos;s policy regarding bandwidth usage due to hotlinking. &lt;br&gt;
&lt;br&gt;
Just to clarify, I called the response I received useless not because of the confusing grammar (which is not a biggie as I make mistakes like that all the time) but because the watermarking suggestion didn&apos;t answer the main question I asked - which was &quot;how do I prevent the hotlinking of images in my typepad blogs and photo albums?&quot;&lt;br&gt;
&lt;br&gt;
Anyway,  outside of the hotlinking and lack of pagination issues, I really like typepad and would heartily recommend it to anyone who doesn&apos;t care about those things.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.60779-917596</guid>
		<pubDate>Thu, 19 Apr 2007 10:20:10 -0800</pubDate>
		<dc:creator>Staggering Jack</dc:creator>
	</item>
	</channel>
</rss>
