Install Zend Framwork on Ubuntu 9.10

To install the latest version of the Zend Framework we first need to add the repository containing the resources:

sudo add-apt-repository ppa:zend-framework/ppa
sudo apt-get update

After this installing is as simple as running the following command:

sudo apt-get install zend-framework

To check if the installation was successful run this command:

zf show version

In my case it shows: Zend Framework Version: 1.10.3

Continue reading » · Written on: 04-12-10 · 1 Comment »

Installing Xdebug on Ubuntu 9.10

This is a follow up for the last post about installing PHP 5.3 on Ubuntu. After playing around with PHP for some time I wanted to be able to do some debugging. It turns out to be easy to install Xdebug.

Install Xdebug
Just us the Synaptic Package Manager and search for php5-xdebug. Because we added the PHP 5.3 repository in the previous post the latest version of Xdebug is available in the list. Mark it for installation and the click the Apply button. If al goes well xdebug is installed.

Continue reading » · Written on: 04-12-10 · No Comments »

Install PHP 5.3 and Apache on Ubuntu 9.10

Use the Synaptic Package Manager to install the following packages:

  • apache2
  • php5
  • mysql-server
  • php5-mysql

If you check the PHP version you will see it is 5.2 and not 5.3. To get 5.3 up and running we first need to install two libraries the are needed during the update. On my system (64 bit) these are installed with the following commands:

wget http://us.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb53_1.6.dfsg.4~beta1-5ubuntu2_amd64.deb
sudo dpkg -i libkrb53_1.6.dfsg.4~beta1-5ubuntu2_amd64.deb
wget http://us.archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu38_3.8-6ubuntu0.2_amd64.deb
sudo dpkg -i libicu38_3.8-6ubuntu0.2_amd64.deb

Continue reading » · Written on: 04-06-10 · 1 Comment »

Running Ubuntu inside Windows using Wubi

I found a nice way to run Ubuntu on a Windows system without having to mess with boot loaders etc. It is called Wubi.

Wubi is an officially supported Ubuntu installer for Windows users that can bring you to the Linux world with a single click. Wubi allows you to install and uninstall Ubuntu as any other Windows application, in a simple and safe way. Are you curious about Linux and Ubuntu? Trying them out has never been easier!

Installing it was easy. But after the reboot it was showing me the grub prompt and refusing to do anything else than telling me it would not run Ubuntu. This seems to be a problem with Grub2. Here you can find a fix for the problem that worked for me. Now Ubuntu is booting fine and all is working ok.

Continue reading » · Written on: 04-06-10 · No Comments »

Doing the Php on Linux thing

At work we do both .net and php. The frontend is using PHP and MySql, the backend ASP.NET and Oracle. My knowledge of PHP is minimal so I decided to start learning it more seriously.

To do this I started with creating a virtual machine running ubuntu linux. Installing PHP, Apache and MySql was easy. After that installed the following things:

  • NetBeans 6.8
  • PHPUnit
  • XDebug
  • ZendFramework

I’m now working through the ZendFramework documentation to see if this is a good framework to start with.

It took me some time but I finally feel at home with PHP and Linux.

Continue reading » · Written on: 03-30-10 · No Comments »

fubumvc

Just read a blog post by Jerremy Miller. They are building a custom MVC framework called fubumvc. The principles behind it make me want to take a look at the code and play around with it a bit.

Fubu is an acronym which means “For us, by us.” After using the Microsoft ASP.NET MVC Beta framework and disagreeing with some of the design choices made therein, several of us decided to try to bend it to our design choices using its extensibility points. Eventually we reached our goal, but we realized we had overrode or replaced large portions of the MVC framework. At this point, it was suggested that maybe we take it one step further and write our own MVC framework starting at the same layer where ASP.NET MVC begins. This is the realization of that suggestion.

Update: Had a quick first look and I do need to have a closer look at the code. Very very interesting!

Continue reading » · Written on: 12-16-09 · No Comments »

Speed Tracer – Google Web Toolkit – Google Code

Google added a speed tracer to chrome.

Speed Tracer is a tool to help you identify and fix performance problems in your web applications. It visualizes metrics that are taken from low level instrumentation points inside of the browser and analyzes them as your application runs.

I’m starting to use Chrome more and more so this would be an useful addition.

Continue reading » · Written on: 12-09-09 · No Comments »

NServiceBus – Enterprise Communications Framework

While reading some blog I stumbled across NServiceBus.

Based on state of the art patterns from SOA and proven object-oriented practices, NServiceBus enables parallel service layer development, version tolerant message schemas, as well as fluent business-process unit testing.

This sounds useful. Could come in handy for the future development plans for our web shop platform.

Continue reading » · Written on: 09-25-09 · No Comments »

VS 2010 and .NET 4 Series – ScottGu’s Blog

Scott shows some features of the coming Visual Studio 2010 and the 4.0 version of the .NET framework. Looks good.

Continue reading » · Written on: 09-01-09 · 1 Comment »

Windows 7 Beta – Multi-Display Remote Desktop

With Windows 7 comes the ability to use both my monitors when working with a remote desktop. Finally Microsoft got it!

Continue reading » · Written on: 08-05-09 · 1 Comment »