Thursday, March 31, 2011

php MyAdmin

Unfortunately I haven't had time to write more posts. Recently I installed phpMyAdmin and you can click this link to see how to install.

If you don't want use phpMyAdmin, you can use MySQL Workbench. With this link you can use to download, install and use it. Sorry, I don't have video to show how to install MySQL Workbench but I think that is not really difficult to install.

Saturday, March 12, 2011

RAR

Today I was working in my project in Linux Ubuntu. I wanted extract folder to specific location and I could not because there was unable to extract.
I clicked in mouse's right button and then selected option 'Extract here' and show up the error message.

To extract name_folder.rar, follow the next steps:
  1. Type 'sudo apt-get install unrar' in Terminal
  2. Go to folder that you want extract and with mouse's right button select option 'Extract here'
  3. Congratulations, you can extract with success!

PHP5, MySQL and APACHE

I created a web application (PHP) that show the data stored in MySQL's database.
 

The materials needed are:
PHP, MySQL and Apache

Clicking this link (video) that can show how to install php, mysql and apache or following the next steps:

  1. Type 'sudo apt-get install mysql-server mysql-client;'
  2. Type 'y' when appears the question to install;
  3. Note: you have type password to user root.
  4. After the installation is finished, type 'sudo apt-get install php5' (in my case, apache was selected to install automatically)
  5. Type 'y' when appears the question to install;
  6. To check out if the web server apache is working, go to any browser and type 'http://localhost' in address bar;
  7. If  web server apache is not working, type 'sudo apt-get install apache2'
  8. Type 'y' to install apache2 web server;
  9. Congratulations, you finished the installation with success!