My brother write a blog entry yesterday about home networking and powerline technology. And without knowing, he’s actually commenting on a subject dear to my professional heart.

    My company produces very nice DRT (digital television recorder / PVR) products, some of the best in the industry (so the man from Sony tells me). We are really trying to lead the industry when it comes to this product range and my job is to help influence that.  It is my feeling, and that of many others, that there will be a consumer device, probably in the lounge, probably grown out of a DTR product and probably it will extend it’s reach well beyond the lounge. My first hope is to secure support for DLNA, this technology makes it easy for network connected devices to share resources or control each other. From a media point of view this means that content can be streamed from one device to another without complex user intervention.

    Power line technology is a lovely idea, unfortunately from a manufacturers perspective to integrate it into a product is very expensive. The cost of the module is easily more than the cost of an HD decoder chipset. This means that I struggle to justify putting it into a product when I know that the majority of consumers will never actually use the technology. I am also a bit dubious about putting signals over wires that weren’t designed to handle them, the mains in the UK is about 240V at 50Hz, the cable is designed for that and works well enough. But when you start putting complex noise signals at wide bandwidth over them you are going to have some effect at some point. Powerline delivered broadband already has a huge objection from the HAM radio groups and radio astronomy groups, thousands of low cost PLT home devices can’t be much better (even if they are lower power).

    We are however striving to add ethernet ports to as many products as possible and we are working on some decent software to exploit it to the full. I do conceed however using these plug adaptors could be an easy way to avoid the fact that wireless never delivers even close to it’s stated bandwidths and most consumers don’t want to rewire their house for Cat-5e/6. Although remember that current electrical installation requirements in the UK now often require a professional electrician to do the install otherwise you can’t sell your house.

So, I have a dekiwiki I use for some purpose or another, I wanted it to be used via https to ensure security (just general paranoia). That was fine to implement, however it needed authentication otherwise whats the point! So, I sat down and tried to figure out how to authenticate Apache2 against a MySQL database. There are lots of tools to do this, but luckily for me none of them work with Dekiwiki because the site doesn't store it's password in any normal way.

Continue reading “DekiWiki apache2 authentication against MySQL”

I encountered a rather annoying error message in this CMS when I wanted to add a Sitemap component called joomap to Mambo (to improve Google indexing ).

XML Parsing Error: junk after document element
Location: http://www.orbit.me.uk /index.php? option=com_joomap&view=google
Line Number 2, Column 1:<b>Warning</b>:  Invalid argument supplied for foreach() in <b>[snip] /administrator /components /com_joomap /plugins /content.plugin.php</b> on line <b>88</b><br />

This was a problem because it was stopping Google indexing the sitemap. So I decided to dust off my PHP and tackle the problem head on…

Continue reading “Joomap error at line 88 foreach()”