Free Hosting Tutorials

clearing send mail queue

Free Hosting Tutorials

clearing send mail queue In linux operating system,the send mail queue can be cleared by the following ways, Method 1 : Deleting manually delete /var/spool/mail/*.* files in this dir –> delete /var/mqueue/*.* files all mail will be deleted. using mailq command, confirm whether all the mails are deleted or not from the queue Method 2 […]

How to Change File and Folder Permissions with FTP

Free Hosting Tutorials

How to Change File and Folder Permissions with FTP chmod is command in linux which will change the permsisson of a file.There are three modes which can be either enabled or disabled: read, write and execute. Each mode can be set for either the owner, the members of the owner’s group, or all users. How […]

Cpanel script error

Free Hosting Tutorials

Cpanel script error Warning: Division by zero in /tmp/cpanel_phpengine.1278238346.27363hlijnZhKwD on line 26 Warning: Division by zero in /tmp/cpanel_phpengine.1278238346.27363hlijnZhKwD on line 27 Warning: Division by zero in /tmp/cpanel_phpengine.1278238346.27363hlijnZhKwD on line 28 Steps to resolve this error, 1.Log into the WHM cpanel 2.click on my accounts 3.search for the domain name 4.Behind username >> you can see […]

How to Dump just the table structure file in MySQL

Free Hosting Tutorials

How to Dump just the table structure file in MySQL The mysql dump utility can be used as like taking the mysql database Syantax will be mysqldump -d -h localhost -u root -p databasename > dumpfile.sql The only option that is different than creating an entire backup is the -d switch, which tells mysqldump not […]