61 articles General cPanel FAQ

How to install enable SPF & Domain keys using SSH cPanel

Please follow the following steps to install and setup SPF and DKIM  For : SPF Record (Sender Policy Framework) Sender Policy Framework (SPF) is an email validation system designed to prevent email spam by detecting email spoofing by verifying sender IP addresses. SPF allows administrators to specify which hosts are allowed to send mail from a…

How to update apache to the latest version?

Check the current version of apache by running httpd –v Then execute the following commands: How to Rebuild Apache via command line for directadmin cd /usr/local/directadmin/custombuild/ ./build update ./build clean ./build apache To update and compile everything, run the following: cd /usr/local/directadmin/custombuild ./build update ./build all d This should update both the configure options and…

How to setup an apache status page

You can also check and monitor Apache server’s current status on the web page without using log files. Modify httpd.conf file and add the following code into it: ExtendedStatus On SetHandler server-status Deny from all Order deny,allow Allow from localhost 168.125.225.12 Allow from .anotherdomain.com Restart apache service: /etc/init.d/apache2 restart You will see following parameters in…

FFmpeg installer that works for cpanel?

FFMPEG Auto Installer ffmpeginstaller is a free software completely written in bash shell script. The purpose of this script is to build a video streaming platform in your Gnu/Linux server. So you can start video streaming websites and avoid the cost of installations. This script not only install ffmpeg but also all its friends packages.…

What’s the fix for the error [notice] child pid 21446 exit signal File size limit exceeded (25)”

Archive for Apache Log Files If you find the error messages in /etc/httpd/logs/error_log as follows :- [Tue Mar 29 05:29:42 2006] [notice] child pid 21446 exit signal File size limit exceeded (25) This means that you have a log file that is greater than 2GB in size. To fix this run the following : cd…

Steps to Install Suhosin under different Linux Distributions? (RHEL/CentOS / Fedora)

Please refer the following steps : a.Download latest version of Suhosin # cd /opt # wget http://download.suhosin.org/suhosin-0.9.37.1.tgz Check the latest version by going to http://www.suhosin.org/stories/index.html As of this post Current version is 0.9.37.1 Make sure that that php-devel is installed: # yum install php-devel b. Compile Suhosin under PHP and RHEL / CentOS Linux using…

Check apache version on a linux dedicated cpanel server

You can find the server information about your server such as MySQL and PHP version or how many domains your are allowed on the cPanel account by viewing your cPanel stats. Steps to view your server specifications Login into your cPanel. Expand the cPanel StatsOn the left hand side, click the “expand stats” link to…

Steps to resolve the error “semget: No space left on device”

If apache does not start , then please check the error logs with cpanel. The error “semget: No space left on device” shows that that your server has run out of semaphores. If there is no problem with disk space, you need to verify the logs with tail -f /usr/local/apache/logs/error_logs [warn] pid file /usr/local/apache/logs/httpd.pid overwritten…