Check this out: https://www.cloudflare.com/technical-resources/#mod_cloudflare Option 1: Installation from Packages Download the appropriate package to your web server and install it using your operating system’s ‘rpm’ or ‘dkpg’ commands. For RedHat / CentOS / CloudLinux: # yum install glibc.i686 # rpm -i mod_cloudflare-elX.latest.rpm For Debian / Ubuntu: # dpkg -i mod_cloudflare-XXXXX.latest.deb RHEL/CentOS/CloudLinux RHEL/CentOS/CloudLinux 7 (64-bit) RHEL/CentOS/CloudLinux 6 (64-bit) Debian Debian 8 (64-bit) Debian 7 (64-bit) Ubuntu Ubuntu 16.04 (64-bit) Ubuntu 15.10 (64-bit) Ubuntu 15.04 (64-bit)Ubuntu 14.04 (64-bit) Ubuntu 12.04 (64-bit)Read More →

AH00526: Syntax error on line 55 of /etc/apache2/apache2.conf: Invalid command ‘LockFile’, perhaps misspelled or defined by a module not included in the server configuration Action ‘start’ failed. Solutions: Replacing this line LockFile ${APACHE_LOCK_DIR}/accept.lock with this one Mutex file:${APACHE_LOCK_DIR} default in /etc/apache2/apache2.conf solved the problem.Read More →

AH00526: Syntax error on line 5 of /etc/apache2/sites-enabled/awstats.conf: Either all Options must start with + or -, or no Option may. Action ‘start’ failed. The Apache error log may have more information. Solution: Add “+” in front of the options, for example: Options ExecCGI -MultiViews +SymLinksIfOwnerMatch   ==> Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch  Read More →

apex, bare domain ( domain without www) and www.domain.com should point to the same IP. In amazon load balance or some of the cloud solution, they do not provide us a static IP, they provide us a name and asks us to point our domain to their domain. There is no problem with www.domain.com , but we can’t point apex domain (domain.com) to a cname record, it ‘s because the current DNS RFC does not allow this. There are many dns hosting providers customized their DNS to support this feature. If you are using Route53, you can use the script below to monitor the differenceRead More →

I recently had to clone a very large repository through SSH, every time i did i got this error   Cloning into ‘large-repository’… remote: Counting objects: 20248, done. remote: Compressing objects: 100% (10204/10204), done. error: RPC failed; curl 18 transfer closed with outstanding read data remaining fatal: The remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed I could be the connection is bad , i finally fixed by using the commands below: $ git clone [email protected]:large-repository –depth 1 $ cd large-repository $ git fetch –unshallowRead More →

By default Apache only allows upto 150 connections, if the number is over, you will be in the queue. It will look like the server is down. The limit for server is usually configured in the following files: /etc/apache2/apache2.conf /etc/apache2/mods-available/mpm_worker.conf /etc/apache2/mods-available/mpm_prefork.conf This is the content to update:   <IfModule mpm_worker_module> ServerLimit 600 StartServers 10 MinSpareThreads 75 MaxSpareThreads 250 ThreadLimit 64 ThreadsPerChild 32 MaxRequestWorkers 600 MaxConnectionsPerChild 800 </IfModule>  Read More →

Do you see this error in your mail.log? “Please contact your Internet service provider since part of their network is on our block list (AS3140)” Go to this website to request Outlook team to remove your IP from their blocked list. https://support.microsoft.com/en-us/getsupport?oaspworkflow=start_1.0.0.0&wfname=capsub&productkey=edfsmsbl3&locale=en-us&ccsid=635611717755428181Read More →