mysql - Error using phpMyAdmin with Amazon RDS -


we have amazon rds instance , want manage phpmyadmin.

i've got phpmyadmin running, there seems issues configuration can't figure out.

my setup:

  • ubuntu 14.04
  • php 7.0
  • apache 2.4
  • phpmyadmin 4.6.2

i did not install phpmyadmin apt-get because going install php5 , mysql stuff. downloaded site.

my config.inc.php below:

<?php  $cfg['blowfish_secret'] = ''; /* must fill in cookie auth! */  $i = 0;  $i++; /* authentication type */ $cfg['servers'][$i]['auth_type'] = 'cookie'; /* server parameters */ $cfg['servers'][$i]['host'] = 'path.to.rds.amazon.com'; $cfg['servers'][$i]['connect_type'] = 'tcp'; $cfg['servers'][$i]['compress'] = false; $cfg['servers'][$i]['allownopassword'] = false; 

i did not make other changes elsewhere. did not create phpmyadmin database. because read blogs issue database structure can't find script creates phpmyadmin defaults.

i'm getting errors below when login phpmyadmin:

the phpmyadmin configuration storage not configured, extended features have been deactivated. find out why.       or alternately go 'operations' tab of database set there. 

clicking on find out why this:

configuration of pmadb… not ok general relation features disabled 

and other error

the configuration file needs secret passphrase (blowfish_secret). 

and when navigate in phpmyadmin, displays 403-forbidden, phpmyadmin pop-up. not web server 403 page.

can please point me right direction. can't seem find what's wrong config.inc.php.

thanks!


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -