mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-06 21:35:55 +01:00
Download files via Filemanager, post_max_size added to PHP Basic!
This commit is contained in:
@@ -362,6 +362,7 @@ app.controller('editPHPConfig', function($scope,$http,$timeout) {
|
||||
$scope.max_execution_time = response.data.max_execution_time;
|
||||
$scope.upload_max_filesize = response.data.upload_max_filesize;
|
||||
$scope.max_input_time = response.data.max_input_time;
|
||||
$scope.post_max_size = response.data.post_max_size;
|
||||
|
||||
$scope.phpDetailsBox = false;
|
||||
|
||||
@@ -407,6 +408,7 @@ app.controller('editPHPConfig', function($scope,$http,$timeout) {
|
||||
max_execution_time:$scope.max_execution_time,
|
||||
upload_max_filesize:$scope.upload_max_filesize,
|
||||
max_input_time:$scope.max_input_time,
|
||||
post_max_size: $scope.post_max_size,
|
||||
};
|
||||
|
||||
var config = {
|
||||
@@ -423,7 +425,7 @@ app.controller('editPHPConfig', function($scope,$http,$timeout) {
|
||||
function ListInitialDatas(response) {
|
||||
|
||||
|
||||
if(response.data.saveStatus == 1){
|
||||
if(response.data.saveStatus === 1){
|
||||
|
||||
$scope.detailsSaved = false;
|
||||
$scope.loadingPHP = true;
|
||||
|
||||
Reference in New Issue
Block a user