<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: .htaccess in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738811#M946397</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;On my webserver, I don't have that many users that would require authentication based on groups (i.e. identical users in different groups etc), thus I only rely on .htpasswd and .htaccess. Changes to note include the AuthUserFile specification in .htaccess and the modifications in httpd.conf.&lt;BR /&gt;&lt;BR /&gt;That works for me without any problems. I used a lot of .htpasswd authentication on my website: &lt;A href="https://www.beepz.com" target="_blank"&gt;https://www.beepz.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
    <pubDate>Thu, 06 Jun 2002 04:27:03 GMT</pubDate>
    <dc:creator>Steven Sim Kok Leong</dc:creator>
    <dc:date>2002-06-06T04:27:03Z</dc:date>
    <item>
      <title>.htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738803#M946389</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;I have put the .htaccess and .htpasswd .htgroup&lt;BR /&gt;to the /opt/webdocs, but it doesn't pop up &lt;BR /&gt;the password window.&lt;BR /&gt;&lt;BR /&gt;Can someone post the 3 files? and how to set&lt;BR /&gt;it up?&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Thu, 06 Jun 2002 03:42:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738803#M946389</guid>
      <dc:creator>Michael_33</dc:creator>
      <dc:date>2002-06-06T03:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: .htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738804#M946390</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Did you include this in your httpd.conf:&lt;BR /&gt;&lt;BR /&gt;&lt;DIRECTORY&gt;&lt;BR /&gt;AllowOverride all&lt;BR /&gt;Order allow,deny&lt;BR /&gt;Allow from all&lt;BR /&gt;&lt;/DIRECTORY&gt;&lt;BR /&gt;&lt;BR /&gt;Your .htaccess should like something like this:&lt;BR /&gt;&lt;BR /&gt;AuthUserFile /etc/htpasswds/.htpasswd&lt;BR /&gt;AuthName "This is a test"&lt;BR /&gt;AuthType Basic&lt;BR /&gt; &lt;BR /&gt;&lt;LIMIT get="" post=""&gt;&lt;BR /&gt;require valid-user&lt;BR /&gt;&lt;/LIMIT&gt;&lt;BR /&gt;&lt;BR /&gt;NOTE: For security reasons, your .htaccess should NOT reside in the same directory as your .htpasswd.&lt;BR /&gt;&lt;BR /&gt;Use the htpasswd command to create the password file .htpasswd.&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Thu, 06 Jun 2002 04:00:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738804#M946390</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-06T04:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: .htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738805#M946391</link>
      <description>thanks, how about .htgroup, no need?&lt;BR /&gt;sorry for giving 7 point, I just want&lt;BR /&gt;to continue.</description>
      <pubDate>Thu, 06 Jun 2002 04:11:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738805#M946391</guid>
      <dc:creator>Michael_33</dc:creator>
      <dc:date>2002-06-06T04:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: .htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738806#M946392</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I missed that out.&lt;BR /&gt;&lt;BR /&gt;.htgroup&lt;BR /&gt;&lt;BR /&gt;The format of the group file is one line per group, with the line containing the group name, followed by a colon, followed by the users in the group. Users are separated by commas e.g.&lt;BR /&gt;&lt;BR /&gt;all:steven, michael&lt;BR /&gt;admins:michael&lt;BR /&gt; &lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Thu, 06 Jun 2002 04:15:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738806#M946392</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-06T04:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: .htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738807#M946393</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you want to use .htgroup as well, then your .htaccess should look something like this: &lt;BR /&gt;&lt;BR /&gt;AuthUserFile /etc/htpasswds/.htpasswd &lt;BR /&gt;AuthGroupFile /etc/htpasswds/.htgroup&lt;BR /&gt;AuthName "This is a test" &lt;BR /&gt;AuthType Basic &lt;BR /&gt;&lt;BR /&gt;&lt;LIMIT get="" post=""&gt; &lt;BR /&gt;require valid-user &lt;BR /&gt;&lt;/LIMIT&gt; &lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Thu, 06 Jun 2002 04:18:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738807#M946393</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-06T04:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: .htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738808#M946394</link>
      <description>thanks ! and no other thing to take care?</description>
      <pubDate>Thu, 06 Jun 2002 04:19:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738808#M946394</guid>
      <dc:creator>Michael_33</dc:creator>
      <dc:date>2002-06-06T04:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: .htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738809#M946395</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;On my webserver, I don't have that many users that would require authentication based on groups (i.e. identical users in different groups etc), thus I only rely on .htpasswd and .htaccess. Changes to note include the AuthUserFile specification in .htaccess and the modifications in httpd.conf.&lt;BR /&gt;&lt;BR /&gt;That works for me without any problems. I used a lot of .htpasswd authentication on my website: &lt;A href="https://www.beepz.com" target="_blank"&gt;https://www.beepz.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Thu, 06 Jun 2002 04:25:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738809#M946395</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-06T04:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: .htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738810#M946396</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;On my webserver, I don't have that many users that would require authentication based on groups (i.e. identical users in different groups etc), thus I only rely on .htpasswd and .htaccess. Changes to note include the AuthUserFile specification in .htaccess and the modifications in httpd.conf.&lt;BR /&gt;&lt;BR /&gt;That works for me without any problems. I used a lot of .htpasswd authentication on my website: &lt;A href="https://www.beepz.com" target="_blank"&gt;https://www.beepz.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Thu, 06 Jun 2002 04:26:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738810#M946396</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-06T04:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: .htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738811#M946397</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;On my webserver, I don't have that many users that would require authentication based on groups (i.e. identical users in different groups etc), thus I only rely on .htpasswd and .htaccess. Changes to note include the AuthUserFile specification in .htaccess and the modifications in httpd.conf.&lt;BR /&gt;&lt;BR /&gt;That works for me without any problems. I used a lot of .htpasswd authentication on my website: &lt;A href="https://www.beepz.com" target="_blank"&gt;https://www.beepz.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Thu, 06 Jun 2002 04:27:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738811#M946397</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-06T04:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: .htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738812#M946398</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;On my webserver, I don't have that many users that would require authentication based on groups (i.e. identical users in different groups etc), thus I only rely on .htpasswd and .htaccess. Changes to note include the AuthUserFile specification in .htaccess and the modifications in httpd.conf.&lt;BR /&gt;&lt;BR /&gt;That works for me without any problems. I used a lot of .htpasswd authentication on the links in my website: &lt;A href="https://www.beepz.com" target="_blank"&gt;https://www.beepz.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Thu, 06 Jun 2002 04:27:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738812#M946398</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-06T04:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: .htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738813#M946399</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;On my webserver, I don't have that many users that would require authentication based on groups (i.e. identical users in different groups etc), thus I only rely on .htpasswd and .htaccess. Changes to note include the AuthUserFile specification in .htaccess and the modifications in httpd.conf. In addition, remember to check the ownership and permissions of .htaccess, .htpasswd and .htgroup. The nobody (or apache or httpd depending on which is used) UNIX user account must have read permissions to these files.&lt;BR /&gt;&lt;BR /&gt;That works for me without any problems. I used a lot of .htpasswd authentication on the links in my website: &lt;A href="https://www.beepz.com" target="_blank"&gt;https://www.beepz.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Thu, 06 Jun 2002 04:29:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738813#M946399</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-06T04:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: .htaccess</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738814#M946400</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Please ignore the duplicate postings. I have problems posting in the forum just now. Ignore all the duplicates except the last post before this.&lt;BR /&gt;&lt;BR /&gt;Sorry about the duplicates. Please kindly ignore then. Thanks. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Thu, 06 Jun 2002 04:34:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/htaccess/m-p/2738814#M946400</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-06-06T04:34:33Z</dc:date>
    </item>
  </channel>
</rss>

