Paul Benetis on Aug 22nd 2007 Music
Yesterday I was pleasantly surprised to hear The Thermals song “Here’s Your Future” at the end of the “Weeds” episode that aired last Sunday. If you haven’t heard of these guys you should check out their MySpace page and give them a listen. I have seen them twice and they definitely delivered a good show every time.
I have a previous post about The Thermals that has their “Pillar Of Salt” video. Check it out here.
Paul Benetis on Aug 17th 2007 Tips or Tricks
If you need to upgrade PHP on your current Linux box here are some instruction: (this is a result of my frustrating night trying to upgrade)
Download the latest RPM here. Search by name and you should find something like php-5.2.3-2.fc6.remi.x86_64.rpm. Pay attention to the distro the RPM is build for.
Once you have your RPM, install it.
rpm -ivh php-5.2.3-2.fc6.remi.x86_64.rpm
If it says that you are missing some dependencies, download those, install them (with rpm -ivh), and try again.
Some dependencies might error out saying that some files are conflicting. If this occurs you can remove the already installed dependency. To do so use something like this:
rpm -e php-common-5.1.6
Also, you can use RPM to install addons such as GD libraries or MySQL.
I believe thats it. It is much simpler than expected. I can say that now, after I spent hours trying to make it work with source code.