Install Squirrelmail on a single cPanel account.
Following are the steps to install squirrelmail on a single cPanel account :
============================================================
Login to the server via SSH
root@server [/home/username/public_html]# wget http://files.directadmin.com/services/all/squirrelmail-1.4.13.tar.gz
root@server [/home/username/public_html]# tar -xvzf squirrelmail-1.4.13.tar.gz
root@server [/home/username/public_html]# mv squirrelmail-1.4.13.tar.gz squirrelmail
root@server [/home/username/public_html]# chown username.username squirrelmail -R
root@server [/home/username/public_html]# cd squirrelmail/config/
root@server [/home/username/public_html/squirrelmail/config]# cp -p config_default.php config.php
root@server [~]# cd /var/local/
root@server [/var/local]# mkdir squirrelmail/
root@server [/var/local]# cd squirrelmail/
root@server [/var/local/squirrelmail]# mkdir data/
root@server [/var/local/squirrelmail]# chown internat.internat data/ -R
Login URL is :
http://domainname.com/squirrelmail/src/login.php
============================================================
May 22nd, 2008 - Posted in Techical Issues | | 0 Comments
Zend Optimizer - Manual Installation for 32 and 64 Bit Linux servers
Hello ,
Following are the steps for manual installation of Zend Optimizer v3.3.0 on 32 Bit and 64 Bit Linux servers.
===========================================================
For 32 Bit
=======
cd /usr/local/src
wget http://downloads.zend.com/optimizer/3.3.0/ ZendOptimizer-3.3.0-linux-glibc21-i386.tar.gz
tar -zxvf ZendOptimizer-3.3.0-linux-glibc21-i386.tar.gz
cd ZendOptimizer-3.3.0-linux-glibc21-i386
./install
For 64 Bit
=======
cd /usr/local/src
wget http://downloads.zend.com/optimizer/3.3.0/ ZendOptimizer-3.3.0-linux-glibc23-x86_64.tar.gz
tar -zxvf ZendOptimizer-3.3.0-linux-glibc23-x86_64.tar.gz
cd ZendOptimizer-3.3.0-linux-glibc23-x86_64.tar.gz
./install.sh
=============================================================
April 24th, 2008 - Posted in Techical Issues | | 0 Comments
How to install ioncube loader for a single account on Linux server if PhpSuexec is enabled on it.
Following are the steps to install ioncube loader for a single account on Linux server if PhpSuexec is enabled on it.
======================================================================
root@host [/home/username] # wget http://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86.tar.gz
root@host [/home/username] # tar -zxvf ioncube_loaders_lin_x86.tar.gz
root@host [/home/username] # chown username.username ioncube -R
root@host [/home/username] # cd ioncube
root@host [/home/username/ioncube] # cp ioncube-encoded-file.php ../public_html/
root@host [/home/username/ioncube] # cp ioncube-loader-helper.php ../public_html/
root@host [/home/username/ioncube] # cd ../public_html/
root@host [/home/username/public_html] # chown username.username ioncube*
root@host [/home/username/public_html] # vi php.ini
place the below given path in current accounts php.ini and save changes ,
zend_extension = /home/username/ioncube/ioncube_loader_lin_4.4.so
Now verify ioncube is successfully installed by accessing the below given URL :
http://yourdomain.com/ioncube-loader-helper.php
======================================================================
April 9th, 2008 - Posted in Techical Issues | | 0 Comments
ratelimit database not available : exim error
2008-02-12 19:08:41 Failed to get write lock for /var/spool/exim/db/ratelimit.lockfile: timed out
2008-02-12 19:08:41 H=[xx.xx.xx.xx] temporarily rejected connection in “connect” ACL: ratelimit database not available
To fix such an error , the exim cache database on the server side needs to be clear off to stop this message.
Run the folllowing command on root :
root@host [~]# rm -fv /var/spool/exim/db/*
Output :
removed `/var/spool/exim/db/ratelimit’
removed `/var/spool/exim/db/ratelimit.lockfile’
removed `/var/spool/exim/db/retry’
removed `/var/spool/exim/db/retry.lockfile’
removed `/var/spool/exim/db/wait-dk_remote_smtp’
removed `/var/spool/exim/db/wait-dk_remote_smtp.lockfile’
removed `/var/spool/exim/db/wait-remote_smtp’
removed `/var/spool/exim/db/wait-remote_smtp.lockfile’
root@host [~]# service exim restart
If this doesn’t work , then run /scripts/upcp –force on the server and then check exim_mainlog for the changes.
April 1st, 2008 - Posted in Techical Issues | | 0 Comments
How to redirect blogpost using permalinks in Wordpress.
Some permalinks look very much like they have /index.php inserted before them.Following is the example for it :
http://www.solsearch.net/index.php/xyz/abc/post/
You can simply redirect such links without displaying /index.php using mod_rewrite rule.Edit your .htaccess and place the following rules :
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Save changes.
The end result will be displayed as :
http://www.solsearch.net/xyz/abc/post/
April 1st, 2008 - Posted in Techical Issues | | 0 Comments
Configuring Windows Mail Client
1. Launch the Windows Mail , a wizard will pop-up asking you to configure your mail account.
2. If it doesn’t pop-up the wizard then go to the Tools menu and choose Accounts ,an Internet Accounts window will open.
3. Click on the Add button , you will get list of account types and you need to choose E-mail account.
4. A window will appear where you need to type your name in the display name field and press Next.
5. In the second window, you will need to place your e-mail address and press Next.
6. Now choose which type of e-mail server you are using i.e POP3 or IMAP as the protocol for retrieving the mails.Type the address of POP3 or IMAP ,such asĀ “mail.yourdomainname.com“.
7. You need to check the option for “Outgoing server requires authentication” if you SMTP server requires authentication, then press the Next button.
8. Now type your username and password , then press Next button.
9. Last window has the option “Do not download my e-mail at this time” , you can check this option if you don’t want to downlaod the mails immediately from the server.
10. Cheers , your email account in Windows Mail has been setup.
March 29th, 2008 - Posted in Hosting Stuff | | 0 Comments
What is mean by Domain Name ?
In computing and telecommunication in general, a domain is a sphere of knowledge identified by a name.The term domain name has multiple related meanings:
- A Domain Name is a unique name that you choose for your web site. All websites are identified only by their names called as domain names.
- A name that identifies a computer or computers on the Internet. These names appear as a component of a Web site’s URL, e.g. solsearch.net. This type of domain name is also called a hostname.
- The product that domain name registrars provide to their customers. These names are often called registered domain names.
- They are referred as “web addresses”.
Domain registration is available to the public via various registrars. Fees and services vary from company to company, but the process is generally inexpensive. Before a domain registration can be approved, the new name must be checked against existing names in the DNS database. The online registrar provides a field into which you can enter your desired name and extension that is, the letters that come after the dot (.) . Familiar hierarchies (extensions) are .com, .net, .org, .name, .info and .biz. If the name is not already taken, it is available for domain registration.
March 7th, 2008 - Posted in Domain | | 0 Comments
Web Hosting Platforms
Different types of operating systems and versions available as web hosting server.Following are most common web hosting platforms and their various features:
- Linux:- The Linux Server OS has become a highly popular operating system due to its free cost, open source. The Linux environment provides stronger reliability, stability, and performance than Windows. Web hosting costs are low because there is no cost to purchase the platform. Support is high for the free and open source technologies such as PHP and MySQL. The internet provides a large amount of support due to the increasing support of the Linux operating system.There are different flavours of linux like red-hat, cent os, suse, gentoo etc.
- Windows:- At present there are different versions of windows are available in market. Windows server software, however, can be expensive which lead to higher web hosting costs.Developed by microsoft corporation. Able to access windows GUI through remote desktop connector.Other disadvantages include inability to move applications to other platforms, and high vulnerability to hackers and security flaws.
- SunSolaris:- Sunsolar is based on UNIX and developed by sun microsystems. Solaris 10 is a latest version of sunsolaris operating system.
- FreeBSD: FreeBSD is an Unix-like operating system that is free of cost and has descended from AT&T Unix. FreeBSD runs on processors compatible with the Intel x86 family and various others. It is highly regarded as a reliable and robust operating system with a long uptime. FreeBSD offers binary compatibility with other Unix-like platforms (e.g., Linux) and free BSD dedicated server hosting.
- Mac OSX: Mac OSX is developed and sold by Apple Computer and is the successor to the original Mac OS. Unlike the original, Mac OSX is a multi-user, pre-emptively multi-tasking, Unix-like operating system. Mac OSX includes its own software development tools and is often compatible with many BSD and Linux doftware packages as long as they have been compiled for the platform. Mac OSX is bundled with hardware but can also be sold separately depending on your needs.
March 7th, 2008 - Posted in Hosting Stuff | | 0 Comments
Web Hosting
Web hosting is a service which allows individuals and organizations to store information, images, video, sites or any other data which are accessible via internet. Web hosting are companies that provides the space on a server which they own and sell for use by their clients. Web hosting companies can also provide data center space and connectivity to the Internet for servers they do not own to be located in their data center.
March 7th, 2008 - Posted in Hosting Stuff | | 0 Comments
