File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1636,12 +1636,6 @@ DSN by using the ``table_name`` option:
16361636 Or, to create the table yourself, set the ``auto_setup `` option to ``false `` and
16371637:ref: `generate a migration <doctrine-creating-the-database-tables-schema >`.
16381638
1639- .. warning ::
1640-
1641- The datetime property of the messages stored in the database uses the
1642- timezone of the current system. This may cause issues if multiple machines
1643- with different timezone configuration use the same storage.
1644-
16451639The transport has a number of options:
16461640
16471641``table_name `` (default: ``messenger_messages ``)
Original file line number Diff line number Diff line change @@ -2802,6 +2802,12 @@ argument of :method:`Symfony\\Component\\HttpFoundation\\UriSigner::sign`::
28022802
28032803 The feature to add an expiration date for a signed URI was introduced in Symfony 7.1.
28042804
2805+ .. note ::
2806+
2807+ The generated URI hashes may include the ``/ `` and ``+ `` characters, which
2808+ can cause issues with certain clients. If you encounter this problem, replace
2809+ them using the following: ``strtr($hash, ['/' => '_', '+' => '-']) ``.
2810+
28052811Troubleshooting
28062812---------------
28072813
You can’t perform that action at this time.
0 commit comments