PhpMyAdmin and MySql login

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • marco.minerva@gmail.com

    PhpMyAdmin and MySql login

    Hi all!

    It is possibile to configure phpMyAdmin so it asks for login
    credential when I open it?

    Thanks in advance.
    --
    Marco Minerva, marco.minerva@g mail.com


  • Jerry Stuckle

    #2
    Re: PhpMyAdmin and MySql login

    marco.minerva@g mail.com wrote:
    Hi all!
    >
    It is possibile to configure phpMyAdmin so it asks for login
    credential when I open it?
    >
    Thanks in advance.
    --
    Marco Minerva, marco.minerva@g mail.com

    >
    No. It needs the info in its config file. But you can protect the
    directory it's running in.

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    • Willem Bogaerts

      #3
      Re: PhpMyAdmin and MySql login

      >It is possibile to configure phpMyAdmin so it asks for login
      >credential when I open it?
      No. It needs the info in its config file. But you can protect the
      directory it's running in.
      Well, you could build a separate login page, which stores the username
      and the password in the session and redirects to the phpMyAdmin start
      page upon successful login. In the configuration file, you could then
      call the session variables. I don't know if you have to add a
      session_start() to some of the phpMyAdmin files though.

      --
      Willem Bogaerts

      Application smith
      Kratz B.V.

      Comment

      • =?iso-8859-1?Q?Kim_Andr=E9_Aker=F8?=

        #4
        Re: PhpMyAdmin and MySql login

        marco.minerva@g mail.com wrote:
        Hi all!
        >
        It is possibile to configure phpMyAdmin so it asks for login
        credential when I open it?
        Just set the $cfg['Servers'][$i]['auth_type'] parameter to 'cookie',
        and you'll instead log in using the database login credentials (usually
        just the database user).

        --
        Kim André Akerø
        - kimandre@NOSPAM betadome.com
        (remove NOSPAM to contact me directly)

        Comment

        Working...