Free Hosting Tutorials

PROCEDURE TO INSTALL WORDPRESS via FANTASTICO DE LUXE

STEPS TO INSTALL WORDPRESS VIA FANTASTICO: 1.  Login to Cpanel via http://domainname/cpanel 2. Click MY SQL database >> create database >> create user > and then  add database to the database user >> give all privileges 3.  Click Fantastico De Luxe >> WordPress >> install it >>

Restoring your MySQL Database

Restoring your MySQL Database To restore the database you should do two steps create an appropriately named database on the target machine load the file using the file using the mysql command $ mysql -u [uname] -p[pass] [db_to_restore] < [backupfile.sql] Now you can restore your tut_backup.sql file to the Tutorials database. $ mysql -u root -p […]

How to Back Up MySQL Database

How to backup  mysql database. If you’re storing anything in MySQL databases that you do not want to lose, it is very important to make regular backups of your data to protect it from loss You can take backup Through command line. Back up From the Command Line (using mysqldump) If you have shell or telnet […]

How to install Exim in Redhat Linux

What is Exim? Exim is an open source mail transfer agent (MTA), which is a program responsible for receiving, routing, and delivering e-mail messages (this type of program is sometimes referred to as an Internet mailer, or a mail server program). How to install Exim Install exim and mail switching tools # yum install exim* […]

How to check mysql connection in cpanel with PHP

How to check mysql connection in cpanel 1.Log into the cpanel. 2.Choose mysql > create a database and add the user to that database. 3.Give full previleage to that user. 4.Now upload the test.php file into the public_html with the following contents <? $hostname=”localhost”; $user=”root”; $pass=”root1?; $dbase=”emp”; $connection = mysql_connect(“$hostname” , “$user” , “$pass”); $db […]