Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
18fa2e2b
Commit
18fa2e2b
authored
May 02, 2014
by
Till Brehm
Browse files
Merge branch 'stable-3.0.5' of git.ispconfig.org:ispconfig/ispconfig3 into stable-3.0.5
parents
85f6fb3a
c5541531
Changes
6
Hide whitespace changes
Inline
Side-by-side
install/tpl/nginx_apps.vhost.master
View file @
18fa2e2b
...
...
@@ -5,7 +5,7 @@ server {
root {apps_vhost_dir};
client_max_body_size
2
0M;
client_max_body_size
10
0M;
location / {
index index.php index.html;
...
...
interface/web/login/templates/index.htm
View file @
18fa2e2b
...
...
@@ -39,4 +39,7 @@
</div>
</div>
</div>
\ No newline at end of file
</div>
<script
language=
"JavaScript"
type=
"text/javascript"
>
$
(
'
#username
'
).
closest
(
'
form
'
).
attr
(
'
autocomplete
'
,
'
on
'
);
</script>
\ No newline at end of file
interface/web/themes/blue/templates/main.tpl.htm
View file @
18fa2e2b
...
...
@@ -22,7 +22,7 @@
jQuery
(
document
).
ready
(
function
()
{
loadInitContent
();
$
(
'
form
'
).
attr
(
'
autocomplete
'
,
'
off
'
);
$
(
'
form
'
).
not
(
'
#dummy_login_form
'
).
attr
(
'
autocomplete
'
,
'
off
'
);
$
(
"
#pageForm
"
).
submit
(
function
(
e
){
//Prevent form submit: e.preventDefault() in lists
...
...
interface/web/themes/default/templates/main.tpl.htm
View file @
18fa2e2b
...
...
@@ -22,7 +22,7 @@
jQuery
(
document
).
ready
(
function
()
{
loadInitContent
();
$
(
'
form
'
).
attr
(
'
autocomplete
'
,
'
off
'
);
$
(
'
form
'
).
not
(
'
#dummy_login_form
'
).
attr
(
'
autocomplete
'
,
'
off
'
);
$
(
"
#pageForm
"
).
submit
(
function
(
e
){
//Prevent form submit: e.preventDefault() in lists
...
...
server/conf/nginx_apps.vhost.master
View file @
18fa2e2b
...
...
@@ -5,7 +5,7 @@ server {
root {apps_vhost_dir};
client_max_body_size
2
0M;
client_max_body_size
10
0M;
location / {
index index.php index.html;
...
...
server/mods-available/web_module.inc.php
View file @
18fa2e2b
...
...
@@ -217,6 +217,11 @@ class web_module {
}
else
{
exec
(
$app
->
system
->
getinitcommand
(
$daemon
,
'reload'
)
.
' 2>&1'
,
$retval
[
'output'
],
$retval
[
'retval'
]);
}
// nginx: do a syntax check because on some distributions, the init script always returns 0 - even if the syntax is not ok (how stupid is that?)
if
(
$web_config
[
'server_type'
]
==
'nginx'
&&
$retval
[
'retval'
]
==
0
){
exec
(
'nginx -t 2>&1'
,
$retval
[
'output'
],
$retval
[
'retval'
]);
}
return
$retval
;
}
...
...
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