<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1024281" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1024281</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/really-need-help-re-members-only-download-section#comment-1148717</link>
    <description> &lt;p&gt;One thing I forgot to mention before:&lt;/p&gt;
&lt;p&gt;Don&#039;t forget that people who use the default installation for the latest norton antivirus/internet security will NOT be able to access the files due to norton by default blocking the referring page information to &quot;protect your privacy&quot;.&lt;/p&gt;
&lt;p&gt;If you go this route, you may want a note on the site to let people know if they have norton they may have difficulties, and how to go into the settings to disable this &quot;feature&quot;.&lt;/p&gt;
&lt;p&gt;-Greg&lt;/p&gt;
 </description>
     <pubDate>Thu, 01 Apr 2004 17:04:36 +0000</pubDate>
 <dc:creator>Greg K</dc:creator>
 <guid isPermaLink="false">comment 1148717 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/really-need-help-re-members-only-download-section#comment-1148710</link>
    <description> &lt;p&gt;Here are some scripts: &lt;a href=&quot;http://php.resourceindex.com/Complete_Scripts/File_Management/File_Downloading/&quot; class=&quot;bb-url&quot;&gt;http://php.resourceindex.com/Complete_Scripts/File_Management/File_Downloading/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you went the htaccess route -- yes, you can create a text file with those rules in it and then rename it to .htaccess and upload it to the correct directory. Make sure that you do not have a .txt extension on it though!&lt;/p&gt;
 </description>
     <pubDate>Thu, 01 Apr 2004 15:07:22 +0000</pubDate>
 <dc:creator>eniety</dc:creator>
 <guid isPermaLink="false">comment 1148710 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/really-need-help-re-members-only-download-section#comment-1148692</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;Greg K wrote:&lt;/strong&gt; You could still do this, and then set it up so that the file will only be displayed if the user came from a link within your forum. I had soemthing similar on a client&#039;s art site. I had teh following in the .htaccess file for the directory housing all the art images:
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Thanks alot, this just might do the trick -- I have never created an .htaccess file before...&lt;/p&gt;
&lt;p&gt;Do I just put that stuff in a *.TXT file, rename is .htacess, and FTP it do the directory holding the stuff I want to protect?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
 </description>
     <pubDate>Thu, 01 Apr 2004 02:02:57 +0000</pubDate>
 <dc:creator>RandomFan</dc:creator>
 <guid isPermaLink="false">comment 1148692 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/really-need-help-re-members-only-download-section#comment-1148680</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: I figured an easy solution would be to set a certain discussion group in my message board to members only, then have the URL&#039;s in posts there.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;You could still do this, and then set it up so that the file will only be displayed if the user came from a link within your forum. I had soemthing similar on a client&#039;s art site. I had teh following in the .htaccess file for the directory housing all the art images:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;RewriteEngine on&lt;br /&gt;RewriteCond %{HTTP_REFERER} !^$&lt;br /&gt;RewriteCond %{HTTP_REFERER} !^http://(www\.)?domainname.com/.*$ [NC]&lt;br /&gt;RewriteRule \.(gif|jpg)$ &amp;lt;a href=&amp;quot;http://www.domainname.com/bad_access.gif&amp;quot; class=&amp;quot;bb-url&amp;quot;&amp;gt;http://www.domainname.com/bad_access.gif&amp;lt;/a&amp;gt; [R,L]&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;This was a FreeBSD server running apache. So you could on the 4th line change it to match something for your messageboard ie:&lt;br /&gt;
&lt;code&gt;RewriteCond %{HTTP_REFERER} !^http://(www\.)?forums.domainname.com/.*$ [NC]&lt;/code&gt;&#039;&lt;br /&gt;
or&lt;br /&gt;
&lt;code&gt;RewriteCond %{HTTP_REFERER} !^http://(www\.)?domainname.com/forums/.*$ [NC]&lt;/code&gt;&#039;(Basically find a patern that would match all URLs from your message board)&lt;/p&gt;
&lt;p&gt;Then in the 4th line, you modify the list of extentions to protect and specify what file to give out if they are not calling it from the correct location, ie:&lt;br /&gt;
&lt;code&gt;RewriteRule \.(gif|jpg|wma|wav|mp3)$ &amp;lt;a href=&amp;quot;http://www.domainname.com/bad_access.gif&amp;quot; class=&amp;quot;bb-url&amp;quot;&amp;gt;http://www.domainname.com/bad_access.gif&amp;lt;/a&amp;gt; [R,L]&lt;/code&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Wed, 31 Mar 2004 23:05:23 +0000</pubDate>
 <dc:creator>Greg K</dc:creator>
 <guid isPermaLink="false">comment 1148680 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/really-need-help-re-members-only-download-section#comment-1148669</link>
    <description> &lt;p&gt;I wish I could help you further, however protecting the directory and reading your logs would be the best interim solution, though  clearly time consuming. I&#039;m wondering what you offer for download that would be so popular and yet you wouldn&#039;t charge for it.&lt;/p&gt;
 </description>
     <pubDate>Wed, 31 Mar 2004 20:10:16 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1148669 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/really-need-help-re-members-only-download-section#comment-1148666</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;Suzanne wrote:&lt;/strong&gt; Any file in a protected directory is protected -- what control panel do you have?&lt;/p&gt;
&lt;p&gt;The downside is you&#039;ll have to set the username/password for each person.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;My site is hosted w/ Globat and the control panel they use is called The Globat Command Console.  It looks like there is a &quot;Web protect&quot; option that can password protect directories...&lt;br /&gt;
I&#039;m not sure this would work, though -- first off, I would have to set up a registration form that would be emailed to me, then manually add the account through the Command Console, then respond to each email telling them that their account is live.  This could be quite time-consuming, as I am expecting that initially, I could have hundreds of accounts being activated...&lt;br /&gt;
Also, I wouldn&#039;t be able to match usernames to downloads, so preventing abuse would be impossible (As I would have no idea who&#039;s account to delete, it could literally be ANY ONE of the accounts)...&lt;/p&gt;
&lt;p&gt;I read on the PUMA site (one of the scripts that I had tried) that they were working on file support...  Surely SOME script has already accomplished what I am trying to do without limitation on file types?   I really can&#039;t wait for a script to be updated to include what I&#039;m trying to do...  The files are an essential part of my site and have already been down for a week or so.&lt;/p&gt;
&lt;p&gt;Thank you for all your help!   &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/nerdy.png&quot; title=&quot;Cool&quot; alt=&quot;Cool&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 31 Mar 2004 20:01:33 +0000</pubDate>
 <dc:creator>RandomFan</dc:creator>
 <guid isPermaLink="false">comment 1148666 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/really-need-help-re-members-only-download-section#comment-1148664</link>
    <description> &lt;p&gt;Any file in a protected directory is protected -- what control panel do you have?&lt;/p&gt;
&lt;p&gt;The downside is you&#039;ll have to set the username/password for each person.&lt;/p&gt;
 </description>
     <pubDate>Wed, 31 Mar 2004 19:35:16 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1148664 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/really-need-help-re-members-only-download-section#comment-1148663</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;Suzanne wrote:&lt;/strong&gt; paypal allows each person to have a special code key, so does bitpass.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Thanks for your reply -- the thing is, I am not charging for content...  Everything on my site is free, but I just need a way to regulate the downloads so that they won&#039;t get abused.&lt;/p&gt;
&lt;p&gt;I forgot to mention that I figured an easy solution would be to set a certain discussion group in my message board to members only, then have the URL&#039;s in posts there.   However, this and some other password protection things I&#039;ve seen on the web do little to protect the file itself.  So that means that if somebody gave somebody else the URL, they could access the file without any sort of username attached to them (Which I am trying to avoid...)&lt;/p&gt;
&lt;p&gt;Thanks alot.&lt;/p&gt;
 </description>
     <pubDate>Wed, 31 Mar 2004 19:16:32 +0000</pubDate>
 <dc:creator>RandomFan</dc:creator>
 <guid isPermaLink="false">comment 1148663 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/really-need-help-re-members-only-download-section#comment-1148628</link>
    <description> &lt;p&gt;paypal allows each person to have a special code key, so does bitpass.&lt;/p&gt;
 </description>
     <pubDate>Wed, 31 Mar 2004 04:18:32 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1148628 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
