Can I edit my website without downloading it?

Sure! If your account has shell access you can SSH to your web directory. From there, you can use pico, vi, or emacs to edit your web pages. To get SSH enabled on your account please open a support ticket. You can also login to your control panel and use File Manager to edit/update...

How do I password protect directories?

To password protect a folder/directory, follow these steps in cPanel: 1. Login to your control panel using your account username/password at http://yourdomain.com/cpanel 2. Click on “Password Protection” under Services 3. Browse to the folder which you want to password protect 4. Click on the name of the folder 5. It will present you a form. It has two parts and you have to submit both separately: a) Allow access only to authorized users [ ] Directory requires a password to access Check the above box. and Protected Resource Name: [ ] (enter a generic name of the protection such as “My Protected Folder”) Submit and it will protect it. Now step (b) for adding username/password. Browse to the same form and b) Add/modify authorized user and enter the username/password and save...

How do I login via ssh to my account?

SSH is secure shell that gives you command prompt access on the linux server. You need an SSH client software on your computer to login to the server. Here is one free client available called Putty: http://www.chiark.greenend.org.uk/~sgtatham/putty/ Here is the direct link to download for Windows PC (95, 98, ME, NT, 2000, XP and Vista) : http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe Just download this program and save it anywhere on your computer. Double click on putty.exe to run it. It will ask you for Host Name (or IP address) which is your account domain name or server IP or server machine name, you can use any. Click Open. It will alert you for the host key if it is the first time and not cached, you can continue by pressing Yes. It will then ask you for your username, login as: this is your cpanel/ftp username. And then it will prompt you for your password which is the password for that cpanel/ftp username. You are now logged into your account on shell command line. Please go through other FAQ’s in SSH section to learn about various commands you can...

How can I backup a directory or my website via SSH?

To backup complete site files, login via ssh. While in you are in main dir type: tar -zcf site_backup.tar.gz public_html This will create a file named site_backup.tar.gz in your main dir. To restore this file as a site type: gunzip site_backup.tar.gz hit enter, then type: tar -xvf site_backup.tar hit enter and your all done. If you need to archive your emails stored in your account, you can do the same with “mail” folder. This does not include MySQL database backup if you use one. Please refer to MySQL section on how to do the...

What are some basic commands that are available via SSH?

ln (redirecting file access) Type ln -s fred.html index.html to redirect all file accesses from index.html to the file fred.html. passwd (changing your password) Type passwd to change your password. You may also use Brain to change your password. zip/unzip Type zip to zip files and unzip to unzip files. This program is compatible with the zip program for DOS. For example: zip myzip file1 file2 file3 This puts the files file1, file2, and file3 into a new zip archive called myzip.zip. On the other hand, if you had the archive myzip.zip and wanted to get back the files: unzip myzip Typing zip or unzip by itself will give you a usage summary, showing nearly all the options availible. du (disk usage) The Unix command du -s directory shows how much disk space is used by a directory and everything below it. While we work on creating the complicated command needed to automatically check all the directories you are associated with, you can find out how much space is in use by the WWW files for a domain with du -s /home/domain/www If you don’t have anything much in your home directory or mail spool, this comes close to the total space you have in use. (You would know if you did have other things in your home directory, and could use du -s $HOME to check on that.) locate (find files) The normal Unix methods of locating files have one thing in common, they are slower than molasses on a winter night in Alaska. So instead, we use a powerful program called locate. Type locate file_name and the...