Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
c56ca0d8
Commit
c56ca0d8
authored
Apr 25, 2012
by
Falko Timme
Browse files
- Added PHP-FPM to client and reseller settings.
parent
a4179934
Changes
4
Hide whitespace changes
Inline
Side-by-side
interface/web/client/form/client.tform.php
View file @
c56ca0d8
...
...
@@ -665,7 +665,7 @@ $form["tabs"]['limits'] = array (
'default'
=>
''
,
'separator'
=>
','
,
'valuelimit'
=>
'client:web_php_options'
,
'value'
=>
array
(
'no'
=>
'Disabled'
,
'fast-cgi'
=>
'Fast-CGI'
,
'cgi'
=>
'CGI'
,
'mod'
=>
'Mod-PHP'
,
'suphp'
=>
'SuPHP'
)
'value'
=>
array
(
'no'
=>
'Disabled'
,
'fast-cgi'
=>
'Fast-CGI'
,
'cgi'
=>
'CGI'
,
'mod'
=>
'Mod-PHP'
,
'suphp'
=>
'SuPHP'
,
'php-fpm'
=>
'PHP-FPM'
)
),
'limit_web_aliasdomain'
=>
array
(
'datatype'
=>
'INTEGER'
,
...
...
interface/web/client/form/client_template.tform.php
View file @
c56ca0d8
...
...
@@ -331,7 +331,7 @@ $form["tabs"]['limits'] = array (
'default'
=>
''
,
'separator'
=>
','
,
'valuelimit'
=>
'client:web_php_options'
,
'value'
=>
array
(
'no'
=>
'Disabled'
,
'fast-cgi'
=>
'Fast-CGI'
,
'cgi'
=>
'CGI'
,
'mod'
=>
'Mod-PHP'
,
'suphp'
=>
'SuPHP'
)
'value'
=>
array
(
'no'
=>
'Disabled'
,
'fast-cgi'
=>
'Fast-CGI'
,
'cgi'
=>
'CGI'
,
'mod'
=>
'Mod-PHP'
,
'suphp'
=>
'SuPHP'
,
'php-fpm'
=>
'PHP-FPM'
)
),
'limit_web_aliasdomain'
=>
array
(
'datatype'
=>
'INTEGER'
,
...
...
interface/web/client/form/reseller.tform.php
View file @
c56ca0d8
...
...
@@ -598,7 +598,7 @@ $form["tabs"]['limits'] = array (
),
'default'
=>
''
,
'separator'
=>
','
,
'value'
=>
array
(
'no'
=>
'Disabled'
,
'fast-cgi'
=>
'Fast-CGI'
,
'cgi'
=>
'CGI'
,
'mod'
=>
'Mod-PHP'
,
'suphp'
=>
'SuPHP'
)
'value'
=>
array
(
'no'
=>
'Disabled'
,
'fast-cgi'
=>
'Fast-CGI'
,
'cgi'
=>
'CGI'
,
'mod'
=>
'Mod-PHP'
,
'suphp'
=>
'SuPHP'
,
'php-fpm'
=>
'PHP-FPM'
)
),
'limit_web_aliasdomain'
=>
array
(
'datatype'
=>
'INTEGER'
,
...
...
interface/web/client/tools.inc.php
View file @
c56ca0d8
...
...
@@ -128,7 +128,7 @@ function applyClientTemplates($clientId){
$update
.
=
'`'
.
$k
.
"`='"
.
$v
.
"'"
;
}
}
$sql
=
'UPDATE client SET '
.
$update
.
" WHERE client_id = "
.
intval
(
$clientId
);
if
(
$update
!=
''
)
$sql
=
'UPDATE client SET '
.
$update
.
" WHERE client_id = "
.
intval
(
$clientId
);
$app
->
db
->
query
(
$sql
);
}
?>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment