Changes between Version 6 and Version 7 of howto/PHP


Ignore:
Timestamp:
Jan 4, 2015, 11:34:34 PM (9 years ago)
Author:
magill@…
Comment:

upd

Legend:

Unmodified
Added
Removed
Modified
  • howto/PHP

    v6 v7  
    123123}}}
    124124
    125 Where ' ' is an empty password; fill it with your MySQL root password. //
    126 If you change the 'auth_type' from 'config' to 'cookie' or 'httpd' you do not need to  provide the password you selected for the MySQL root user in the 'password' option. However details for configuring those two authorization options are not given here.
     125Where ' ' is an empty password; fill it with your MySQL root password. \\
     126'''NOTE:''' You should change the 'auth_type' from 'config' to 'cookie' or 'httpd' so that you do not need to  provide the password you selected for the MySQL root user in the 'password' option.
     127(I.e. leaving it in plain text in this config file.) \\
     128However, as this is to simply get you "up-and-running," details for configuring those two authorization options are not given here.
     129Details on "Using Authentication Modes" can be found at "''https://docs.phpmyadmin.net/en/latest/setup.html#using-authentication-modes''."
    127130
    128131There is also an interactive setup, see http://www.phpmyadmin.net/documentation/#setup_script and the demo at http://www.phpmyadmin.net/documentation/setup/
     
    131134
    132135
    133 = Optional pmadb = #pmadb
     136= Step 6: Install pmadb = #pmadb
     137Some consider the installation of pmadb "optional." \\
     138However, phpMyAdmin will flag the fact that it is missing and therefore certain features are not functional with the message:
     139{{{
     140The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. Find out why.
     141      Or alternately go to 'Operations' tab of any database to set it up there.
     142}}}
    134143
    135144For additional features provided by pmadb (http://wiki.phpmyadmin.net/pma/pmadb), run
    136145{{{
    137 $ mysql5 -u root -p < /opt/local/www/phpmyadmin/examples/create_tables.sql
     146$ mysql -u root -p < /opt/local/www/phpmyadmin/examples/create_tables.sql
    138147}}}
    139148
     
    141150{{{
    142151-- HOW TO USE THIS FILE (with MacPorts installation)
    143 -- mysql5 -u root -p < /opt/local/www/phpmyadmin/examples/create_tables.sql
    144 -- mysql5 -u root -p < mysql_phpMyAdmin_pmaSetup.sql
     152-- mysql -u root -p < /opt/local/www/phpmyadmin/examples/create_tables.sql
     153-- mysq5 -u root -p < mysql_phpMyAdmin_pmaSetup.sql
    145154
    146155CREATE USER 'pma'@'localhost' IDENTIFIED BY 'pmapass';