Before Starting to set HaProxy, we need to setup 2 or more servers to set in the Load Balancer. Lets assume that we have set 3 servers with Nginx on them. In all servers modify the “add_header X-Proxy-Serve” line in order to name each server.
Now we have 3 servers and named them as CDN1, CDN2 and CDN3, we can now put a load balancer in front of them to complete our CDN setup.
Even though Nginx itself can be used as load balancer, we prefer to use HaProxy for our load balancer. On a new server, simply install Haproxy...
Tuesday, October 18, 2016
Saturday, August 20, 2016
ShareThis Asynchronous Javascript Loading
Unfortunately the ShareThis service has a lot of known issues, like loading a lot of data from their tracking site, b.scorecardresearch.com and other types of bloat when initializing their icons.
Because calling stLight.options depends on having the buttons.js script already loaded, it is not really feasible to initialize the code like this:
However, you could use an onload function to do the stLight.options, and then wrap the entire thing inside of a function that won’t interfere with...
Tuesday, September 23, 2014
Sanitize Inputs in PHP
1) Function for stripping out malicious bits
<?php
function cleanInput($input) {
$search = array(
'@]*?>.*?@si', // Strip out javascript
'@<[\/\!]*?[^<>]*?>@si', // Strip out HTML tags
'@]*?>.*?@siU', // Strip style tags properly
'@<![\s\S]*?--[ \t\n\r]*>@' // Strip multi-line comments
);
$output = preg_replace($search, '', $input);
return $output;
}
?>
2) Sanitization function
Uses the function above, as well as adds slashes as to not...
In
auto ffmpeg,
centos 6,
cpanel,
Enable ffmpeg-php in cpanel,
ffmpeg,
ffmpeg-php
by Unknown
//
10:21 PM
//
Leave a Comment
Auto-FFmpeg-cPanel :: Auto FFMpeg Installer for cPanel
Auto FFMpeg Installer for cPanel
Auto FFMpeg Installer for cPanel w/CentOS 6+
Requirements:
CentOS 6+
PuTTY
cPanel
That's all! Did you expected more?
Why use this ?
Installation of FFMPEG is treated as the toughest installations as it has many dependencies.
So I made this script, to simply the issues.
Check with the below steps for easy installation.
Installation:
$> yum update -y
$> yum install wget -y
$> wget --no-check-certificate "https://raw.githubusercontent.com/itseasy21/auto-ffmpeg-cpanel/master/install-ffmpeg.sh"...
In
centos 6,
cpanel,
Enable ffmpeg-php in linux,
ffmpeg,
ffmpeg-php,
github,
putty,
ssh
by Unknown
//
10:19 PM
//
1 comment
Auto-FFmpeg :: Auto FFMpeg Installer for CentOS 6+
auto-ffmpeg
Auto FFMpeg Installer for CentOS 6+ and other Control Panel that support CentOS 6+ (eg Kloxo, ZPanel etc)
Requirements:
CentOS 6+
PuTTY
That's all! Did you expected more?
Why use this ?
Installation of FFMPEG is treated as the toughest installations as it has many dependencies.
So I made this script, to simply the issues.
Check with the below steps for easy installation.
Installation:
$> yum update...
W3tools-Varnish : Varnish Cache Inegration in cPanel
w3tools-varnish
Varnish Cache Integration in cPanel
Varnish Cache is a web application accelerator also known as a
caching HTTP reverse proxy. You install it in front of any server that
speaks HTTP and configure it to cache the contents.
Installation:
$> yum update -y
$> yum install wget -y
$> wget "https://raw.githubusercontent.com/itseasy21/w3tools-varnish/master/install.sh" -O /root/varnish-install.sh
$> cd /root
$> chmod +x varnish-install.sh
$> ./varnish-install.sh
...
Monday, September 22, 2014
ApacheBooster v2.3
ApacheBooster
NOTE: This is the only working version of ApacheBooster found on GitHub :D
Current Release: V2.3
Nginx Version : 1.6.2
Varnish Version : 3.0.5
ApacheBooster is a integration of nginx and varnish, this Plugin will
reduce the server load spike and memory usage. Also the plugin will
provide the maximum performance of your websites.
Varnish
Varnish Cache is a web application accelerator also known as a
caching HTTP reverse proxy. You install it in front of any server that
speaks HTTP and configure...
Wednesday, September 10, 2014
Enable ffmpeg-php in linux
The ffmpeg-php is a php extension used for accessing and
retrieving information from media files both audio and vedio. Now
ffmpeg-php which is Rarely used in web applications. This php extension
is used for creating thumbnail images from movie files. If you want to
enable “ffmpeg-php” in the server, you have to manually download
“ffmpeg-php” source files and compile it. For enabling “ffmpeg-php” the
server needs to have “ffmpeg“, “GD” enabled and php version needs to be grater than 4.3.
The “ffmpeg-php”...
Sunday, August 24, 2014
In
CentOS | Fedora,
centos 5,
centos 6,
cpanel,
varnish,
whm
by Unknown
//
2:18 PM
//
Leave a Comment
How to install Varnish Cache [CPANEL]
Varnish Cache is a web accelerator, sometimes referred to as a HTTP accelerator or a reverse HTTP proxy, that will significantly enhance your web performance.
Varnish speeds up a website by storing a copy of the page served by the web server the first time a user visits that page. The next time a user requests the same page, Varnish will serve the copy instead of requesting the page from the web server.
This means that your web server needs to handle less traffic and your website’s performance and scalability go through...
Auto fix for file permissions and ownership [CPANEL]
suPHP and FastCGI require files and folders to have a specific set of permissions/ownership from other handlers. Without these permissions set you will see a lot of errors such as: “403 Forbidden”, “500 Internal Server Error”, or simply generic errors that commonly have the word ‘permission’ in them.
It can be very time consuming to track down and check file permissions across a whole server. Luckily, fixing this on a cPanel box can be scripted. This gives us a quick and very easy script you can wget to any cPanel server....