Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
test /
MDB_QueryTool /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
simpletest_tests
[ DIR ]
drwxr-xr-x
Common.php
1.28
KB
-rw-r--r--
config.php
2.33
KB
-rw-r--r--
GetAllTest.php
1.86
KB
-rw-r--r--
GetCountTest.php
2.33
KB
-rw-r--r--
GetQueryStringTest.php
1.19
KB
-rw-r--r--
GetTest.php
5.66
KB
-rw-r--r--
HavingTest.php
5
KB
-rw-r--r--
LimitTest.php
2.01
KB
-rw-r--r--
SetDbInstanceTest.php
1.38
KB
-rw-r--r--
sql.php
3.38
KB
-rw-r--r--
TestCase.php
1.5
KB
-rw-r--r--
WhereTest.php
2.01
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Common.php
<?php // // $Id: Common.php 322098 2012-01-11 21:20:03Z danielc $ // // so we have all errors saved in one place // its just due to the strange error handling i implemented here ... gotta change that some day $_Common_Errors = array(); class tests_Common extends MDB_QueryTool { var $tableSpec = array( array('name' => TABLE_QUESTION, 'shortName' => TABLE_QUESTION), array('name' => TABLE_ANSWER, 'shortName' => TABLE_ANSWER) ); function tests_Common($table=null) { if ($table != null) { $this->table = $table; } parent::MDB_QueryTool(unserialize(MDB_QUERYTOOL_TEST_DSN), array(), 2); $this->db->setOption('portability', MDB2_PORTABILITY_NONE); $this->setErrorSetCallback(array(&$this,'errorSet')); $this->setErrorLogCallback(array(&$this,'errorLog')); } // // just for the error handling // function errorSet($msg) { $GLOBALS['_Common_Errors'][] = array('set', $msg); } function errorLog($msg) { $GLOBALS['_Common_Errors'][] = array('log', $msg); } function getErrors() { return $GLOBALS['_Common_Errors']; } } ?>
Close