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.
3391
The Pub / Re: The Cookie Law (in the UK at least)
« on May 18th, 2012, 06:28 PM »
Well, the problem's still there, it's still written into law, and just because the ICO is toothless doesn't mean it won't try gumming people for compliance.
If a test case does emerge, though, and the ICO does issue a penalty, it might have an effect...
If a test case does emerge, though, and the ICO does issue a penalty, it might have an effect...
3392
The Pub / Re: The Cookie Law (in the UK at least)
« on May 18th, 2012, 06:13 PM »
It's not likely that the government sites are going to comply any time soon, by the looks of it.
For my part I'd be quite happy to ditch the whole session cookie in Wedge so we're compliant by default, as it were, but I don't think that's going to go down so well...
For my part I'd be quite happy to ditch the whole session cookie in Wedge so we're compliant by default, as it were, but I don't think that's going to go down so well...
3393
The Pub / Re: The Cookie Law (in the UK at least)
« on May 18th, 2012, 05:55 PM »
Yeah, The Register is reporting similar: http://www.theregister.co.uk/2012/05/18/cookie_law_ico/
But the most amusing part is one David Evans, a rep for the ICO...Quote That last part is very interesting... and makes the whole thing basically irrelevant. Argh, so much time wasted, hardly surprising they haven't responded to my email yet.
The best one, though, is a comment in response to that article.
http://forums.theregister.co.uk/post/1414984Quote
But the most amusing part is one David Evans, a rep for the ICO...
Asked whether the ICO thought users knew enough to be able to consent to cookie agreements, Evans said: "We're not asking that user education has to give everyone a masters in computer science." He added that the legal definition of consent did not ask for proof that users understood what they were doing.
The best one, though, is a comment in response to that article.
http://forums.theregister.co.uk/post/1414984
Well, if you have a gripe against a particualr website
Why not complain to the ICO? At least then your grumbling over their uselessness will be based on actual experience.
Meantime, is it too polite to term this whole episode as an omni-shambolic barrel of cluster-fucking monkey-shite?
3394
The Pub / Re: The Cookie Law (in the UK at least)
« on May 18th, 2012, 01:08 PM »
Apart from the fact that it disappears real quick and is not particularly obvious or obtrusive...
Thing is, the little UI tweaks are just variations on a theme, there are far larger matters to attend to in both SMF and Wedge. (I don't believe, for example, that emanuele's mod fixes a side bug in SMF where the PHPSESSID cookie gets set for 6 years)
Thing is, the little UI tweaks are just variations on a theme, there are far larger matters to attend to in both SMF and Wedge. (I don't believe, for example, that emanuele's mod fixes a side bug in SMF where the PHPSESSID cookie gets set for 6 years)
3395
Bug reports / Re: SMF bug 4905 (signature length verified before preparsecode)
« on May 18th, 2012, 12:54 PM »
I think the scope aspect is a pretty neat idea and have no idea why it wasn't introduced into the core by default. Note that while there is a mod for it, it is modified in sm.org's case and I'd love to see making that at least a little extensible ;)
3396
Bug reports / Re: SMF bug 4905 (signature length verified before preparsecode)
« on May 18th, 2012, 02:27 AM »
That's SMF's behaviour, we have not touched it ;)
3397
Bug reports / Re: SMF bug 4905 (signature length verified before preparsecode)
« on May 18th, 2012, 01:34 AM »
The quick search defaults based on where you are - if you're in a topic, it defaults to that topic, if you're in a board - default to that board, otherwise search the whole forum.
3398
Features / Re: Action buttons: positioning
« on May 18th, 2012, 01:10 AM »
This is what I mean, it feels like magic and voodoo.
At first brush, all looks good to me, will test more properly later on.
At first brush, all looks good to me, will test more properly later on.
3399
Bug reports / Re: SMF bug 4905 (signature length verified before preparsecode)
« on May 18th, 2012, 12:52 AM »
Now what is it we always tell newbies? :P :lol:
(Remember that search can also work on a single topic ;))
(Remember that search can also work on a single topic ;))
3400
Features / Re: Action buttons: positioning
« on May 17th, 2012, 09:41 PM »
But for example in the context of margins, what does 'default' mean, exactly?
It feels like it's just a meaningless term.
It feels like it's just a meaningless term.
3401
The Pub / Re: The Cookie Law (in the UK at least)
« on May 17th, 2012, 07:06 PM »
The more drastic solution I've proposed is the one that obliterates all tracking of any kind for non-logged-in users. You lose the ability to see how many guests there are and what they're doing, but you gain a massive performance boost and instant compliance. You also get some SEO benefits to not having to munge the session ID around.
That aside, it would be trivially possible to be absolutely compliant with the rules with almost no work by having the session ID pushed to the URL but that does raise issues for SEO. And you can imagine how many people won't like the idea of not knowing how many 'guests' there are, which means there's a debate on how to judge how active a forum is.
But it would absolutely solve all the problems by then making cookies required only to be logged in, and if you don't agree with that, you don't get to be logged in, simple as.
What I am seeing, though, is sites simply refusing access without cookies and being done with it, such as Games Workshop's site was doing last night when I looked, which is entirely legitimate as I understand it - but it spells doom for search engines.
That aside, it would be trivially possible to be absolutely compliant with the rules with almost no work by having the session ID pushed to the URL but that does raise issues for SEO. And you can imagine how many people won't like the idea of not knowing how many 'guests' there are, which means there's a debate on how to judge how active a forum is.
But it would absolutely solve all the problems by then making cookies required only to be logged in, and if you don't agree with that, you don't get to be logged in, simple as.
What I am seeing, though, is sites simply refusing access without cookies and being done with it, such as Games Workshop's site was doing last night when I looked, which is entirely legitimate as I understand it - but it spells doom for search engines.
3402
Features / Re: Action buttons: positioning
« on May 17th, 2012, 05:15 PM »
I never understood how the whole 'auto' thing works. Might as well say 'left: magic' for all the good it does ;)
3403
Archived fixes / Re: Long cache keys make the cache fail.
« on May 17th, 2012, 04:45 PM »
The initial connection being the hardest is not surprising, because it's doing a bit more than just loading; it's also rejigging the file as well to a point. SQLite is pretty complicated.
I also didn't think it was async behaviour, that would certainly run counter to how PHP works (i.e. it's a blocking behaviour rather than a non blocking one)
I also didn't think it was async behaviour, that would certainly run counter to how PHP works (i.e. it's a blocking behaviour rather than a non blocking one)
3404
The Pub / Re: The Cookie Law (in the UK at least)
« on May 17th, 2012, 04:42 PM »
I'm not surprised. I still haven't had an answer from the ICO and I have sent another email asking for an update.
I still think the problem can be solved in Wedge's case by a more drastic measure than previously indicated and would have a lot of beneficial effects as a consequence but the shouting that will ensue from users afterwards... I don't want to have to deal with that.
I still think the problem can be solved in Wedge's case by a more drastic measure than previously indicated and would have a lot of beneficial effects as a consequence but the shouting that will ensue from users afterwards... I don't want to have to deal with that.
3405
Features / Re : Rewriting the skin file parser...
« on May 17th, 2012, 04:36 PM »Yeah, that would explain a lot... (Although my forum already had 200k+ posts when I tried making the switch.)
It's pretty much up to PHP to keep things in memory for other simultaneous sessions, yeah.
Really, it's just about what is available to service the lower end hosting; anyone running Wedge etc. on any really large platform is going to be on a VPS and able to drop memcache or APC into place anyway.
But again, it's mostly I/O bound... (i.e. whether SQLite can deal with the disk access faster than a pure PHP call is up to the machine and setup, I guess...?)
You mean it's not possible without a similar rewrite, right..?
But the question of expiry is a bit more tricky to resolve.
Isn't it possible to send a global timeout notice or something to the cache handlers...?