Add new/improved install_corepos() function

probably needs still more improvement, but getting here.  so far it
only does the office setup
This commit is contained in:
Lance Edgar 2023-02-17 20:48:11 -06:00
parent cde124b916
commit 6c78d3c1d5
2 changed files with 93 additions and 4 deletions

View file

@ -0,0 +1,13 @@
<?php
$FANNIE_ROOT = '${rootdir}/IS4C/fannie/';
$FANNIE_URL = '${rooturl}/';
$FANNIE_SERVER = '127.0.0.1';
$FANNIE_SERVER_DBMS = 'MYSQLI';
$FANNIE_SERVER_USER = '${mysql_username}';
$FANNIE_SERVER_PW = '${mysql_password}';
$FANNIE_OP_DB = '${mysql_name_prefix}core_op';
$FANNIE_TRANS_DB = '${mysql_name_prefix}core_trans';
$FANNIE_ARCHIVE_DB = '${mysql_name_prefix}trans_archive';
?>