Cookies


We do not use any cookies, however, GoClixy is developed using Codeigniter Framework and it uses some cookies (e.g. ci_csrf_token, bf_session) for data storage. We cannot disable this behaviour, please update this information in your Terms & Conditions policy.

_ga and _gid

In order for Google Analytics to determine that two distinct hits belong to the same user, a unique identifier, associated with that particular user, must be sent with each hit. For this purpose, Google Analytics uses a single, first-party cookie named _ga to store the Client ID. The Client ID is a randomly generated string that gets stored in the browsers cookies, so subsequent visits to the same site can be associated with the same user.

bf_session

The session class stores session information for each user as serialized (and optionally encrypted) data in this cookie. This is used to maintain a user's "state" and track your users activity while they browse your site.

ci_csrf_token

Used for input data security. It prevents site attack in which a malicious entity tricks a victim into performing actions on behalf of the attacker.

How To Add A Cookie Consent?

Use the following free script from https://cookieconsent.insites.com.

Add the following code in the header of your website, just before the </head> tag. For help and additional options see documentation.

<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
  "palette": {
    "popup": {
      "background": "#eaf7f7",
      "text": "#5c7291"
    },
    "button": {
      "background": "#56cbdb",
      "text": "#ffffff"
    }
  },
  "theme": "classic",
  "position": "bottom-right",
  "content": {
    "message": "This website uses cookies.",
    "href": "< ENTER YOUR TERMS AND CONDITIONS PAGE URL >"
  }
})});
</script>