Skip to content

Instantly share code, notes, and snippets.

@emulsion-io
Created September 18, 2013 13:33
Show Gist options
  • Save emulsion-io/6609200 to your computer and use it in GitHub Desktop.
Save emulsion-io/6609200 to your computer and use it in GitHub Desktop.
Charger la session de CodeIgniter dans CKFinder.
ob_start();
include('/home/webmaster/public_html/client/mylov4/index.php');
ob_end_clean();
function CheckAuthentication()
{
$CI =& get_instance();
$CI->load->library('session');
if($CI->session->userdata('connect') !== FALSE){
return TRUE;
}
return FALSE;
}
@anupamsaha
Copy link

Do it actually work when compression is on?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment