LAMP ( Linux, Apache, MySql, Php ) Server on Ubuntu 8.04

3 08 2008


In a post, a few days ago, i described how i had to restore and reinstall my system.
Meaning daily, i’ve been finding some of the software i need and reinstalling it.

So here i found myself needing to make use of a Lamp server on my laptop.
There’s literally thousands of guides about how to achieve this. Fact is that, on Ubuntu 8.04 (Hardy Heron ), it can be reduced to a few easy steps, and all the trick is done.

Once more, for the sake of clarity, and to spare some time:

Install mysql
sudo apt-get install mysql-server-5.0

Install Apache2
sudo apt-get install apache2

Install php and the apache module for it
sudo apt-get install php5 libapache2-mod-php5

Reboot apache (very important)
sudo /etc/init.d/apache2 restart

PhpMyAdmin, if you need it
sudo apt-get install phpmyadmin

That’s all folks!





Upcomnig Php6

16 04 2007

After a long time, today i came across (again) the Minutes Php Developers Meeting , now seen of course, on the light of new knowledge i’ve accumulated since ( not a lot , but some ).

On the list of discussed/accepted/declined matters, that i just re-read, what hit my attention was the decision made to add an opcode cache (APC) to the std distribution. I think it is going to be very interesting and practical.

APC is a well-written, well-maintained Pecl package. I have implemented already in a couple of solutions, and it is definitely worth the trouble of setting it up.

Another thing was the merging of the Hardened-PHP patch into the std distro, and a few other measures, as follows.

Read the rest of this entry »





Zend Certification Exam

24 03 2007

As i mentioned in one of my previous posts, i had scheduled to take the Zend Certification on Friday the 23rd of march, which i did.
That date was chosen , not because i could not do it any earlier, but because i could not do it any later. Zend will stop the PHP4 test on the 31st of march 2007.

Of course from the beginning it was a must using the official Study Guide and Practice Tests book,
which seemed to be quite a good deal.

The Study guide covers some of the major topics in php development, starting from the basics and array, strings, pcre, stream programming etc.

The guide contains not too much information, which , cuts both ways. First: you won’t need to much time to go through it. Second: that’s not all the information you will need, to pass the test.

Read the rest of this entry »