Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
cceconvenors /
js /
editor /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
Database
[ DIR ]
drwxr-sr-x
2021-07-01 11:35
Editor
[ DIR ]
drwxr-sr-x
2021-07-01 11:36
Vendor
[ DIR ]
drwxr-sr-x
2021-07-01 11:36
docs
[ DIR ]
drwxr-sr-x
2021-07-01 11:35
Bootstrap.php
1.06
KB
-rw-r--r--
2021-07-01 11:35
DataTables.php
920
B
-rw-r--r--
2021-07-01 11:35
Database.php
11.83
KB
-rw-r--r--
2021-07-01 11:35
Editor.php
62.4
KB
-rw-r--r--
2021-07-01 11:35
Ext.php
5.96
KB
-rw-r--r--
2021-07-01 11:35
License.txt
1.12
KB
-rw-r--r--
2021-07-01 11:35
composer.json
559
B
-rw-r--r--
2021-07-01 11:35
composer.php
360
B
-rw-r--r--
2021-07-01 11:35
config.php
1.2
KB
-rw-r--r--
2021-07-01 11:35
phpdoc.dist.xml
406
B
-rw-r--r--
2021-07-01 11:35
Save
Rename
<?php /** * DataTables PHP libraries. * * PHP libraries for DataTables and DataTables Editor, utilising PHP 5.3+. * * @author SpryMedia * @copyright 2012 SpryMedia ( http://sprymedia.co.uk ) * @license http://editor.datatables.net/license DataTables Editor * @link http://editor.datatables.net */ namespace DataTables; if (!defined('DATATABLES')) exit(); // // Configuration // Load the database connection configuration options // if ( ! isset( $sql_details ) ) { include( dirname(__FILE__).'/config.php' ); } // // Auto-loader // Automatically loads DataTables classes - they are psr-4 compliant // spl_autoload_register( function ($class) { $a = explode("\\", $class); // Are we working in the DataTables namespace if ( $a[0] !== "DataTables" ) { return; } array_shift( $a ); $className = array_pop( $a ); $path = count( $a ) ? implode('/', $a).'/' : ''; require( dirname(__FILE__).'/'.$path.$className.'.php' ); } ); // // Database connection // Database connection is globally available // $db = new Database( $sql_details );