You don’t need to download the cookie helper unless you intend to use the shortcut function alias.
Check your cookie settings in config.php. Special:
$config['cookie_path'] = "/";
If that doesn't work, just use the PHP built-in function to set cookies, and you can probably still use the CI () input to get them.
setcookie("name", $value);
source
share