Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Arie1

  1. Arie1

    windows xp and outlook express will not save password

    See if this helps: http://www.windows-help.net/bbs/Forum15/HTML/000191.html Regards, Arie Slob, InfiniSource, Inc. http://www.infinisource.com Internet & Windows Resources
  2. Arie1

    Can't Access My Account

    Open Help, and do a search on ownership. There's a task listed Take ownersip of a file or folder. That should help you. Regards, Arie Slob, InfiniSource, Inc. http://www.infinisource.com Internet & Windows Resources Regards, Arie Slob, InfiniSource, Inc. http://www.infinisource.com Internet...
  3. Arie1

    Mod_Rewrite Problem

    Glad I "poked" your memory :o)
  4. Arie1

    can I mod_rewrite the HTTP_USER_AGENT?

    I doubt that that would be possible. I misread your original question.
  5. Arie1

    Mod_Rewrite Problem

    Well, after reading the documents again, I found out that you have to 'enable' mod_rewrite for every virtual host. This is the code I use: <IfModule mod_rewrite.c> RewriteEngine on RewriteOptions inherit </IfModule>
  6. Arie1

    can I mod_rewrite the HTTP_USER_AGENT?

    Sure no problem. You find more info here: http://httpd.apache.org/docs/mod/mod_rewrite.html and here: http://httpd.apache.org/docs/misc/rewriteguide.html
  7. Arie1

    Mod_Rewrite Problem

    Hi, I use the following mod rewrite rules: <IfModule mod_rewrite.c> RewriteEngine on RewriteLogLevel 0 RewriteCond %{HTTP_USER_AGENT} ^Bullseye.* [NC,OR] RewriteCond %{HTTP_USER_AGENT} ^WebZIP/ [NC,OR] RewriteCond %{HTTP_USER_AGENT} ^Zeus.* [NC] RewriteRule ^/.* - [F,L] RewriteCond...
  8. Arie1

    Reduce your Bandwith with mod_gzip

    YES!!! I just tested it myself, and added mod_gzip_item_exclude reqheader &quot;User-Agent: .*Windows NT 5.0*&quot; And it worked. This was in my log: mod_gzip: DECLINED:REQ_HEADER_FIELD_EXCLUDED Declined here just means that mod_gzip doesn't 'do' anything, and the server serves the page...
  9. Arie1

    Reduce your Bandwith with mod_gzip

    Hi, If you know the &quot;User Agent&quot; string from these browsers, you can exclude them in the mod_gzip config. For example, I exclude Opera browsers (who also have problems with mod_gzip) by adding this: mod_gzip_item_exclude reqheader &quot;User-Agent: .*Opera.*&quot; I don't know the...
  10. Arie1

    Reduce your Bandwith with mod_gzip

    Hi, There is a free module for Apache available at http://www.remotecommunications.com/apache/mod_gzip/ Mod-gzip will compress your server’s output (TXT, HTML, PHP, CGI and some other types). All modern Web browsers have the ability to uncompress these files (natively so NO plug-in req.)...
  11. Arie1

    Help block proxys

    You can do that by using the mod_rewrite module. See: http://httpd.apache.org/docs/misc/rewriteguide.html for more info.
  12. Arie1

    ErrorDocument with local URL

    This can happen if the error document is smaller than a certain size. I don't remember exactly, but I think it is either 128 or 256 bytes.

Part and Inventory Search

Back
Top