配置旧项目时出错

时间:2017-06-14 10:33:03

标签: php configuration phpmyadmin wamp

<?php

/* Servers configuration */
$i = 0;

/* Server: localhost [1] */
$i++;
$cfg[Servers][$i][verbose] = localhost;
$cfg[Servers][$i][host] = localhost;
$cfg[Servers][$i][port] = "";
$cfg[Servers][$i][socket] = ‘/tmp/mysql.sock';  
$cfg[Servers][$i][connect_type] = socket;
$cfg[Servers][$i][extension] = mysqli;
$cfg[Servers][$i][auth_type] = config; 
$cfg[Servers][$i][user] = root;
$cfg[Servers][$i][password] = root;
$cfg[Servers][$i][AllowNoPassword] = true;

/* End of servers configuration */

$cfg[DefaultLang] = en-utf-8;
$cfg[ServerDefault] = 1; 
$cfg[UploadDir] = ;
$cfg[SaveDir] = ;

/* rajk - for blobstreaming */

$cfg[Servers][$i][bs_garbage_threshold] = 50;
$cfg[Servers][$i][bs_repository_threshold] = 32M;
$cfg[Servers][$i][bs_temp_blob_timeout] = 600;
$cfg[Servers][$i][bs_temp_log_threshold] = 32M;

?>


ERROR:- Parse error: syntax error, unexpected 'var' (T_VAR) in C:\wamp64\scripts\config.inc.php on line 11 

我想设置我的项目并得到此错误任何人都可以告诉我问题我正在做的设置我的旧项目到这里。我花了很多时间来设置我的项目,在这里遇到同样的问题。

1 个答案:

答案 0 :(得分:2)

这一行的奇特引用:

$cfg[Servers][$i][socket] = ‘/tmp/mysql.sock';  
                            ^ 
                          here

更改为:

$cfg[Servers][$i][socket] = '/tmp/mysql.sock';  

此外,您应该在索引周围加上引号:

$cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock';