📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: SqlForm.php
<?php /** * User preferences form */ declare(strict_types=1); namespace PhpMyAdmin\Config\Forms\Setup; class SqlForm extends \PhpMyAdmin\Config\Forms\User\SqlForm { /** * @return array */ public static function getForms() { $result = parent::getForms(); /* Following are not available to user */ $result['Sql_queries'][] = 'QueryHistoryDB'; return $result; } }
Save