Jul 31, 2009

Installing php:- Download the zip archive of php from this site. Extract the archive to a c:\php or any name that you like but in the entire explanation c:\php is assumed to be the path where php is installed so replace it with the path to your directory in case you choose to install it in another directory . Rename the php-ini-dist to php.ini because...

Posted on Friday, July 31, 2009 by Unknown

Jul 23, 2009

The dynamic dns service can be used by any person with a non-static ip address to host a website on pc. Non- static ip address means that a person who is using services of an isp and so generally every time he resets his router or modem a new ip address is assigned, so the binding of a domain name to the ip address just cannot happen. The dynamic dns service can be used for this purpose to bind the non-static ip-address to a domain name by constantly updating the ip-address with the domain name provider thus a normal user can host his/her website...

Posted on Thursday, July 23, 2009 by Unknown

Jul 21, 2009

The first thing that you should know is that Timer class is available both in java.util and javax.swing packages and they both are different from each other. I will be discussing code example about the Timer class in javax.Swing package which you can use to make a countdown timer, JprogressBar or do other operations. Below is the code example and then the explanation follows:- import java.awt.event.*; import javax.swing.Timer; /** * * @author morph */ public class timer_Example extends javax.swing.JFrame implements ActionListener { Timer...

Posted on Tuesday, July 21, 2009 by Unknown

Jul 20, 2009

In case you change the password for root account using phpMyAdmin and then try to login into mysql database using phpmyadmin you will receive a log in error and you won't be able to login, this happens because phpmyadmin has no way of knowing what's the root password that you have set.The phpmyadmin uses it's config.inc.php file for storing mysql user related information and that is where you should enter the root password so that on next log in it can successfully log in to the mysql database.The solutions to update the password are explained...

Posted on Monday, July 20, 2009 by Unknown

Jul 6, 2009

Problem:-You encounter this error while executing your jar file then it is likely due to missing library files that your jar file needs to run.Solutions:-For applications made using NetBeans Ide:-Netbeans while making your jar file adds the classpath of the libraries needed for your application to the manifest.mf file and creates the folder lib in the dist folder containing the jar files that your application needs to execute.If you copy and paste just the jar file and try to execute it it will raise an error, so instead of just copying the jar...

Posted on Monday, July 06, 2009 by Unknown