Current Path: > > var > softaculous > ajaxchat
Operation : Linux premium88.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 Software : Apache Server IP : 185.61.154.216 | Your IP: 216.73.216.44 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
images | Directory | - | - | |
php53 | Directory | - | - | |
php56 | Directory | - | - | |
php71 | Directory | - | - | |
php81 | Directory | - | - | |
php82 | Directory | - | - | |
changelog.txt | File | 3132 bytes | December 23 2021 11:54:36. | |
clone.php | File | 3593 bytes | May 02 2024 10:39:14. | |
config.php | File | 9973 bytes | December 23 2021 11:54:36. | |
edit.php | File | 3666 bytes | May 02 2024 10:39:14. | |
edit.xml | File | 433 bytes | December 23 2021 11:54:36. | |
fileindex.php | File | 107 bytes | December 23 2021 11:54:36. | |
import.php | File | 2588 bytes | May 02 2024 10:39:14. | |
info.xml | File | 3775 bytes | May 02 2024 10:25:50. | |
install.js | File | 924 bytes | December 23 2021 11:54:36. | |
install.php | File | 3298 bytes | May 02 2024 10:39:14. | |
install.xml | File | 495 bytes | December 23 2021 11:54:36. | |
md5 | File | 2203 bytes | May 02 2024 10:39:14. | |
users.php | File | 1053 bytes | December 23 2021 11:54:36. |
<?php /* * @package AJAX_Chat * @author Sebastian Tschan * @copyright (c) Sebastian Tschan * @license Modified MIT License * @link https://blueimp.net/ajax/ */ // List containing the registered chat users: $users = array(); // Default guest user (don't delete this one): $users[0] = array(); $users[0]['userRole'] = AJAX_CHAT_GUEST; $users[0]['userName'] = null; $users[0]['password'] = null; $users[0]['channels'] = array(0); // Sample admin user: $users[1] = array(); $users[1]['userRole'] = AJAX_CHAT_ADMIN; $users[1]['userName'] = '[[admin_username]]'; $users[1]['password'] = '[[admin_pass]]'; $users[1]['channels'] = array(0,1); // Sample moderator user: $users[2] = array(); $users[2]['userRole'] = AJAX_CHAT_MODERATOR; $users[2]['userName'] = 'moderator'; $users[2]['password'] = '[[admin_pass]]'; $users[2]['channels'] = array(0,1); // Sample registered user: $users[3] = array(); $users[3]['userRole'] = AJAX_CHAT_USER; $users[3]['userName'] = 'user'; $users[3]['password'] = '[[admin_pass]]'; $users[3]['channels'] = array(0,1); ?>
SILENT KILLER Tool