Tags
|
|
|
How to set maximum email sending limit for a domain from WHM – Linux server
|
In order to set maximum email sending limit for a particular domain one need to perform below mentioned steps:
1) Login into WHM of Linux server.
2) Click on Tweak Settings.
3) Go to “The maximum each domain can send out per hour” option and set the limit in text box upon requirement.
4) Click on Save to complete the process.
Note: To set unlimited email one need to provide value as 0.
|
How to check AWSTATS for the domain from cPanel
|
1. Login to cPanel using username and password.
2. Click on Web/FTP Statistics
3. Click on Awstats
|
How to change the password for email account in linux
|
How to change the password for email account in linux:
1) Login to the webmail using this URL:
Code: http://yourdomainname.com:2095/
and the username and password.
2) Now on the main page, one can see the various options like three webmail options (Horde, Squirrel mail and Round cube) and various icon in the lower bar.
3) Click on the icon “Change password” bar in the lower bar of the page.
4) Enter the password twice.
5) Click on “Change” to enter to set up.
|
How to enable .jsp support for domain
|
Login to the server via SSH and fire the commands below
root@server [~]# /scripts/addservlets –domain.com
Now, if you want to remove the servlets for the domain you can use the command below
root@server [~]# /scripts/remservlets –domain.com
Restart the tomcat on the server once.
You can try uploading the .jsp pages under the account and check.
|
How to install mod_security for Apache
|
What is mod_security?
ModSecurity is an open source intrusion detection and prevention engine for web applications. It operates embedded into the web server, acting as a powerful umbrella - shielding applications from attacks. ModSecurity supports both branches of the Apache web server.
Rfx Networks Recommended:
"mod_security is great and I encourage it be used by everyone; it does have the potential to break some web applications but so far iv seen very few issues to say the least. Likewis
|
8 Steps for Search Engine Optimization
|
8 Steps for Search Engine Optimization
Why is it so important to optimize your web site for search engine placement? The answer is simple: 82% of online shoppers know exactly what they want when they log onto the internet and ½ of them use search engines to find vendors and solution resources. Most of all the searches end within the first 2 pages of search results. And this is why it is essential to have a prominent presence for the keyword phrases that you are targeting. I break search engin
|
Best Methods for Generating YouTube Traffic
|
Social media has become one of the best advertising mediums. With millions of users on Facebook, Myspace, Twitter and YouTube, this is prime advertising real estate. YouTube is an entertaining site that now offers more than just interesting videos.
Utilizing YouTube’s power to generate traffic to your site and potentially convert that traffic into sales is becoming a mainstream idea. The following are a few tips to acquire additional traffic and promote products utilizing YouTube. These point
|
HowTo: Tweak php for maximum execution time for scripts
|
Php by default places resource limits on all php scripts using 3 directives:
* max_execution_time : Maximum execution time of each script, in seconds (default 30 sec)
* max_input_time : Maximum amount of time each script may spend parsing request data (60 )
* memory_limit : Maximum amount of memory a script may consume (default 8MB)
A php script might timed out because of resource limits. All you need to do is setup a new resource limits so that script will get executed.
Edi
|
How to Install TUN/TAP module in main node for VPN use
|
Kernel TUN/TAP support
OpenVZ supports VPN inside a container via kernel TUN/TAP module and device. To allow container #101 to use the TUN/TAP device the following should be done:
Make sure the tun module has been already loaded on the hardware node:
If it is not there, use the following command to load tun module:
To make sure that tun module will be automatically loaded on every reboot you can also add it or into /etc
|
How to install GeoIP and mod_geoip2 on centos for apache
|
How to install GeoIP and mod_geoip2 on centos for apache
Code: 1) yum install GeoIP GeoIP-devel GeoIP-data zlib-devel
Code: 2) mkdir /usr/local/share/GeoIP
3) Download the latest Country and City database files from maxmind
Code: cd /usr/local/share/GeoIP
wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
gunzip GeoIP.dat.gz
gunzip GeoLiteCity.dat.gz
|