/var/softaculous/easyapmt
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
php82/-0755rm
changelog.txt154390644editdlrm
clone.php35570644editdlrm
config.php22620644editdlrm
edit.php47850644editdlrm
edit.xml4330644editdlrm
extend.php33750644editdlrm
fileindex.php1240644editdlrm
import.php31760644editdlrm
info.xml36660644editdlrm
install.js9210644editdlrm
install.php54330644editdlrm
install.xml10800644editdlrm
md536660644editdlrm
notes.txt1940644editdlrm
Edit: /var/softaculous/easyapmt/config.php (2262B)
* @copyright Copyright (c) Alex Tselegidis * @license https://opensource.org/licenses/GPL-3.0 - GPLv3 * @link https://easyappointments.org * @since v1.0.0 * ---------------------------------------------------------------------------- */ /** * Easy!Appointments Configuration File * * Set your installation BASE_URL * without the trailing slash * and the database * credentials in order to connect to the database. You can enable the DEBUG_MODE * while developing the application. * * Set the default language by changing the LANGUAGE constant. For a full list of * available languages look at the /application/config/config.php file. * * IMPORTANT: * If you are updating from version 1.0 you will have to create a new "config.php" * file because the old "configuration.php" is not used anymore. */ class Config { // ------------------------------------------------------------------------ // GENERAL SETTINGS // ------------------------------------------------------------------------ const BASE_URL = '[[softurl]]'; const LANGUAGE = 'english'; const DEBUG_MODE = false; // ------------------------------------------------------------------------ // DATABASE SETTINGS // ------------------------------------------------------------------------ const DB_HOST = '[[softdbhost]]'; const DB_NAME = '[[softdb]]'; const DB_USERNAME = '[[softdbuser]]'; const DB_PASSWORD = '[[softdbpass]]'; // ------------------------------------------------------------------------ // GOOGLE CALENDAR SYNC (Optional - can also be configured via UI) // ------------------------------------------------------------------------ // These settings are optional and can be configured through the admin UI // at Settings > Integrations > Google Calendar. If configured here, they // will be used as fallback values. // // const GOOGLE_SYNC_FEATURE = false; // const GOOGLE_CLIENT_ID = ''; // const GOOGLE_CLIENT_SECRET = ''; }