Frist, add the db connector driver .jar to the folder ...tomcat7/lib
Then, add the following code before DriverManager.getConnection(...);
Class.forName("com.mysql.jdbc.Driver");
IT's done!
Friday, February 28, 2014
Thursday, February 27, 2014
Change the computer resolution Ubuntu
[this process was accomplished using Ubuntu 12.04 LTS]
Commands:
xrandr // get the currently display modes
xrandr --output LVDS1 --scale XxX // scale the image
xrandr --output LVDS1 --panning 1640x922 // change the resolution output
I used this sentence:
xrandr --output LVDS1 --scale 1.2x1.2 --panning 1640x922
xrandr --output LVDS1 --scale 1x1 --panning 1366x768
Commands:
xrandr // get the currently display modes
xrandr --output LVDS1 --scale XxX // scale the image
xrandr --output LVDS1 --panning 1640x922 // change the resolution output
I used this sentence:
xrandr --output LVDS1 --scale 1.2x1.2 --panning 1640x922
xrandr --output LVDS1 --scale 1x1 --panning 1366x768
Thursday, February 20, 2014
How to install Lamp/Xampp on Ubuntu (php, mysql, apache server)
Newer:
http://www.tecmint.com/ubuntu-14-04-server-installation-guide-and-lamp-setup/
, starting from step 31
Older:
https://help.ubuntu.com/community/ApacheMySQLPHP
how to install phpmyadmin after that:
sudo apt-get install phpmyadmin
If you have problems accessing phpmyadmin:
http://askubuntu.com/questions/19127/how-to-access-phpmyadmin-after-installation
http://www.tecmint.com/ubuntu-14-04-server-installation-guide-and-lamp-setup/
, starting from step 31
Older:
https://help.ubuntu.com/community/ApacheMySQLPHP
how to install phpmyadmin after that:
sudo apt-get install phpmyadmin
If you have problems accessing phpmyadmin:
http://askubuntu.com/questions/19127/how-to-access-phpmyadmin-after-installation
Tuesday, February 11, 2014
Subscribe to:
Posts (Atom)