Hackfut Security File Manager
Current Path:
/mnt/ceph/services/websiteos/phpmyadmin/phpMyAdmin-4.7.7-all-languages
mnt
/
ceph
/
services
/
websiteos
/
phpmyadmin
/
phpMyAdmin-4.7.7-all-languages
/
π
..
π
.svn
π
CONTRIBUTING.md
(1.69 KB)
π
ChangeLog
(15.43 KB)
π
DCO
(1.77 KB)
π
LICENSE
(17.67 KB)
π
README
(1.48 KB)
π
RELEASE-DATE-4.7.7
(29 B)
π
ajax.php
(913 B)
π
browse_foreigners.php
(1.49 KB)
π
changelog.php
(4.99 KB)
π
chk_rel.php
(772 B)
π
composer.json
(2.05 KB)
π
composer.lock
(92.65 KB)
π
config.inc.php
(317 B)
π
config.sample.inc.php
(4.41 KB)
π
config_template
π
db_central_columns.php
(5.21 KB)
π
db_datadict.php
(5.69 KB)
π
db_designer.php
(5.72 KB)
π
db_events.php
(356 B)
π
db_export.php
(4.88 KB)
π
db_import.php
(1.02 KB)
π
db_operations.php
(10.37 KB)
π
db_qbe.php
(4.32 KB)
π
db_routines.php
(416 B)
π
db_search.php
(2.02 KB)
π
db_sql.php
(1.08 KB)
π
db_sql_autocomplete.php
(749 B)
π
db_sql_format.php
(488 B)
π
db_structure.php
(1.05 KB)
π
db_tracking.php
(4.34 KB)
π
db_triggers.php
(360 B)
π
doc
π
error_report.php
(4.43 KB)
π
examples
π
export.php
(15.27 KB)
π
favicon.ico
(21.96 KB)
π
gis_data_editor.php
(15.48 KB)
π
htaccess.php
(3.07 KB)
π
import.php
(23.29 KB)
π
import_status.php
(3.32 KB)
π
index.php
(19.29 KB)
π
js
π
libraries
π
license.php
(897 B)
π
lint.php
(1.38 KB)
π
locale
π
logout.php
(287 B)
π
navigation.php
(2.14 KB)
π
normalization.php
(3.94 KB)
π
phpMyAdmin.bk
π
phpinfo.php
(510 B)
π
phpmyadmin.bk
π
phpmyadmin.css.php
(746 B)
π
prefs_forms.php
(2.7 KB)
π
prefs_manage.php
(14.89 KB)
π
print.css
(1.18 KB)
π
robots.txt
(26 B)
π
schema_export.php
(1.64 KB)
π
server_binlog.php
(804 B)
π
server_collations.php
(837 B)
π
server_databases.php
(817 B)
π
server_engines.php
(803 B)
π
server_export.php
(1.2 KB)
π
server_import.php
(779 B)
π
server_plugins.php
(808 B)
π
server_privileges.php
(13.56 KB)
π
server_replication.php
(2.18 KB)
π
server_sql.php
(847 B)
π
server_status.php
(995 B)
π
server_status_advisor.php
(954 B)
π
server_status_monitor.php
(2.88 KB)
π
server_status_processes.php
(1.9 KB)
π
server_status_queries.php
(1.36 KB)
π
server_status_variables.php
(1.59 KB)
π
server_user_groups.php
(1.8 KB)
π
server_variables.php
(817 B)
π
setup
π
show_config_errors.php
(1.02 KB)
π
sql
π
sql.php
(6.17 KB)
π
tbl_addfield.php
(3.82 KB)
π
tbl_change.php
(6.38 KB)
π
tbl_chart.php
(990 B)
π
tbl_create.php
(3.12 KB)
π
tbl_export.php
(4.38 KB)
π
tbl_find_replace.php
(1.02 KB)
π
tbl_get_field.php
(1.39 KB)
π
tbl_gis_visualization.php
(1.23 KB)
π
tbl_import.php
(873 B)
π
tbl_indexes.php
(1.4 KB)
π
tbl_operations.php
(13.31 KB)
π
tbl_recent_favorite.php
(455 B)
π
tbl_relation.php
(2.31 KB)
π
tbl_replace.php
(16.13 KB)
π
tbl_row_action.php
(4.94 KB)
π
tbl_select.php
(1.15 KB)
π
tbl_sql.php
(1.25 KB)
π
tbl_structure.php
(1.63 KB)
π
tbl_tracking.php
(5.76 KB)
π
tbl_triggers.php
(141 B)
π
tbl_zoom_select.php
(1.07 KB)
π
templates
π
themes
π
themes.php
(938 B)
π
transformation_overview.php
(1.88 KB)
π
transformation_wrapper.php
(4.39 KB)
π
url.php
(1.26 KB)
π
user_password.php
(9.03 KB)
π
vendor
π
version_check.php
(1.07 KB)
π
view_create.php
(9.34 KB)
π
view_operations.php
(3.91 KB)
Editing: normalization.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Normalization process (temporarily specific to 1NF) * * @package PhpMyAdmin */ use PMA\libraries\URL; use PMA\libraries\Response; /** * */ require_once 'libraries/common.inc.php'; require_once 'libraries/transformations.lib.php'; require_once 'libraries/normalization.lib.php'; if (isset($_REQUEST['getColumns'])) { $html = '<option selected disabled>' . __('Select oneβ¦') . '</option>' . '<option value="no_such_col">' . __('No such column') . '</option>'; //get column whose datatype falls under string category $html .= PMA_getHtmlForColumnsList( $db, $table, _pgettext('string types', 'String') ); echo $html; exit; } if (isset($_REQUEST['splitColumn'])) { $num_fields = min(4096, intval($_REQUEST['numFields'])); $html = PMA_getHtmlForCreateNewColumn($num_fields, $db, $table); $html .= URL::getHiddenInputs($db, $table); echo $html; exit; } if (isset($_REQUEST['addNewPrimary'])) { $num_fields = 1; $columnMeta = array('Field'=>$table . "_id", 'Extra'=>'auto_increment'); $html = PMA_getHtmlForCreateNewColumn( $num_fields, $db, $table, $columnMeta ); $html .= URL::getHiddenInputs($db, $table); echo $html; exit; } if (isset($_REQUEST['findPdl'])) { $html = PMA_findPartialDependencies($table, $db); echo $html; exit; } if (isset($_REQUEST['getNewTables2NF'])) { $partialDependencies = json_decode($_REQUEST['pd']); $html = PMA_getHtmlForNewTables2NF($partialDependencies, $table); echo $html; exit; } $response = Response::getInstance(); if (isset($_REQUEST['getNewTables3NF'])) { $dependencies = json_decode($_REQUEST['pd']); $tables = json_decode($_REQUEST['tables']); $newTables = PMA_getHtmlForNewTables3NF($dependencies, $tables, $db); $response->disable(); PMA_headerJSON(); echo json_encode($newTables); exit; } $header = $response->getHeader(); $scripts = $header->getScripts(); $scripts->addFile('normalization.js'); $scripts->addFile('jquery/jquery.uitablefilter.js'); $normalForm = '1nf'; if (PMA_isValid($_REQUEST['normalizeTo'], array('1nf', '2nf', '3nf'))) { $normalForm = $_REQUEST['normalizeTo']; } if (isset($_REQUEST['createNewTables2NF'])) { $partialDependencies = json_decode($_REQUEST['pd']); $tablesName = json_decode($_REQUEST['newTablesName']); $res = PMA_createNewTablesFor2NF($partialDependencies, $tablesName, $table, $db); $response->addJSON($res); exit; } if (isset($_REQUEST['createNewTables3NF'])) { $newtables = json_decode($_REQUEST['newTables']); $res = PMA_createNewTablesFor3NF($newtables, $db); $response->addJSON($res); exit; } if (isset($_POST['repeatingColumns'])) { $repeatingColumns = $_POST['repeatingColumns']; $newTable = $_POST['newTable']; $newColumn = $_POST['newColumn']; $primary_columns = $_POST['primary_columns']; $res = PMA_moveRepeatingGroup( $repeatingColumns, $primary_columns, $newTable, $newColumn, $table, $db ); $response->addJSON($res); exit; } if (isset($_REQUEST['step1'])) { $html = PMA_getHtmlFor1NFStep1($db, $table, $normalForm); $response->addHTML($html); } else if (isset($_REQUEST['step2'])) { $res = PMA_getHtmlContentsFor1NFStep2($db, $table); $response->addJSON($res); } else if (isset($_REQUEST['step3'])) { $res = PMA_getHtmlContentsFor1NFStep3($db, $table); $response->addJSON($res); } else if (isset($_REQUEST['step4'])) { $res = PMA_getHtmlContentsFor1NFStep4($db, $table); $response->addJSON($res); } else if (isset($_REQUEST['step']) && $_REQUEST['step'] == '2.1') { $res = PMA_getHtmlFor2NFstep1($db, $table); $response->addJSON($res); } else if (isset($_REQUEST['step']) && $_REQUEST['step'] == '3.1') { $tables = $_REQUEST['tables']; $res = PMA_getHtmlFor3NFstep1($db, $tables); $response->addJSON($res); } else { $response->addHTML(PMA_getHtmlForNormalizetable()); }
Upload File
Create Folder