Linux premium61.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
Server IP : 185.61.154.53 & Your IP : 216.73.216.45
Domains :
Cant Read [ /etc/named.conf ]
User : vdeshvpx
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
easyapmt /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-06-04 00:36
php53
[ DIR ]
drwxr-xr-x
2026-06-04 00:36
php56
[ DIR ]
drwxr-xr-x
2026-06-04 00:36
php71
[ DIR ]
drwxr-xr-x
2026-06-04 00:36
php81
[ DIR ]
drwxr-xr-x
2026-06-04 00:36
php82
[ DIR ]
drwxr-xr-x
2026-06-04 00:36
changelog.txt
15.08
KB
-rw-r--r--
2026-06-03 08:59
clone.php
3.47
KB
-rw-r--r--
2026-06-03 12:35
config.php
2.21
KB
-rw-r--r--
2026-06-03 08:59
easyapmt.sql
20.9
KB
-rw-r--r--
2026-06-03 08:59
easyapmt.zip
6.57
MB
-rw-r--r--
2026-06-03 08:59
edit.php
4.67
KB
-rw-r--r--
2026-06-03 12:35
edit.xml
433
B
-rw-r--r--
2021-12-23 11:54
extend.php
3.3
KB
-rw-r--r--
2026-06-03 12:35
fileindex.php
124
B
-rw-r--r--
2026-06-03 08:59
import.php
3.1
KB
-rw-r--r--
2026-06-03 12:35
info.xml
3.58
KB
-rw-r--r--
2026-06-03 08:59
install.js
921
B
-rw-r--r--
2021-12-23 11:54
install.php
5.31
KB
-rw-r--r--
2026-06-03 12:35
install.xml
1.05
KB
-rw-r--r--
2021-12-23 11:54
md5
3.58
KB
-rw-r--r--
2026-06-03 12:35
notes.txt
194
B
-rw-r--r--
2024-07-08 11:17
Save
Rename
<?php /* ---------------------------------------------------------------------------- * Easy!Appointments - Online Appointment Scheduler * * @package EasyAppointments * @author A.Tselegidis <alextselegidis@gmail.com> * @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 = ''; }