PHP session_start fails

前端 未结 3 1016
心在旅途
心在旅途 2020-12-17 00:31

I\'m trying to start the session in a header page in my webiste. But it seems there might be some sort of bug because it fails with the following error:

Warn         


        
3条回答
  •  余生分开走
    2020-12-17 01:11

    First stop the Xampp Server.

    session.save_path = "\xampp\tmp"

    and change it to look like this

    session.save_path = "C:\xampp\tmp"

    Restart the Xampp Server.

    That’s it now your session should work as expected.

提交回复
热议问题