RE: [PHP] phpMyAdmin protection

2002-04-15 Thread Brian V Bonini

.htaccess  ;-)

http://httpd.apache.org/docs-2.0/configuring.html#htaccess

-B

 -Original Message-
 From: Mantas Kriauciunas [mailto:[EMAIL PROTECTED]]
 Sent: Monday, April 15, 2002 12:35 AM
 To: PHP General List
 Subject: [PHP] phpMyAdmin protection
 
 
 Hey PHP General List,
 
   Can anybody point me to tutorial or real good explanation site how
   to keep Http://localhost/phpmyadmin off for other users. I am using
   it to help me with MySQL database but other peaople can access
   it. I know there is something with .httacces but i dont know
   anything about that .httacces. SO please if anybody can point me to
   some explanation how to secure phpmyadmin or just explain bu them
   selves.
 
   Thank You.
 
 :--:
 Have A Nice Day! 
  Mantas Kriauciunas A.k.A mNTKz
 
 Contacts:
 [EMAIL PROTECTED]
 Http://mntkz-hata.visiems.lt
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] phpMyAdmin protection

2002-04-15 Thread Justin French

Actually the latest releases of phpMyAdmin come with options for password
protecting the programs... it's really nice... they're doing htaccess
without the .htaccess file (), plus three other forms of verification.

Well worth checking out.

There's a few lines in the config.inc.php file, and I guess a few words in
the documentation about it.

Failing that, you should do a search on google for .htaccess, to figure out
how to do it the old way.


Justin French

Creative Director
http://Indent.com.au




on 15/04/02 2:34 PM, Mantas Kriauciunas ([EMAIL PROTECTED]) wrote:

 Hey PHP General List,
 
 Can anybody point me to tutorial or real good explanation site how
 to keep Http://localhost/phpmyadmin off for other users. I am using
 it to help me with MySQL database but other peaople can access
 it. I know there is something with .httacces but i dont know
 anything about that .httacces. SO please if anybody can point me to
 some explanation how to secure phpmyadmin or just explain bu them
 selves.
 
 Thank You.
 
 :--:
 Have A Nice Day! 
 Mantas Kriauciunas A.k.A mNTKz
 
 Contacts:
 [EMAIL PROTECTED]
 Http://mntkz-hata.visiems.lt
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] phpMyAdmin protection

2002-04-15 Thread heinisch

At 14.04.2002  21:34, you wrote:

Hey PHP General List,

   Can anybody point me to tutorial or real good explanation site how
   to keep Http://localhost/phpmyadmin off for other users. I am using
   it to help me with MySQL database but other peaople can access
   it. I know there is something with .httacces but i dont know
   anything about that .httacces. SO please if anybody can point me to
   some explanation how to secure phpmyadmin or just explain bu them
   selves.

   Thank You.

:--:
 Have A Nice Day!
  Mantas Kriauciunas A.k.A mNTKz

Contacts:
[EMAIL PROTECTED]
Http://mntkz-hata.visiems.lt
Bongiorno,
To get more Informations about apache, you should look at
www.apache.org, - .htaccess, htpasswd and httpd.conf
as a fast help, insert the following lines to httpd.conf
Directory your_path_to_dir
 Options Indexes FollowSymLinks
 AllowOverride Limit
# Begin of security relevant commands
 AuthName secretPassword
 AuthType Basic
 AuthUserFile your_path_where_the/.htpasswd  #is
 Limit GET
 require valid-user
 /Limit
# End of security
 #Order allow,deny
 #Allow from all
/Directory
yo have to add Users to the .htpasswd with   htpasswd -options
and copy it to your_path_where_the/.htpasswd  #is
HTH Oliver



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php