You are currently browsing the archives for the PHP MySQL cPanel Hosting category.

Posted on December 4, 2008 at 11:33 am

Disable WHM popup

Sometime you want to disable WHM login pop-up screen which ask you username/password when you are trying to access it. You can disable such popup easily, you just have to do few setting in your WHM. Just login to your WHM.. get into Server Configuration then Tweak Setting and just checkout “Disable Http [...]

Posted on December 3, 2008 at 8:43 am

Importance of du command

du command is most popular Unix command using which you can get an overview of your file-directory space usage. It quickly estimate diskspace usage by certain directory. You can get full data about sizes of few specific directories, full directory tree or even size of each file.
If certain directory is eating up all your allotted [...]

Posted on December 1, 2008 at 7:23 am

WebHosting with Multiple FTP accounts.

All webhosting service provider will offer you FTP access as default service with their hosting plans. Using FTP programs you can upload files on your webspace or can edit/delete your content on the server easily using Web-based interface.
If you want to change certain file permissions, FTP will help you to modify file permissions. Most webhost [...]

Posted on November 26, 2008 at 10:29 am

Disabling Telnet Service.

If you are still using Telnet for for connecting your PC to a server on the network then you should  disable it and should be replaced it with SSH. There is high security risk if you are using Telnet for accessing server as Telnet sends clear text passwords and usernames through logins which can be [...]

Posted on November 25, 2008 at 5:07 am

Email Error: Unrouteable address

Email Error: Unrouteable address
You are trying to send email  but you are getting some error  as “ Email error : Unrouteable address “ you can fix this error using following steps :  Just check if,
Te domains entry is available in userdomains,
Check the domains entry is available in localdomain,
The domain must have catchall address set if [...]

Posted on November 20, 2008 at 11:57 am

Shortcut desktop icon for cPanel control panel.

cPanel is one of the most popular and widely used webhosting control panel using which you can easily administer your webhosting accounts. It can be used as file manager or can be used for setting up multiple domains, adding new email accounts, as a hotlinking protection tool etc…. due to its graphical interface it can [...]

Posted on November 12, 2008 at 10:48 am

Avoid Free Webhosting Services

You must have seen many attractive advertisements or banner from many webhosting services provider providing your excellent resources for very cheap rates. be warm such advertisements are just for attracting new customers, you may have to face problems in terms of service or financial matters. You should choose a webhost after doing your homework so [...]

Posted on October 7, 2008 at 9:03 am

Dynamic Datadriven Websites

Websites can be classified in two major types as static websites and dynamic websites. Static websites are simple sites which don’t have any database support for it where as dynamic websites fetches data from database and is displayed in web browser. You need to create database first which also need to linked with your website [...]

Posted on September 21, 2008 at 8:45 am

File Transfer using PHP

You can easily transfer file to a remote machine without using FTP program within your PHP by using following code in your application.
 
<?php
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// check connection
if ((!$conn_id) || (!$login_result)) {
echo “FTP connection has failed!”;
echo “Attempted to connect to $ftp_server [...]

Posted on September 17, 2008 at 11:09 am

Keyboard shortcuts for Linux.

Linux is wellknown for its CLI. Most webmaster working on Linux will prefer command line interface to get their work done on Linux platform. Apart from such command line interface linux also provide you Graphical interface (GUI ) which can be useful for newbie if you are not prepared for black screen commands. You have [...]