Duplicate DB sessions created upon Zend_Auth login

前端 未结 1 1657
慢半拍i
慢半拍i 2020-12-22 00:53

I must be doing something wrong. I can\'t seem to find the answer to my problem anywhere on the Web, and this generally means that the solution is so simple that no one nee

相关标签:
1条回答
  • 2020-12-22 01:36

    I figured out this problem...

    As expected, the solution was a simple typo...

    I don't know how to dramatically write the answer here, but the problem was...

    My Database table, called "sessions" had the wrong data type.

    The datatype for the id column was set to "int" (11)

    instead it should be set to "char" (32)

    DUH! I hope the 4 days I spent on this problem helps someone else out!

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