PHP - Visitors Online Counter

后端 未结 5 1328
太阳男子
太阳男子 2021-01-28 05:28

I have the following code to count visitors on my PHP site. It works fine on my local development machine using WampServer but when I uploaded my files to my hosting account for

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-28 06:14

    If the problem on the production server is that sessions are simply never deleted, you have two options:

    • Lower the session expiry time on your PHP installation.
    • Examine the last-modified date of the session files and only count them towards your total if they were modified within a certain amount of time from now.

提交回复
热议问题