Importing sql file using phpmyadmin in EasyPHP

后端 未结 3 1134
有刺的猬
有刺的猬 2020-12-14 01:19

I have a website written in php and mysql (written by someone else) and I need to alter it- just for your interest it is bridgetjonesart.co.uk. So I thought I would download

3条回答
  •  有刺的猬
    2020-12-14 02:24

    Having wasted many hours, I have a solution so here it is.

    Having a look on the web I found I needed to change my config.inc.php file in the phpadmin directory as I was running EasyPHP 13.1 password slightly diff to that mentioned in the blog at http://amir-shenodua.blogspot.co.uk/2012/03/error-while-importing-db-in-mysql.html. I added 2 lines:

    $cfg['Servers'][$i]['controluser'] = 'root';
    $cfg['Servers'][$i]['controlpass'] = '';
    

    So all sorted !! Yippee!!

    So if you have trouble please read:
    http://amir-shenodua.blogspot.co.uk/2012/03/error-while-importing-db-in-mysql.html

提交回复
热议问题