Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #50491, comment 1


Ignore:
Timestamp:
06/27/2020 10:20:16 PM (6 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #50491, comment 1

    v1 v2  
    11Hi there, welcome to WordPress Trac! Thanks for the report.
    22
    3 As far as I know, this does not happen on a clean WordPress install, only if a plugin or theme starts a PHP session with a `session_start()` function call. WordPress core does not use PHP sessions.
     3As far as I know, this does not happen on a clean WordPress install, only if a plugin or theme starts a PHP session with a `session_start()` function call. WordPress core itself does not use PHP sessions.
    44
    55A solution would be to close the session by `session_write_close()` before making any HTTP requests.