Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISPConfig
ISPConfig 3
Commits
68c5cce0
Commit
68c5cce0
authored
Sep 26, 2011
by
tbrehm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed max. length for session hash keys from 32 chars to 64 chars in the mysql database.
parent
bcb8eb94
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
install/sql/incremental/upd_0023.sql
install/sql/incremental/upd_0023.sql
+1
-0
install/sql/ispconfig3.sql
install/sql/ispconfig3.sql
+1
-1
No files found.
install/sql/incremental/upd_0023.sql
0 → 100644
View file @
68c5cce0
ALTER
TABLE
`sys_session`
CHANGE
`session_id`
`session_id`
VARCHAR
(
64
)
CHARACTER
SET
latin1
COLLATE
latin1_swedish_ci
NOT
NULL
;
\ No newline at end of file
install/sql/ispconfig3.sql
View file @
68c5cce0
...
...
@@ -1375,7 +1375,7 @@ CREATE TABLE `sys_remoteaction` (
--
CREATE
TABLE
`sys_session`
(
`session_id`
varchar
(
32
)
NOT
NULL
DEFAULT
''
,
`session_id`
varchar
(
64
)
NOT
NULL
DEFAULT
''
,
`date_created`
datetime
NOT
NULL
DEFAULT
'0000-00-00 00:00:00'
,
`last_updated`
datetime
NOT
NULL
DEFAULT
'0000-00-00 00:00:00'
,
`session_data`
longtext
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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