Linux ams-business-5.hostwindsdns.com 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
LiteSpeed
Server IP : 23.254.231.17 & Your IP : 216.73.217.173
Domains :
Cant Read [ /etc/named.conf ]
User : uxvsuhne
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
odm /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-09-02 04:38
php53
[ DIR ]
drwxr-xr-x
2026-09-02 04:38
php56
[ DIR ]
drwxr-xr-x
2026-09-02 04:38
php71
[ DIR ]
drwxr-xr-x
2026-09-02 04:38
php81
[ DIR ]
drwxr-xr-x
2026-09-02 04:38
php82
[ DIR ]
drwxr-xr-x
2026-09-02 04:38
__upgrade.php
2.57
KB
-rw-r--r--
2021-12-23 14:54
__upgrade.xml
456
B
-rw-r--r--
2021-12-23 14:54
_clone.php
1.83
KB
-rw-r--r--
2026-08-25 11:19
_edit.php
3.34
KB
-rw-r--r--
2026-08-25 11:19
_edit.xml
433
B
-rw-r--r--
2026-08-25 11:19
changelog.txt
5.64
KB
-rw-r--r--
2026-09-01 12:27
config.php
2.42
KB
-rw-r--r--
2026-08-25 11:19
extend.php
9.08
KB
-rw-r--r--
2026-09-01 13:57
fileindex.php
541
B
-rw-r--r--
2026-08-25 11:19
import.php
6.38
KB
-rw-r--r--
2026-09-01 13:57
info.xml
3.15
KB
-rw-r--r--
2026-09-01 12:27
install.js
921
B
-rw-r--r--
2021-12-23 14:54
install.php
6.73
KB
-rw-r--r--
2026-09-01 13:57
install.xml
2.07
KB
-rw-r--r--
2026-08-25 11:19
md5
2.07
KB
-rw-r--r--
2026-09-01 13:57
notes.txt
78
B
-rw-r--r--
2026-08-25 11:19
update_pass.php
562
B
-rw-r--r--
2026-09-01 12:27
Save
Rename
<?php /* * Copyright (C) 2000-2025. Stephen Lawrence * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // OpenDocMan sample config file // Eliminate multiple inclusions if (!defined('config')) { define('config', 'true', false); // config.php - you should not need to change these /** The name of the database for [OpenDocMan */ define('APP_DB_NAME', getenv('APP_DB_NAME') ? getenv('APP_DB_NAME') : '[[softdb]]'); /** MySQL database username */ define('APP_DB_USER', getenv('APP_DB_USER') ? getenv('APP_DB_USER') : '[[softdbuser]]'); /** MySQL database password */ define('APP_DB_PASS', getenv('APP_DB_PASS') ? getenv('APP_DB_PASS') : '[[softdbpass]]'); /** MySQL hostname */ /* The MySQL server. It can also include a port number. e.g. "hostname;port=3306" or a path to a * local socket e.g. ":/path/to/socket" for the localhost. */ define('APP_DB_HOST', getenv('APP_DB_HOST') ? getenv('APP_DB_HOST') : '[[softdbhost]]'); /** * Prefix to append to each table name in the database (ex. odm_ would make the tables * named "odm_users", "odm_data" etc. Leave this set to the default if you want to keep * it the way it was. If you do change this to a different value, make sure it is either * a clean-install, or you manually go through and re-name the database tables to match. * @DEFAULT '[[dbprefix]]' * @ARG String */ $GLOBALS['CONFIG']['db_prefix'] = getenv('DB_PREFIX') ? getenv('DB_PREFIX') : '[[dbprefix]]'; /*** DO NOT EDIT BELOW THIS LINE ***/ /** Absolute path to the OpenDocMan application directory. */ if (!defined('ABSPATH')) { $configDir = basename(__DIR__) === 'docker-configs' ? dirname(__DIR__) : __DIR__; define('ABSPATH', dirname($configDir) . '/'); } }