Re: [users@httpd] httpd basic authentication

2014-03-26 Thread Eric Covener
On Wed, Mar 26, 2014 at 1:30 PM, Paolo De Michele wrote: > > On 03/26/2014 05:19 PM, Eric Covener wrote: >>> but doesn't work >> You'll have to elaborate for meaningful help. > > Sorry? > What could be the problem? I didn't understand because in "theory" > should be easy What's the symptom? What

Re: [users@httpd] httpd basic authentication

2014-03-26 Thread James Moe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/25/2014 04:44 PM, Paolo De Michele wrote: > > I configured a basic httpd authentication via apache2. Look below: > Is the entry point into the restricted area? - -- James Moe moe dot james at sohnen-moe dot com 520.743.3936 -BEGIN PGP

Re: [users@httpd] httpd basic authentication

2014-03-26 Thread Paolo De Michele
On 03/26/2014 05:19 PM, Eric Covener wrote: >> but doesn't work > You'll have to elaborate for meaningful help. Sorry? What could be the problem? I didn't understand because in "theory" should be easy > > - > To unsubscribe, e-m

Re: [users@httpd] httpd basic authentication

2014-03-26 Thread Eric Covener
> but doesn't work You'll have to elaborate for meaningful help. - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] httpd basic authentication

2014-03-26 Thread Paolo De Michele
On 03/26/2014 07:12 AM, Pankaj Singh wrote: > You need to create a user in the .htpasswd database to authenticate > with the file. > > > > > Thanks > Pankaj Singh Hi Pankaj, after that I modified the file in /etc/apache2/conf.d/phpmyadmin, I gave the command: # htpasswd -bc /etc/phpmyadmin/htpass

Re: [users@httpd] httpd basic authentication

2014-03-26 Thread Pankaj Singh
You need to create a user in the .htpasswd database to authenticate with the file. Thanks Pankaj Singh On Wed, Mar 26, 2014 at 5:14 AM, Paolo De Michele wrote: > Hi everybody, > > I configured a basic httpd authentication via apache2. Look below: > > > > AuthType Basic > AuthNa

[users@httpd] httpd basic authentication

2014-03-25 Thread Paolo De Michele
Hi everybody, I configured a basic httpd authentication via apache2. Look below: AuthType Basic AuthName "phpMyAdmin Setup" AuthUserFile /etc/phpmyadmin/htpasswd.setup Require valid-user So, I rebooted apache2 but the authentication doesn't work Where is the problem?