Facebook SDK + CodeIgniter sessions
问题 I'm using CodeIgniter's built in session class, and therefore I don't want the Facebook SDK to start it's own session (by session_start() and using the $_SESSION variable). Is there any way to prevent the SDK from using native sessions and if, how do I make it utilize the CodeIgniter session class instead? Is it even possible? 回答1: This is pretty late but just in case someone else runs into the same issue. Just implement the PersistentDataHandler in a custom class as stated here: https:/