- Added a new remote host configuration to config.php for database connection. - Updated migration script to ensure proper addition of 'min_order_amount' column in pp_shop_payment_methods table. - Created .gitignore file to exclude cache directory. - Added project configuration file for Serena with initial settings and tool configurations.
21 lines
737 B
PHP
21 lines
737 B
PHP
<?php
|
|
$database['host'] = 'localhost';
|
|
$database['remote_host'] = 'host700513.hostido.net.pl';
|
|
$database['user'] = 'host117523_shoppro';
|
|
$database['password'] = 'mhA9WCEXEnRfTtbN33hL';
|
|
$database['name'] = 'host117523_shoppro';
|
|
$database['time_debug'] = false;
|
|
$database['long_query_time'] = 0.1;
|
|
|
|
$config['salt'] = 'dd6c0ee59bf35b208b6d9bf42dd60769';
|
|
$config['google-ads-id'] = 'AW-810084545';
|
|
$config['redis']['host'] = '127.0.0.1';
|
|
$config['redis']['port'] = 20470;
|
|
$config['redis']['password'] = 'Gi7FzWtkry19hZ1BqT1LKEWfwokQpigh';
|
|
|
|
$config['debug']['apilo'] = false;
|
|
|
|
$config['trustmate']['enabled'] = true;
|
|
$config['trustmate']['uid'] = '34eb36ba-c715-4cdc-8707-22376c9f14c7';
|
|
?>
|