Archive for August 26th, 2010
» posted on Thursday, August 26th, 2010 at 19:26 by Nigel
FreeviewHD Content protection rolled out
According to my sources at the BBC, an update to the FreeviewHD programme guide data is being rolled out at the moment. This update is the implementation of the Huffman-encoded EPG tables, which are part of the Freeview HD content protection system that I’ve written about here and here.
The theory is that as part of the approval for the Freeview HD badge, equipment will already have the ability to decode the EPG built in, and so most people should not notice any change.
The change hasn’t been done in one go, and is apparently rolling out around the country; I don’t have a schedule yet, or details of which transmitters have been changed over, but I do know that the plan is that the switchover will conclude in November if all goes well.
However – there’s always one of those, isn’t there? – there have been some reports on internet forums that the change has caused some problems with equipment, and specifically with the new Humax HDR Fox T2. I’m unable to confirm these at the moment, but I will update this post as soon as I get information back from Humax.
I’ve got a Humax here, and the EPG still works just fine. What has been suggested on some forums is that where the new EPG has been rolled out, the search function no longer works on the Humax. I can certainly confirm that the search doesn’t work on the unit I have , but since I hadn’t tried it until today, I can’t honestly say whether or not anything has changed in that regard, though posts elsewhere on the net, such as AV Forums, suggest that to be the case.
So, content protection is being rolled out as I write; it’s not everywhere yet, but I shall try to get more details as soon as I can. In the meantime, I’d be most interested to hear from anyone who is experiencing problems with the EPG or EPG related functions on Freeview HD equipment, which weren’t evident a little while ago.
Update, 1945, Thurs: I’ve just had work from Humax that the issue some users are having with search does indeed appear to be related to the compressed SI data, and that they will be looking at issuing an update to the HDR Fox T2 in September. I’ll note also, since my review’s not yet been published, that this issue aside, I’ve been quite impressed with the box. So if you can live without the keyword search, don’t let it put you off.
one Comment | filed under Digital TV · Services | tags: drm, epg, freeviewhd, Humax
» posted on Thursday, August 26th, 2010 at 12:14 by Nigel
Quick anti-spam hacks for phpBB
A little off topic this, but I thought I’d share with people. One of the sites I run has a forum that, because of pressures of time, is still running phpBB version 2. It’s going to be upgraded to version 3 shortly, but I’ve not quite found the time.
I already have a quick hack in place that checks the IP address being used for registration; periodically I download a Geographic IP address database from Software 77, and load it onto my server. A quick lookup then lets us display a different message to people from certain countries (essentially, anywhere outside the EU, Australia and New Zealand) letting them know their account has to be approved by an admin.
The main bit of this particular hack is a function called untrustedIP, which returns TRUE if the IP address appears (GEO-IP mapping isn’t exact) to be from a country where we’ve either had lots of spammers, or where the things talked about on the forum aren’t relevant. This has succeeded in keeping the forum pretty spam free over the last few years.
In the common.php file, I have this code:
// this is a GEO-IP hack for country related authorisation
// query the database for the user ip address, and set the auth options
// based on the permitted countries
if (untrustedIP($client_ip)) {
$board_config['require_activation'] = USER_ACTIVATION_ADMIN ;
}
// end of the GEO-IP hack
That’s fine, as far as it goes, at the cost of extra work keeping the database up to date, and authorising people who might be from elsewhere. Anyone who wants to code for the function, and the database structure, let me know. Or upgrade to phpBB3, which is more sensible.
But recently, I’ve seen even more registrations than usual, and some of these don’t even seem bothered about posting their spam to the forum – they don’t post, even if they are from IP addresses in the UK. Their main aim is to get the links to their crappy websites into the forum memberlist, which is visible to everyone (there are other hacks that make it visible to only people who are logged in, but I’ve not bothered with those).
As a general rule of thumb, these days I take the view that anyone who enters an ICQ number when they sign up to the forum is a spammer. No one else seems to use it anymore. So, there’s long been a warning on the sign up page that if you do enter a website or ICQ number when you register, your account may be deleted for being a spammer. (You can always enter it later, if you want).
Given the increasing number of spammers doing this, I’ve now made another quick hack. In the includes/usercp_register.php file you’ll find a bit of code that looks like this (line breaks added for clarity):
else if ( $mode == 'register' )
{
if ( empty($username) || empty($new_password) ||
empty($password_confirm) || empty($email))
I’ve simply changed the if statement, adding two new conditions to it, between the last two brackets :
|| !empty($icq) || (!empty($website)
The effect of that is to tell people they’ve forgotten to fill in a compulsory field, if they enter anything in the ICQ or website field. It’s not the best message, but I said this was a quick hack. And I already have a note on that page telling people not to put anything in those two fields. I don’t particularly care if spammers get confused, either.
post a comment | filed under Networking
» Recent Posts
- Resurrecting the Veo Observer
- So long, Google Plus
- Zennox USB internet TV and radio player
- WTF … should I pay to download BBC programmes?
- Heatmiser WiFi thermostat range
- FreeviewHD’s leap year problem – check your timers!
- Installing the iPlayer update on the DigitalStream FreeviewHD recorder
- Roku 2XS review
- Finding myself
- Who gives a damn about small businesses?
- iRiver Story HD – the eReader that missed its chance
- Digital Stream FreeviewHD PVR to get iPlayer March 2nd
- Roku’s media player arrives in the UK
- Sex in the 21st century
- Heatmiser WiFi thermostat
» Recent Comments