安装社交引擎时出现mysql密码错误

时间:2010-11-04 06:10:05

标签: mysql passwords install social

我下载了最新版本的社交引擎(v 4.0),我将在我的本地计算机上安装。我正在使用Xampp。在安装过程的第3步(设置mysql数据库)中我收到了这个错误:

"Please fill in the MySQL Password."

my Mysql Host : localhost
Mysql Username : root
Mysql Password : 

我的意思是我的mysql密码为NULL,如何在不更改我的Mysql密码的情况下解决此问题?因为我在我当地有这么多项目,我无法轻易改变它们!!!!!

2 个答案:

答案 0 :(得分:2)

您可能需要编辑安装脚本并删除mysql密码的验证。

答案 1 :(得分:0)

打开“install / forms / DbInfo.php”。

转到第100行和第101行。这将是类似的事情。

097.    // init password
098.    $this->addElement('Password', 'password', array(
099.      'label' => 'MySQL Password:',
100.      'required' => true,
101.      'allowEmpty' => false,
102.      'validators' => array(
103.        array('NotEmpty', true),
104.      ),
105.    ));

现在应该改为;

100.      'required' => false,
101.      'allowEmpty' => true,

Found here!!