Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
services
T
t3o sites
typo3.org
typo3.org
Commits
a177daf6
Commit
a177daf6
authored
Oct 02, 2020
by
Marco Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[BUGFIX]
#363
- Ignore parameters from PayPal
parent
3aa30495
Pipeline
#9728
passed with stages
in 6 minutes and 3 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
4 deletions
+26
-4
private/typo3conf/LocalConfiguration.php
private/typo3conf/LocalConfiguration.php
+26
-4
No files found.
private/typo3conf/LocalConfiguration.php
View file @
a177daf6
...
...
@@ -10,12 +10,12 @@ return [
'Connections'
=>
[
'Default'
=>
[
'charset'
=>
'utf8'
,
'dbname'
=>
getenv
(
'DB_NAME'
)
,
'dbname'
=>
'db'
,
'driver'
=>
'mysqli'
,
'host'
=>
getenv
(
'DB_HOST'
)
,
'password'
=>
getenv
(
'DB_PASSWORD'
)
,
'host'
=>
'db'
,
'password'
=>
'db'
,
'port'
=>
3306
,
'user'
=>
getenv
(
'DB_USERNAME'
)
,
'user'
=>
'db'
,
],
],
],
...
...
@@ -129,6 +129,28 @@ return [
],
],
'FE'
=>
[
'cacheHash'
=>
[
'excludedParameters'
=>
[
'L'
,
'pk_campaign'
,
'pk_kwd'
,
'utm_source'
,
'utm_medium'
,
'utm_campaign'
,
'utm_term'
,
'utm_content'
,
'gclid'
,
'fbclid'
,
'token'
,
'tx'
,
'st'
,
'amt'
,
'cc'
,
'cm'
,
'item_number'
,
'item_name'
,
],
],
'debug'
=>
true
,
'loginSecurityLevel'
=>
'normal'
,
],
...
...
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