Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
chamilo /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2025-08-15 19:58
php53
[ DIR ]
drwxr-xr-x
2025-08-15 19:58
php56
[ DIR ]
drwxr-xr-x
2025-08-15 19:58
php71
[ DIR ]
drwxr-xr-x
2025-08-15 19:58
php81
[ DIR ]
drwxr-xr-x
2025-08-15 19:58
php82
[ DIR ]
drwxr-xr-x
2025-08-15 19:58
add_course.conf.php
265
B
-rwxr-xr-x
2021-12-23 06:54
auth.conf.php
6.37
KB
-rwxr-xr-x
2024-10-22 07:51
clone.php
5.85
KB
-rwxr-xr-x
2025-07-01 02:59
configuration.php
135.92
KB
-rwxr-xr-x
2025-07-01 01:16
course_info.conf.php
176
B
-rwxr-xr-x
2021-12-23 06:54
edit.php
4.28
KB
-rwxr-xr-x
2025-07-01 02:59
edit.xml
433
B
-rwxr-xr-x
2021-12-23 06:54
events.conf.php
3.23
KB
-rwxr-xr-x
2021-12-23 06:54
fileindex.php
516
B
-rwxr-xr-x
2023-01-25 00:55
import.php
3.45
KB
-rwxr-xr-x
2025-07-01 02:59
info.xml
3.18
KB
-rwxr-xr-x
2025-07-01 01:16
install.js
924
B
-rwxr-xr-x
2021-12-23 06:54
install.php
6.64
KB
-rwxr-xr-x
2025-07-01 02:59
install.xml
4.24
KB
-rwxr-xr-x
2021-12-23 06:54
mail.conf.php
3.42
KB
-rwxr-xr-x
2024-10-22 07:51
md5
1.93
KB
-rwxr-xr-x
2025-07-01 02:59
notes.txt
1.22
KB
-rwxr-xr-x
2024-01-24 05:57
profile.conf.php
1.31
KB
-rwxr-xr-x
2023-01-25 00:55
upgrade.php
5.84
KB
-rwxr-xr-x
2025-07-01 02:59
upgrade.xml
419
B
-rwxr-xr-x
2021-12-23 06:54
Save
Rename
<?php /* For licensing terms, see /license.txt */ /** * Events' configuration * @deprecated to be removed in 2.x * Used to configure each event and to link them to functions the event'll fire. * The flow is like the following : * 1. somewhere in the application an event is fired * 2. that event is intercepted by the switch EventsDispatcher * 3. that switch will go all over the "actions" in the event_config initialized beneath us according to the event * 4. that switch will see if the function actually exists (if not, we get dont do anything) * 5. then it will see if a filter for that function exists (if it does, the filter is executed) * 6. if the filter says it's ok, the function linked to the event is executed * 7. and that function will actually call the truly interesting function with the good require_once */ global $event_config; $event_config = array( 'portal_homepage_edited' => array( // key for "user registration" event 'actions' => array( // we link this event to a bunch of functions that will be triggered when the event is fired 'event_send_mail' // don't forget to actually write this function in the events.lib.php file ), 'self_sent' => false, // this key states that we can't add user to this event through the admin panel 'name_lang_var' => get_lang('PortalHomepageEdited'), 'desc_lang_var' => get_lang('PortalHomepageEdited'), 'available_keyvars' => array (// keys used for the mail template 'url' => 'portal', 'sitename' => 'sitename', 'firstname' => 'firstname', 'lastname' => 'lastname', 'username' => 'username', 'usermail' => 'usermail', 'password' => 'password', 'user_lang' => 'language', 'admin_name' => 'administrator_name', 'admin_surname' => 'administrator_surname', 'admin_phone' => 'administrator_phone', 'admin_email' => 'administrator_email', ) ), 'user_registration' => array( // key for "user registration" event 'actions' => array( // we link this event to a bunch of functions that will be triggered when the event is fired 'event_send_mail' // don't forget to actually write this function in the events.lib.php file ), 'self_sent' => true, // this key states that we can't add user to this event through the admin panel 'name_lang_var' => get_lang('UserRegistrationTitle'), 'desc_lang_var' => get_lang('UserRegistrationComment'), 'available_keyvars' => array (// keys used for the mail template 'url' => 'portal', 'sitename' => 'sitename', 'firstname' => 'firstname', 'lastname' => 'lastname', 'username' => 'username', 'usermail' => 'usermail', 'password' => 'password', 'user_lang' => 'language', 'admin_name' => 'administrator_name', 'admin_surname' => 'administrator_surname', 'admin_phone' => 'administrator_phone', 'admin_email' => 'administrator_email', ) ), ); @include 'events.conf.local.php';