Changes between Version 6 and Version 7 of howto/PHP
- Timestamp:
- Jan 4, 2015, 11:34:34 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
howto/PHP
v6 v7 123 123 }}} 124 124 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. 125 Where ' ' 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.) \\ 128 However, as this is to simply get you "up-and-running," details for configuring those two authorization options are not given here. 129 Details on "Using Authentication Modes" can be found at "''https://docs.phpmyadmin.net/en/latest/setup.html#using-authentication-modes''." 127 130 128 131 There is also an interactive setup, see http://www.phpmyadmin.net/documentation/#setup_script and the demo at http://www.phpmyadmin.net/documentation/setup/ … … 131 134 132 135 133 = Optional pmadb = #pmadb 136 = Step 6: Install pmadb = #pmadb 137 Some consider the installation of pmadb "optional." \\ 138 However, phpMyAdmin will flag the fact that it is missing and therefore certain features are not functional with the message: 139 {{{ 140 The 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 }}} 134 143 135 144 For additional features provided by pmadb (http://wiki.phpmyadmin.net/pma/pmadb), run 136 145 {{{ 137 $ mysql 5-u root -p < /opt/local/www/phpmyadmin/examples/create_tables.sql146 $ mysql -u root -p < /opt/local/www/phpmyadmin/examples/create_tables.sql 138 147 }}} 139 148 … … 141 150 {{{ 142 151 -- HOW TO USE THIS FILE (with MacPorts installation) 143 -- mysql 5-u root -p < /opt/local/www/phpmyadmin/examples/create_tables.sql144 -- mysq l5 -u root -p < mysql_phpMyAdmin_pmaSetup.sql152 -- mysql -u root -p < /opt/local/www/phpmyadmin/examples/create_tables.sql 153 -- mysq5 -u root -p < mysql_phpMyAdmin_pmaSetup.sql 145 154 146 155 CREATE USER 'pma'@'localhost' IDENTIFIED BY 'pmapass';