Tag Archives: Tutorial

Firefox 10 Aurora Add On Compatibility

So Firefox 8 has been released meaning Firefox 9 is now in beta and Firefox 10 is now on the Aurora channel. Trouble is, even if you are using compatibility reporter from the add ons site, most of your add ons will now be disabled. This is because compatibility reporter only supported up to Firefox 9. Anyway the fix is simple.

  1. Open a new tab
  2. Type about:config in the url bar and press enter
  3. Click the I’ll be careful, I promise! button
  4. Right click anywhere on the list that appears and select New then Boolean.
  5. For the preference name put extensions.checkCompatibility.10.0a and click OK
  6. Now select false and click OK
  7. Now do the same again but this time name it extensions.checkCompatibility.10.0
  8. Again set it to false.

Now close Firefox and when you restart all your extensions should be working again.

Sending email via SMTP using PHP

A couple of my users contacted me to say that their host had disabled sendmail and required any scripts they use to now use SMTP to send emails. This resulted in me quickly reading all I could about SMTP and the result is this slightly rough script I am sharing. It’s pretty self explanatory. Put your SMTP server details in the $mailCfg array. Next simply call the smtpMail function which uses the same variables as the standard PHP mail() function but with two additional variables. The additional variables are the email address we are sending from and $mailCfg. I could of put $mailCfg as a global but this way you can include the script in a different script and store the required information where ever you want. The from address is important as most SMTP servers will reject the message if it’s not included.

Just remember the code is far from perfect and was created to do a simple job.

It also has one nice extra function you might find useful… Read more »

Play MKV on Xbox 360

OK so I downloaded the first two episodes of Pioneer One which is a free to download mini series made for VoDo, which is a free video site. Unfortunately, like a lot of high definition (HD) video, it came in the MKV format which, unfortunately, the Xbox 360 does not support. Now the first thing you need to understand is that the video format is just a container. The actual video and audio inside the container can be exactly the same in a different container. Orange juice is still orange juice whether it’s in a glass or a cup. Anyway what we need to do is take the audio and video out of the MKV container and put it in to a container that the 360 can play such as mp4. I did a search for instructions on how to do this by searching for play MKV on Xbox 360 but the one I found required about 10 different programs. Admittedly the instructions on that page are from 2008. Mine is a lot simpler and requires just a single, portable, program called XMedia Recode. The site is in German but just click Download under where it says XMedia Recode Portable. Extract the contents of the zip file and run XMedia Recode.

Read more »

Post Popularity Graphing by Knowledge Ring