2017-01-09 8 views

答えて

0

にある使用するmysqlフォルダにあるeds-app-actions.phpファイルの次の行を変更します。

// Update datadir 
//$replacement = '${1}' . str_replace('\\', '/', __DIR__) . '/data/$3'; // original 
$replacement = '${1}' . 'your/new/path/$3'; 
// don't change the other lines 

// Update innodb_data_home_dir 
//$replacement = '${1}' . str_replace('\\', '/', __DIR__) . '/data/$3'; // original 
$replacement = '${1}' . 'your/new/path/$3'; 
// don't change the other lines 

// Update innodb_log_group_home_dir 
//$replacement = '${1}' . str_replace('\\', '/', __DIR__) . '/data/$3'; // original 
$replacement = '${1}' . 'your/new/path/$3'; 
// don't change the other lines 
関連する問題