This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
76
The Pub / Re: Number of 'online users'
« on April 22nd, 2012, 08:10 PM »Okay...
- I would also encourage getting rid of guest counting in the stats -- *except* in the Who's online / Info center areas where you can easily sort between guests and online members, and determine that 90% of the 'guests' are actually bots, etc... This kind of thing is interesting, but recording numbers on the long run is pointless because you can't know whether you got a bot swarm or simply an actual surge in interest.
- I think that even if we don't start a session for guests, we should still record whatever page they're on and store it somewhere for the next 15 minutes (by IP.) I really like being able to know what a guest is doing... Not only that, but some people are adamant on knowing it, for security purposes. I'd suggest maybe only showing this data to admins, and showing it in a way that's different from the Who's online section -- for instance, we could store the query string and $_SERVER and show that in a subsection of the Who's online page, or something... Because bots will often try to reach URLs that you never considered, it's nice to be able to spot the oddities in there.
77
The Pub / Re: The Cookie Law (in the UK at least)
« on April 22nd, 2012, 03:16 PM »
To save Arantor or anyone else trawling through the Wedge/SMF code looking for where PHPSESSID could be set, I can now confirm that the modification posted by Emanuele works 100% and prevents all cookies, including PHPSESSID, from being set until the visitor actively clicks on a link to allow them.
With Emanuele's help (he used some kind of analyser on my site) I discovered that PHPSESSID was being set was because I have SA-Chat installed and, for some strange reason, it has its own index.php file. One of the very first things that happens is that there's a call to start_session(). A simple edit was all it took me to prevent the Mod from loading unless cookies had been authorised.
With Emanuele's help (he used some kind of analyser on my site) I discovered that PHPSESSID was being set was because I have SA-Chat installed and, for some strange reason, it has its own index.php file. One of the very first things that happens is that there's a call to start_session(). A simple edit was all it took me to prevent the Mod from loading unless cookies had been authorised.
78
The Pub / Re: Number of 'online users'
« on April 22nd, 2012, 09:12 AM »Awstats does use resources, END OF. Whether them resources are used only in use.. It uses resources.. The fact its running and installed on your machine uses resources. Even IDLE programs USE resources.. Correction SIR. You ain't right!
79
The Pub / Re: Number of 'online users'
« on April 22nd, 2012, 08:54 AM »Star:AWstats is a log analiser and nothing more. The sourceforge page says it in the second sentence! Meaning it does no work when you're not using it. All it does is read from the server. And what better way to track usage than by reading what the server itself provides!
And if removing guest tracking results in a drop in bandwidth and fewer SQL enquiries, with their attendant processing, then I'm all in favour. I'm pretty sure that anyone who sees a need to track their site visitors will either write a
Mark
80
The Pub / Re: The Cookie Law (in the UK at least)
« on April 22nd, 2012, 06:58 AM »Do we actually *need* to track unique guests? Do we care how many 'guests' are online at once? Do we care how many 'unique guests' (given that's a figure that we don't really understand nor have any accuracy for) are online at once?
Mark
81
The Pub / Re: The Cookie Law (in the UK at least)
« on April 22nd, 2012, 06:51 AM »One thing I will add... actually... there is an interesting point to be made here. Complying with the law as it seems to be, that means we can't issue the PHPSESSID cookie without permission. That means search engines won't give consent, and thus we don't have to worry about PHPSESSID for non-guests.
In *that* case, yes, we lose the accuracy of the 'number of online guests', but we actually gain performance and speed and stop having any PHPSESSID/SEO issues again ever to have to deal with.
From my perspective, I'm increasingly considering that a viable option - though I do note there is an exemption in there for cookies used for performance and tracking the number of users to balance load, and it's possible to argue that one with PHPSESSID. Until I get some guidance from the ICO, though, this is all largely hypothetical.
Mark
82
The Pub / Re: The Cookie Law (in the UK at least)
« on April 22nd, 2012, 06:37 AM »Hey, that was me who tried Emanuele mod.Quote from markham on April 21st, 2012, 06:45 PM Unfortunately neither of the solutions work. That by the-person-whose-name-I-can't-read-let-alone-pronounce didn't work at all. The second one, by Emanuele, isn't preventing the PHPSESSID (ie visitors) cookie from being set.
It did work, I set it up and it disabled cookies for guests until they agreed to use them, using the notice that is placed at the top.
So SMF didn't issue no cookies at all lol.
It says, either agree, login or register to accept the cookie.
Then it places an ecl_ cookie on your computer to verify that you have accepted lol.
I checked and there was no cookie issued to the guest only analytic's and shoutbox, not SMF.
I have un installed it now, as it looks a mess right now lol.
But I believe it does the job, with an extra page that you can click in the notice where all the information will be about the cookies.
Nothing on it as of yet lol.
Rather than disable features completely - such as your shoutbox - all you need do is add a call to ecl_authorized_cookies() - and if that returns TRUE, cookies have been accepted ;) I've had to do that in subs.php for the Google Analytics mod[1].
But as you can see on on this site, no main menu is shown until after the visitor accepts the cookies so, as best I can tell, that site is now almost in full compliance with UK law, the PSPSESSID cookie issue notwithstanding.
| 1. | (function ob_google_analytics($buffer) |
83
The Pub / Re: The Cookie Law (in the UK at least)
« on April 21st, 2012, 06:45 PM »
Unfortunately neither of the solutions work. That by the-person-whose-name-I-can't-read-let-alone-pronounce didn't work at all. The second one, by Emanuele, isn't preventing the PHPSESSID (ie visitors) cookie from being set.
84
The Pub / Re: The Cookie Law (in the UK at least)
« on April 21st, 2012, 07:33 AM »This is why I like Arantor. You take your time out to reply, and educate + 1
Put in the registration agreement that they allow all cookies and *hope* SMF do something about guest cookies.
If you put the check right at the start of the SMF execution path, that should avoid a PHP session from being started.
- Move your forum to a sub-directory
- Put up an entrance page advising of the cookies that will be set.
- Make a small change on the main SMF index page redirecting anyone who doesn't have an "opt in" cookie set to the entrance page.
- Require a click-through to get to the new forum location, setting a cookie (which was disclosed on that page!) to prevent SMF from kicking them out.
Oh, this solution also prevents search engines from indexing anything since SMF now requires an "opt in" cookie to even show.
I think that would legally work, although it would probably destroy your site since you wouldn't have any results in search so you'd only get new visitors via direct referral.
However, there is another British Forum owner contributing to that same thread and he poses the following:
In my view the new law actually makes using the internet illegal as your server can not legally read the packet headers which contain informationf from the users terminal without thier prior permission but how can you get that prior permission if you can't reas the headers.
I've noticed that some ISPs are placing tracking cookies for each web site visited. I wonder what ICO's views on that would be, since such cookies are outside the direct control of the web site owner.
| 1. | This is simply an observation (and probably a truism!), nothing more than that! |
85
The Pub / Re: The Cookie Law (in the UK at least)
« on April 20th, 2012, 08:58 AM »I actually did some investigation on this some time ago, when I first started running forums, and I don't believe anything's changed. Basically, a username and password is not considered personal information and as yet, neither is an email address. Consequently because you're not providing anything that comes under their definition of 'personal information', you don't have to get into the realms of being a registered Data Controller, and whatever's left regarding IP (which also, currently, is not considered personal information) is covered by the standard registration agreement, which is within the First Principle's approach to transparency.Quote That said though, I do wonder how many Forum sites operating from UK hosts actually comply with the requirements of the Data Protection Act. Very few, if any, would be my guess.
If my suspicions have any legs, then wouldn't it be wise for the site to automatically remove all additional informations - including all PMs sent/received - when a member is banned?
To the best of my knowledge - and according to some basic research carried-out by my lawyer - no UK-based Forum site has been found in violation of the DPA but there remains the risk that should the ICO be asked to investigate a site under the "cookie law", it might also check for other violations.
86
The Pub / Re: The Cookie Law (in the UK at least)
« on April 19th, 2012, 08:29 PM »That's true, but to a point one of the considerations is whether you're acting in good faith or not. If you're 'on the edge' but making an attempt in good faith to be compliant, you're probably going to OK, but if you're on the edge trying to bend the rules at every opportunity, when you do skirt the rules, it will come back to bite you a bit more.Quote The unholy side-effect of that is that site owners based in Europe will have to know the applicable laws for each EU member as the Directive does not proscribe any particular wording.
The ICO's own site is where I feel it's failing most: I accept that they may not know the specific details of each cookie - I don't know the specifics of what's in the Google Analytics cookies, for example, so that part I'm willing to accept the way they're doing it. What I don't like is the way they're using a single consent to accept *all* of those cookies, not bits and pieces.Quote The other bit of advice I've just been given is that site owners should clearly explain the content and use of any third-party cookies introduced on visitors' machines during their visit. But I note that even the ICO is unable to do this fully.
87
The Pub / Re: The Cookie Law (in the UK at least)
« on April 19th, 2012, 07:17 PM »Only half the team, I'm afraid :PQuote from markham on April 19th, 2012, 06:22 PM Oh and thank you for posting a copy of your email to ICO. I am relieved and reassured to know that this issue is being taken seriously by the Wedge Team
I'm still convinced that this is just 'for the show', and that this law is only going to be used in clear cases of privacy abuses, as legal grounds for action, rather than being mindlessly applied to every single blog or whatever.
That said though, I do wonder how many Forum sites operating from UK hosts actually comply with the requirements of the Data Protection Act. Very few, if any, would be my guess.
Heck, even *I* can no longer wait for an alpha release...Quote whilst those over at SMF are simply burying their heads in the sand. You have just provided me with yet another in an increasingly long list of reasons to wait patiently for the release of Wedge!
88
The Pub / Re: The Cookie Law (in the UK at least)
« on April 19th, 2012, 06:22 PM »It does also seem that there is a certain degree of insanity in the wording, from what I can tell, a user in the UK can complain to the ICO about a site based in Europe, regardless of being run in the UK or not, and for it to be taken up with the appropriate country's authorities on the matter.
The other bit of advice I've just been given is that site owners should clearly explain the content and use of any third-party cookies introduced on visitors' machines during their visit. But I note that even the ICO is unable to do this fully.
The other rather laughable aspect of the ICO site is that it places a second cookie, in addition to their main one, if you agree to cookies -- surely the presence of their main cookie indicates that you've agreed to cookies!
Oh and thank you for posting a copy of your email to ICO. I am relieved and reassured to know that this issue is being taken seriously by the Wedge Team whilst those over at SMF are simply burying their heads in the sand. You have just provided me with yet another in an increasingly long list of reasons to wait patiently for the release of Wedge! Thank you!
89
The Pub / Re: The Cookie Law (in the UK at least)
« on April 16th, 2012, 03:06 PM »Have you been to the ICO's site? Their opt-in is a very big list of cookies, which lists every cookie they use (of which there are quite a few), and the opt-in is for all cookies, not a per-cookie basis, so opting in for the important cookies also opts you in by proxy for the others too, which is a very dubious state of affairs.Quote It would seem that site owners may be responsible and have to obtain specific opt-ins before allowing their software to invite third-party cookies. But, as I said, ICO isn't giving any clear guidance on this (that satisfies lawyers).
Given that, the advice surely must be that an opt-in be obtained for each and every cookie regardless of whether first or third-party. And that could make visiting EU-hosted web sites somewhat tedious.
90
The Pub / Re: The Cookie Law (in the UK at least)
« on April 15th, 2012, 09:45 PM »
I have one site hosted in the UK and one hosted in the US. My solicitor (in London) has just advised me that I must have a notice prominently displayed for guests and members who are accessing from within the EU regarding the content and use of cookies by the Forum software. Apparently this must appear on both sites in order to comply with the Directive, since they can both can be accessed from within the EU. I'm also advised that a similar notice should also appear in the membership agreement.
I honestly doubt that many people will complain to the ICO but if they do, it's a big hassle and a potentially huge fine for site owners. A simple notice may remove that threat for now but, I'm told, the ICO (and its European counterparts) may in future require site operators to provide a means for cookie-less access to their sites.
What's not clear - and apparently the ICO isn't giving chapter and verse - is where the responsibility for third-party cookies lies. Anyone visiting a web site these days is bound to have one or more Google cookies stored in addition to any first-party cookies. It would seem that site owners may be responsible and have to obtain specific opt-ins before allowing their software to invite third-party cookies. But, as I said, ICO isn't giving any clear guidance on this (that satisfies lawyers).
Mark
I honestly doubt that many people will complain to the ICO but if they do, it's a big hassle and a potentially huge fine for site owners. A simple notice may remove that threat for now but, I'm told, the ICO (and its European counterparts) may in future require site operators to provide a means for cookie-less access to their sites.
What's not clear - and apparently the ICO isn't giving chapter and verse - is where the responsibility for third-party cookies lies. Anyone visiting a web site these days is bound to have one or more Google cookies stored in addition to any first-party cookies. It would seem that site owners may be responsible and have to obtain specific opt-ins before allowing their software to invite third-party cookies. But, as I said, ICO isn't giving any clear guidance on this (that satisfies lawyers).
Mark