I started using facebook php sdk with codeigniter but since then the urls on my website all have a ‘PHPSESSID’ added to the end.
I created a config file containing the app id and secret and used the following code to load the library.
$this->load->library('facebook');
Does anybody know of a workaround to this problem??
Instead of changing php.ini setting I went ahead and replaced the
$_SESSIONusages infacebook.phpwith Codeigniter sessions$this->session->set_userdata(). Works for me till now. Not very foolproof I guess.