2つの構成ファイルがあります。1つはiniで、もう1つはphpです。以下のようになります。データベースファイル名を更新する必要がありますが、残りのファイルは変更されていない必要があります。そうする方法はありますか?
config.ini
; Turning Debugging on
[test]
developer = true
; Production site configuration data
[production]
database.params.dbname = /var/lib/firebird/data/radek_db.gdb
およびsetting.php
<?php
/**
The settings file
*/
#This will be done automatically if u want to override it uncomment the next line few lines
/*
$Path = 'mainline';
#Database to connect to:
$Database = "radek_db";
?>