SSH – Secure Shell – What is it ?

SSH stands for Secure Shell and is a secure method of accessing remote systems. Wit SSH, you can login to your Linux or Unix shell command prompt and execute commands as if you were sitting right in front of the server typing at the console. SSH has a wonderful feature called SSH Port Forwarding, sometimes called SSH Tunneling, which allows […]

» Read more

How enable HTML files to display php code

 When writing content for your site, you typically store them in either html or php files. The basic files, particularly on Linux servers like the ones used for our hosting accounts, are either generally either html (files ending in the extension .html or .htm) or php (files ending in the extension .php) files. HTML files are created with markup tags […]

» Read more

What is PHP?

What is PHP?   PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. In an HTML document, PHP script (similar syntax to that of Perl or C ) is enclosed within special PHP tags. Because PHP is embedded within tags, the author […]

» Read more

What is suPHP ?

What is suPHP ? suPHP is a tool for executing PHP scripts with the permissions of their owners or a program that controls who can access certain files. All scripts executed on the server need to be authorized to run on the server. This enhances security by not running scripts as the web server user (nobody) or as root. So […]

» Read more

How to Change your Default Timezone in htaccess

Changing your Default Timezone:   The default time zone setting that is displayed in the Preferences>Global folder is used to localize the time for received messages and calendar activities in the standard web client. 1) Log in to yor cpanel 2) Click on the file Manager icon 3) Click on web Root Radio button 4) Click on the dropdown and […]

» Read more

Redirect domain to subdirectory without changing URL

The simple way to redirect your primary domain to a sub folder without change the URL A)  Redirect and keep everything after the URL Show all of the same content on one URL as you would another. Example, if you just changed your domain to DomainB.com, but you still have plenty of visitors coming to DomainA.com, you would use this to […]

» Read more

How to install MariaDB Server in cPanel/WHM servers?

How to install MariaDB Server in cPanel/WHM servers? And What are the advantages of using MariaDB Server ? Ans:  *  Install MariaDB Server in cPanel/WHM servers 1. Backup existing MySQL data # mysqldump –all-databases –routines –triggers > /home/db_dump/alldb.sql # service mysql stop # cp -r /var/lib/mysql/mysql /home/db_dump/ # service mysql start 2. Select MySQL version as MariaDB # /usr/share/lve/dbgovernor/db-select-mysql –mysql-version=mariadb100 […]

» Read more
1 20 21 22 23 24 31