This will allow replacing the main file without needing to re-add the settings. For example, settings.php can be always kept up-to-date locally via a symbolic link, without altering the configuration.
14 lines
498 B
PHP
14 lines
498 B
PHP
<?php
|
|
|
|
$dbhost = 'localhost'; // database host
|
|
$dbuser = '?'; // database user
|
|
$dbpass = '?'; // database password
|
|
$dbname = '?'; // database name
|
|
$avpos_table='avpos';
|
|
|
|
$email_to="you@yourmail.com"; // your email (for error reporting)
|
|
$email_from="you@yourhost.com"; // your server's sending email (for error reporting)
|
|
|
|
$allow_install = false; // enable to allow action=install (clear/format database)
|
|
|
|
$check_ip = false; // enable to check the sim ip submitting the data is in the allowed range
|