Do not use PHP sessions
-
Hi,
Can you please rewrite your code to not use a PHP session (
session_start()
)? If you do need to use a PHP session, then please close the session when you are done accessing your requried data withsession_write_close()
.Since WPAC doesn’t close the PHP session, this can affect other portions of the WP site and other plugins, while also drastically hindering performance.
Read the following article about PHP sessions and WordPress (especially the “Exclusive Locks” section):
https://pressjitsu.com/blog/wordpress-sessions-performance/I had to manually check if there was a PHP session and then I had to close it so it would’t affect one of my plugins.
Could probably be the cause of this issue as well:
https://www.ads-software.com/support/topic/critical-issue-wp-ajaxify-comments-causes-504-errors-on-site/
- The topic ‘Do not use PHP sessions’ is closed to new replies.