Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
typo3_site
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Kevin Ditscheid
typo3_site
Commits
8412c166
Commit
8412c166
authored
8 years ago
by
Stefan Galinski
Browse files
Options
Downloads
Patches
Plain Diff
[TASK] Add the database port to the site configuration
parent
a627be82
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/default/SiteConfiguration.php.erb
+2
-6
2 additions, 6 deletions
templates/default/SiteConfiguration.php.erb
with
2 additions
and
6 deletions
templates/default/SiteConfiguration.php.erb
+
2
−
6
View file @
8412c166
...
...
@@ -4,6 +4,7 @@ $GLOBALS['TYPO3_CONF_VARS']['DB']['database'] = 'typo3';
$
GLOBALS
['
TYPO3_CONF_VARS
']['
DB
']['
username
'
] =
'typo3'
;
$
GLOBALS
['
TYPO3_CONF_VARS
']['
DB
']['
password
'
] =
'typo3'
;
$
GLOBALS
['
TYPO3_CONF_VARS
']['
DB
']['
host
'
] =
'127.0.0.1'
;
$
GLOBALS
['
TYPO3_CONF_VARS
']['
DB
']['
port
'
] =
'3306'
;
$
typo_db =
'typo3'
;
$
typo_db_username =
'typo3'
;
...
...
@@ -20,9 +21,6 @@ $GLOBALS['TYPO3_CONF_VARS']['BE']['lockSSL'] = 2;
//
Change
install
tool
password
to
joh316
$
GLOBALS
['
TYPO3_CONF_VARS
']['
BE
']['
installToolPassword
'
] =
'$P$CCuX8EzzYaSOHJS5o32X9Uk3Vg79ji1'
;
//
show
failed
sql
queries
and
php
errors
$
GLOBALS
['
TYPO3_CONF_VARS
']['
SYS
']['
enableDeprecationLog
'
] =
0;
//
change
the
systemLog
location
$
GLOBALS
['
TYPO3_CONF_VARS
']['
SYS
']['
systemLog
'
] =
'file,/var/www/typo3.log,3'
;
...
...
@@ -32,7 +30,7 @@ if (!$GLOBALS['TYPO3_DISABLE_DEBUG']) {
$
GLOBALS
['
TYPO3_CONF_VARS
']['
SYS
']['
devIPmask
'
] =
'*'
;
$
GLOBALS
['
TYPO3_CONF_VARS
']['
SYS
']['
sqlDebug
'
] =
1;
$
GLOBALS
['
TYPO3_CONF_VARS
']['
SYS
']['
displayErrors
'
] =
1;
$
GLOBALS
['
TYPO3_CONF_VARS
']['
SYS
']['
enableDeprecationLog
'
] =
0
;
$
GLOBALS
['
TYPO3_CONF_VARS
']['
SYS
']['
enableDeprecationLog
'
] =
1
;
$
GLOBALS
['
TYPO3_CONF_VARS
']['
SYS
']['
errorHandlerErrors
'
] =
'E_ALL ^ E_NOTICE'
;
$
GLOBALS
['
TYPO3_CONF_VARS
']['
SYS
']['
systemLogLevel
'
] =
0;
$
GLOBALS
['
TYPO3_CONF_VARS
']['
SYS
']['
exceptionalErrors
'
] =
28674;
...
...
@@ -45,5 +43,3 @@ if (!$GLOBALS['TYPO3_DISABLE_DEBUG']) {
//
Vagrant
specific
stuff
(
if
your
user
has
another
main
group
id
than
1000,
especially
required
on
MacOSX
)
$
GLOBALS
['
TYPO3_CONF_VARS
']['
BE
']['
createGroup
'
] =
'
<%=
@group_id
%>
'
;
?
>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment