File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1567,12 +1567,6 @@ DSN by using the ``table_name`` option:
1567
1567
Or, to create the table yourself, set the ``auto_setup `` option to ``false `` and
1568
1568
:ref: `generate a migration <doctrine-creating-the-database-tables-schema >`.
1569
1569
1570
- .. warning ::
1571
-
1572
- The datetime property of the messages stored in the database uses the
1573
- timezone of the current system. This may cause issues if multiple machines
1574
- with different timezone configuration use the same storage.
1575
-
1576
1570
The transport has a number of options:
1577
1571
1578
1572
``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`::
2802
2802
2803
2803
The feature to add an expiration date for a signed URI was introduced in Symfony 7.1.
2804
2804
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
+
2805
2811
Troubleshooting
2806
2812
---------------
2807
2813
You can’t perform that action at this time.
0 commit comments