| 47 | |
| 48 | == phpMyAdmin == |
| 49 | |
| 50 | phpMyAdmin is available at https://www.transitiontoday.org/phpmyadmin/ |
| 51 | |
| 52 | This is in /usr/local/www/phpMyAdmin211 (rather than /usr/local/www/phpMyAdmin as it was on the old live server) but the config file was at /usr/local/www/phpMyAdmin together with the .htpasswd file so the following sym links were created: |
| 53 | |
| 54 | {{{ |
| 55 | cd /usr/local/www/phpMyAdmin211 |
| 56 | ln -s ../phpMyAdmin/config.inc.php |
| 57 | ln -s ../phpMyAdmin/.htpasswd |
| 58 | }}} |
| 59 | |
| 60 | One line needed changing in /usr/local/www/phpMyAdmin/config.inc.php: |
| 61 | |
| 62 | {{{ |
| 63 | /* $cfg['Servers'][$i]['host'] = 'db.transitionnetwork.gaiahost.coop'; */ |
| 64 | $cfg['Servers'][$i]['host'] = 'localhost'; |
| 65 | }}} |
| 66 | |
| 67 | And apache was restarted. |
370 | | == phpMyAdmin == |
371 | | |
372 | | phpMyAdmin is available at https://www.transitiontoday.org/phpmyadmin/ |
373 | | |
374 | | This is in /usr/local/www/phpMyAdmin211 (rather than /usr/local/www/phpMyAdmin as it was on the old live server) but the config file was at /usr/local/www/phpMyAdmin together with the .htpasswd file so the following sym links were created: |
375 | | |
376 | | {{{ |
377 | | cd /usr/local/www/phpMyAdmin211 |
378 | | ln -s ../phpMyAdmin/config.inc.php |
379 | | ln -s ../phpMyAdmin/.htpasswd |
380 | | }}} |
381 | | |
382 | | One line needed changing in /usr/local/www/phpMyAdmin/config.inc.php: |
383 | | |
384 | | {{{ |
385 | | /* $cfg['Servers'][$i]['host'] = 'db.transitionnetwork.gaiahost.coop'; */ |
386 | | $cfg['Servers'][$i]['host'] = 'localhost'; |
387 | | }}} |
388 | | |
389 | | And apache was restarted. |
390 | | |