WordPress 3.5 and DSO error
It appears that when a server is running DSO as the PHP handler and if a Wordpress 3.5 update is needed, the maintenance file is written with ownership as user.user…
It appears that when a server is running DSO as the PHP handler and if a Wordpress 3.5 update is needed, the maintenance file is written with ownership as user.user…
As of December 12th 2012, Google is no longer allowing secure connections to servers with self signed SSL's. This simply means if a client checks a cpanel email account from…
PREPARATION
In cPanel:
/usr/local/cpanel/cpkeyclt
/usr/local/cpanel/bin/cloudlinux_system_install -k
~Possible error: Might see "Yum error: Plugins are disabled".
~Add "plugins=1" to /etc/yum.conf and try again.
echo "plugins=1" >> /etc/yum.conf that should do the trick
shutdown -ar now
~When its back up rebuild apache.
/usr/local/cpanel/scripts/easyapache --build
3rd party license
wget http://repo.cloudlinux.com/cloudlinux/sources/cln/cpanel2cl
sh cpanel2cl -k $key
~Replace $key with your license key.
reboot
/scripts/easyapache --build
mod_cloudflare
When using Cloudflare, in order to retrieve the actual visitors IP that connect to your server, you must install mod_cloudflare. Normally when using Cloudflare, all of the IP’s that connect to your web server will come from a Cloudflare IP address. mod_cloudflare is an Apache module that forces Apache to log actual visitor IP addresses instead of cloudflare server IP’s. It can be installed on servers running cPanel, using the following commands:
cd /usr/local/src
wget --no-check-certificate http://github.com/cloudflare/CloudFlare-Tools/raw/master/mod_cloudflare.c
apxs -a -i -c mod_cloudflare.c
service httpd restart
/usr/local/cpanel/bin/apache_conf_distiller --update
By Jack Wallen From techrepublic.com – April 11, 2012
Takeaway: Apache can be extended in many ways. Here are a few key directives and modules that can help you tap into its flexibility and power.
If you use the Apache Web server, you know how flexible it is. One of the reasons for this flexibility is the availability of the directives and modules in the Apache configuration file. There are a LOT of them. Although your needs will dictate which ones are most important, I decided to list those I’ve used the most over the years. These directives and modules are, in my opinion, the ones all Apache admins should know well and be able to implement to get the most flexibility and power from their Apache server.
From pancakehttp.net
Pancake is a fast, simple and lightweight HTTP-Server written in PHP with acceleration for PHP-powered websites.
System requirements:
(more…)
From httpkit.com
Working with HTTP from the command-line is a valuable skill for HTTP architects and API designers to have. The cURL library and curl command give you the ability to design a Request, put it on the pipe, and explore the Response. The downside to the power of curl is how much breadth its options cover. Running curl –help spits out 150 different flags and options. This article demonstrates nine basic, real-world applications of curl.
In this tutorial we’ll use the httpkit echo service as our end point. The echo server’s Response is a JSON representation of the HTTP request it receives.