开发者

codeigniter: ion auth with shopping cart

开发者 https://www.devze.com 2023-01-12 16:28 出处:网络
I am integratin开发者_开发技巧g ion auth with the codeigniter cart, both are working independently however if I have items in my cart then I login, I lose the cart items.

I am integratin开发者_开发技巧g ion auth with the codeigniter cart, both are working independently however if I have items in my cart then I login, I lose the cart items.

Guess this is session related, I have scanned the login scripts and doesnt seem to be ended the session and starting a new one, so I am a bit lost.

Fairly new to codeigniter, so if someone could point me in the right direction that would be great?

Thanks,

Martyn


Ion auth and the Codeigniter cart class both use Codeigniter sessions, and not native PHP sessions. You are probably using an older version of Ion auth which clears the Codeigniter session on login. Try using the latest version: Ion Auth on github. Also, the codeigniter cookie is limited to 4kB, less with encryption, so consider using PHP native session for your cart class.

0

精彩评论

暂无评论...
验证码 换一张
取 消