Changes between Version 10 and Version 11 of howto/PHP


Ignore:
Timestamp:
Jan 7, 2015, 2:47:42 AM (9 years ago)
Author:
magill@…
Comment:

upd

Legend:

Unmodified
Added
Removed
Modified
  • howto/PHP

    v10 v11  
    129129Details on "Using Authentication Modes" can be found at "''https://docs.phpmyadmin.net/en/latest/setup.html#using-authentication-modes''."
    130130
    131 
    132 There is also an interactive setup, see http://www.phpmyadmin.net/documentation/#setup_script and the demo at http://www.phpmyadmin.net/documentation/setup/
    133 
    134131To check your phpMyAdmin installation, point your browser to http://localhost/phpmyadmin and verify that phpMyAdmin loads and can access your database (by providing a username and password, depending on the authentication method you selected).
    135132
     
    137134= Step 6: Install pmadb = #pmadb
    138135Some consider the installation of pmadb "optional." \\
    139 However, phpMyAdmin will flag the fact that it is missing and therefore certain features are not functional with the message:
     136However, phpMyAdmin will flag the fact that it is missing and therefore certain features are not functional, with the message:
    140137{{{
    141138The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. Find out why.
     
    143140}}}
    144141
    145 For additional features provided by pmadb (http://wiki.phpmyadmin.net/pma/pmadb), run
     142For additional features provided by pmadb (http://wiki.phpmyadmin.net/pma/pmadb), first run
    146143{{{
    147144$ mysql -u root -p < /opt/local/www/phpmyadmin/examples/create_tables.sql
    148145}}}
    149146
    150 Next: create a file: ''mysql_phpMyAdmin_pmaSetup.sql'' - it is a one-time use scratch file so you can place it anywhere. (It is not included with the phpMyAdmin distribution.)
     147Next: create a file: ''mysql_phpMyAdmin_pmaSetup.sql'' - containing the following SQL code:   (change the 'pmapass' to your password)
     148- this is a one-time use scratch file so you can place it anywhere and delete it after use. (It is not included with the phpMyAdmin distribution.)
     149
    151150{{{
    152151-- HOW TO USE THIS FILE (with MacPorts installation)
    153152-- mysql -u root -p < /opt/local/www/phpmyadmin/examples/create_tables.sql
    154 -- mysq5 -u root -p < mysql_phpMyAdmin_pmaSetup.sql
     153-- mysql -u root -p < mysql_phpMyAdmin_pmaSetup.sql
    155154
    156155CREATE USER 'pma'@'localhost' IDENTIFIED BY 'pmapass';
     
    173172}}}
    174173
    175 Then run this SQL to setup the pma 'controluser' (change the 'pmapass' to your password).
     174Then run this SQL to setup the pma 'controluser'
    176175
    177176Finally, verify that the config file, at ''/opt/local/www/phpmyadmin/config.inc.php'', is like this:\\