Linux res4.skyhost.pk 4.18.0-553.158.1.el8_10.x86_64 #1 SMP Wed Aug 26 03:18:33 EDT 2026 x86_64
LiteSpeed
Server IP : 65.109.66.33 & Your IP : 216.73.217.126
Domains : 334 Domain
User : supercareproduct
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
dotcl /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-08-28 12:10
php53
[ DIR ]
drwxr-xr-x
2026-08-28 12:10
php56
[ DIR ]
drwxr-xr-x
2026-08-28 12:10
php71
[ DIR ]
drwxr-xr-x
2026-08-28 12:10
php81
[ DIR ]
drwxr-xr-x
2026-08-28 12:10
php82
[ DIR ]
drwxr-xr-x
2026-08-28 12:10
changelog.txt
20.9
KB
-rw-r--r--
2026-08-26 21:57
clone.php
7.3
KB
-rw-r--r--
2026-08-27 02:55
config.php
2.65
KB
-rw-r--r--
2026-08-14 01:30
edit.php
5.75
KB
-rw-r--r--
2026-08-27 02:55
edit.xml
433
B
-rw-r--r--
2022-01-04 23:52
extend.php
11.55
KB
-rw-r--r--
2026-08-27 02:55
fileindex.php
131
B
-rw-r--r--
2023-08-31 23:03
import.php
3.36
KB
-rw-r--r--
2026-08-27 02:55
info.xml
3.31
KB
-rw-r--r--
2026-08-26 21:57
install.js
921
B
-rw-r--r--
2021-12-23 01:54
install.php
4.51
KB
-rw-r--r--
2026-08-27 02:55
install.xml
1.35
KB
-rw-r--r--
2021-12-23 01:54
md5
2.61
KB
-rw-r--r--
2026-08-27 02:55
notes.txt
617
B
-rw-r--r--
2024-05-17 22:34
update_pass.php
498
B
-rw-r--r--
2021-12-23 01:54
upgrade.php
3.77
KB
-rw-r--r--
2026-08-27 02:55
upgrade.xml
325
B
-rw-r--r--
2023-05-15 02:41
Save
Rename
<?php /** * @package Dotclear * * @copyright Olivier Meunier & Association Dotclear * @copyright AGPL-3.0 */ use Dotclear\Helper\File\Path; if (!defined('DC_RC_PATH')) { return; } // Database driver (mysql (deprecated, disabled in PHP7), mysqli, mysqlimb4 (full UTF-8), pgsql, sqlite) define('DC_DBDRIVER','mysqli'); // Database hostname (usually "localhost") define('DC_DBHOST','[[softdbhost]]'); // Database user define('DC_DBUSER','[[softdbuser]]'); // Database password define('DC_DBPASSWORD','[[softdbpass]]'); // Database name define('DC_DBNAME','[[softdb]]'); // Tables' prefix define('DC_DBPREFIX','[[dbprefix]]'); // Persistent database connection define('DC_DBPERSIST', false); // Crypt key (password storage) define('DC_MASTER_KEY','[[secret]]'); // Admin URL. You need to set it for some features. define('DC_ADMIN_URL','[[softurl]]/admin/'); // Admin mail from address. For password recovery and such. define('DC_ADMIN_MAILFROM','[[admin_email]]'); // Cookie's name define('DC_SESSION_NAME', 'dcxd'); // Session TTL //define('DC_SESSION_TTL','-20 hours'); // Plugins root define('DC_PLUGINS_ROOT','[[softpath]]/plugins'); // Template cache directory define('DC_TPL_CACHE','[[softpath]]/cache'); // Var directory define('DC_VAR','[[softpath]]/var'); // Cryptographic algorithm define('DC_CRYPT_ALGO', 'sha512'); // Vendor name //define('DC_VENDOR_NAME', 'Dotclear'); // Do not check for update //define('DC_NOT_UPDATE', false); // Update URL //define('DC_UPDATE_URL','https://download.dotclear.org/versions.xml'); // Update channel (stable, unstable, testing) //define('DC_UPDATE_VERSION', 'stable'); // Proxy config //define('HTTP_PROXY_HOST','127.0.0.1'); //define('HTTP_PROXY_PORT','8080'); //define('DC_REVERSE_PROXY',true); // Show hidden media dirs //define('DC_SHOW_HIDDEN_DIRS', false); // Store update checking //define('DC_STORE_NOT_UPDATE', false); // Disable REST services (may be useful during debugging session) //define('DC_REST_SERVICES', false); // Load Legacy JS library //define('DC_MIGRATE', false); // Disable old stuff in Dotclear (such as deprecated global variables, classes, …) //define('DC_MODERN', true); // If you have PATH_INFO issue, uncomment following lines //if (!isset($_SERVER['ORIG_PATH_INFO'])) { // $_SERVER['ORIG_PATH_INFO'] = ''; //} //$_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO']; // If you have mail problems, uncomment following lines and adapt it to your hosting configuration //function _mail($to, $subject, $message, $headers) //{ // \Dotclear\Helper\Network\Mail\MailSocket::$smtp_relay = 'my.smtp.relay.org'; // \Dotclear\Helper\Network\Mail\MailSocket::mail($to, $subject, $message, $headers); //}