I usually end up adding session_start()
to the top of every page on my PHP sites (or in a header file which is in turn included on every page). I recently discovered that you can have sessions start automatically by using the following setting in php.ini
:
session.auto_start = 1
What are the potential downsides (if any) of using this setting?