Problem with PHP Session Object

前端 未结 1 733
傲寒
傲寒 2021-01-16 20:06

I am facing some problem with my php session. I have deployed a plugin for file management in my moodle application.

The new plugin home page is behaving unexpected

1条回答
  •  孤街浪徒
    2021-01-16 20:33

    Actually PHP_Incomplete_Class_Name has nothing to do with session regeneration.

    This behaviour appears when you (or your cms/framework/whatever you have) call session_start() before each serialized object's class definition has been parsed.

    So you need to include all classes before you started session.

    0 讨论(0)
提交回复
热议问题