mirror of
https://github.com/myvesta/vesta.git
synced 2024-12-22 03:51:19 -08:00
66cce9d35c
fclose() is using incorrect variable $new_conf should be $fp to properly close fopen
68 lines
1.9 KiB
PHP
68 lines
1.9 KiB
PHP
<?php
|
|
error_reporting(NULL);
|
|
$TAB = 'SERVER';
|
|
|
|
// Main include
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
// Check user
|
|
if ($_SESSION['user'] != 'admin') {
|
|
header("Location: /list/user");
|
|
exit;
|
|
}
|
|
|
|
// Check POST request
|
|
if (!empty($_POST['save'])) {
|
|
|
|
// Check token
|
|
if ((!isset($_POST['token'])) || ($_SESSION['token'] != $_POST['token'])) {
|
|
header('location: /login/');
|
|
exit();
|
|
}
|
|
|
|
// Set restart flag
|
|
$v_restart = 'yes';
|
|
if (empty($_POST['v_restart'])) $v_restart = 'no';
|
|
|
|
// Update config
|
|
if (!empty($_POST['v_config'])) {
|
|
exec ('mktemp', $mktemp_output, $return_var);
|
|
$new_conf = $mktemp_output[0];
|
|
$fp = fopen($new_conf, 'w');
|
|
fwrite($fp, str_replace("\r\n", "\n", $_POST['v_config']));
|
|
fclose($fp);
|
|
exec (VESTA_CMD."v-change-sys-service-config ".$new_conf." mysqld ".$v_restart, $output, $return_var);
|
|
check_return_code($return_var,$output);
|
|
unset($output);
|
|
unlink($new_conf);
|
|
}
|
|
|
|
// Set success message
|
|
if (empty($_SESSION['error_msg'])) {
|
|
$_SESSION['ok_msg'] = __('Changes has been saved.');
|
|
}
|
|
|
|
}
|
|
|
|
// List config
|
|
exec (VESTA_CMD."v-list-sys-mysql-config json", $output, $return_var);
|
|
$data = json_decode(implode('', $output), true);
|
|
unset($output);
|
|
$v_max_user_connections = $data['CONFIG']['max_user_connections'];
|
|
$v_max_connections = $data['CONFIG']['max_connections'];
|
|
$v_wait_timeout = $data['CONFIG']['wait_timeout'];
|
|
$v_interactive_timeout = $data['CONFIG']['interactive_timeout'];
|
|
$v_max_allowed_packet = $data['CONFIG']['max_allowed_packet'];
|
|
$v_config_path = $data['CONFIG']['config_path'];
|
|
$v_service_name = strtoupper('mysql');
|
|
|
|
# Read config
|
|
$v_config = shell_exec(VESTA_CMD."v-open-fs-config ".$v_config_path);
|
|
|
|
// Render page
|
|
render_page($user, $TAB, 'edit_server_mysql');
|
|
|
|
// Flush session messages
|
|
unset($_SESSION['error_msg']);
|
|
unset($_SESSION['ok_msg']);
|