php - Please create web server writable folder config in phpMyAdmin -


i trying phpmyadmin installed on mac el capitan. every time go to:

http://localhost:8080/phpmyadmin/setup/

i setup page every time click "save", following error:

please create web server writable folder config in phpmyadmin top level directory described in documentation. otherwise able download or display it.

i read other threads on stackoverflow, , did following:

  1. created manually file in mamp/htdocs/phpmyadmin/config.inc.php
  2. opened file , added:

    $i=0; $i++; $cfg['servers'][$i]['user']          = 'root'; $cfg['servers'][$i]['password']      = 'cbb74bc'; // use here password $cfg['servers'][$i]['auth_type']     = 'config'; ?> 

(that came guide found on path: http://localhost:8080/phpmyadmin/doc/html/setup.html#setup_script )

this did not solve problem. can see around stackoverflow, solved problem everybody. have clue wrong here?

best regards

update after answers when go main folder of phpadmin error:

enter image description here

everything should have read/write access now:

image

please create web server writable folder config in phpmyadmin top level directory described in documentation. otherwise able download or display it.

from message, need create folder within root phpmyadmin directory, named config. , should writable webserver user.

from phpmyadmin docs:

cd phpmyadmin mkdir config                        # create directory saving chmod o+rw config                   # give world writable permissions 

Comments

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -