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
Guilherme Filippo
ISPConfig 3
Commits
c3d8a845
Commit
c3d8a845
authored
Jan 07, 2014
by
Till Brehm
Browse files
Updated incremental svn files.
parent
3ba56480
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0062.sql
0 → 100644
View file @
c3d8a845
CREATE
TABLE
`mail_backup`
(
`backup_id`
int
(
10
)
unsigned
NOT
NULL
AUTO_INCREMENT
,
`server_id`
int
(
10
)
unsigned
NOT
NULL
,
`parent_domain_id`
int
(
10
)
unsigned
NOT
NULL
,
`mailuser_id`
int
(
10
)
unsigned
NOT
NULL
,
`backup_mode`
varchar
(
64
)
NOT
NULL
DEFAULT
''
,
`tstamp`
int
(
10
)
unsigned
NOT
NULL
,
`filename`
varchar
(
255
)
NOT
NULL
,
`filesize`
VARCHAR
(
10
)
NOT
NULL
,
PRIMARY
KEY
(
`backup_id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
ALTER
TABLE
`mail_user`
ADD
`backup_interval`
VARCHAR
(
255
)
NOT
NULL
;
ALTER
TABLE
`mail_user`
ADD
`backup_copies`
INT
NOT
NULL
DEFAULT
'1'
;
interface/lib/config.inc.php
View file @
c3d8a845
...
...
@@ -44,14 +44,14 @@ $revision = str_replace(array('Revision:', '$', ' '), '', $svn_revision);
//** Application
define
(
'ISPC_APP_TITLE'
,
'ISPConfig'
);
define
(
'ISPC_APP_VERSION'
,
'3.0.
2
'
);
define
(
'ISPC_APP_VERSION'
,
'3.0.
5.3
'
);
define
(
'DEVSYSTEM'
,
0
);
//** Database
$conf
[
'db_type'
]
=
'mysql'
;
$conf
[
'db_host'
]
=
'localhost'
;
$conf
[
'db_database'
]
=
'ispconfig3'
;
$conf
[
'db_database'
]
=
'ispconfig3
_305
'
;
$conf
[
'db_user'
]
=
'root'
;
$conf
[
'db_password'
]
=
''
;
$conf
[
'db_charset'
]
=
'utf8'
;
// same charset as html-charset - (HTML --> MYSQL: "utf-8" --> "utf8", "iso-8859-1" --> "latin1")
...
...
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