Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.6
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
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
2025-08-29 08:03
php53
[ DIR ]
drwxr-xr-x
2025-08-29 08:03
php56
[ DIR ]
drwxr-xr-x
2025-08-29 08:03
php71
[ DIR ]
drwxr-xr-x
2025-08-29 08:03
php81
[ DIR ]
drwxr-xr-x
2025-08-29 08:03
php82
[ DIR ]
drwxr-xr-x
2025-08-29 08:03
changelog.txt
8.97
KB
-rw-r--r--
2025-08-27 22:38
clone.php
3.45
KB
-rw-r--r--
2025-08-28 02:31
config.php
1.98
KB
-rw-r--r--
2024-07-08 01:17
easyapmt.sql
19.2
KB
-rw-r--r--
2025-08-27 22:38
easyapmt.zip
37.48
MB
-rw-r--r--
2025-08-27 22:38
edit.php
4.29
KB
-rw-r--r--
2025-08-28 02:31
edit.xml
433
B
-rw-r--r--
2021-12-23 00:54
fileindex.php
134
B
-rw-r--r--
2024-07-08 01:17
import.php
3.1
KB
-rw-r--r--
2025-08-28 02:31
info.xml
3.58
KB
-rw-r--r--
2025-08-27 22:38
install.js
921
B
-rw-r--r--
2021-12-23 00:54
install.php
5.27
KB
-rw-r--r--
2025-08-28 02:31
install.xml
1.05
KB
-rw-r--r--
2021-12-23 00:54
md5
2.72
KB
-rw-r--r--
2025-08-28 02:31
notes.txt
194
B
-rw-r--r--
2024-07-08 01: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 // ------------------------------------------------------------------------ const GOOGLE_SYNC_FEATURE = false; // Enter TRUE or FALSE const GOOGLE_CLIENT_ID = ''; const GOOGLE_CLIENT_SECRET = ''; }