Fixing critical issues with Fees > Batch Payments (#2656)
[openemr.git] / Documentation / privileged_db / secure_sqlconf.php
blobee9850c12521e70e350a577e187a7a9d3d795d4d
1 <?php
2 /**
3 * This is an example secure_sqlconf.php provided for reference.
4 * After configuring the MySQL user 'secure' with password 'securepassword'
5 * as described in the HOWTO guide putting this file in "sites/<sitename>
6 * will make OpenEMR use these credentials when accessing password related tables
7 */
9 $secure_host = 'localhost';
10 $secure_port = '3306';
11 $secure_login = 'secure';
12 $secure_pass = 'securepassword';
13 $secure_dbase = 'openemr';