Install Squid Proxy on Ubuntu

>> 1. Squid stores web files from previous requests to speed up future transfers. >> 2. ACLs (Access Control Lists) for user resources. >> 3. Bypassing website / domain filters. First Install Dependencies # apt-get install build-essential [for configure: error: Basic auth helper LDAP … found but cannot be built] # apt-get build-dep squid3 Download … Read more

WMSPanel Nimble install SSL support for HLS

First get Free SSL certificate from Let’s Encrypt Certbot https://certbot.eff.org/ for Apache or Nginx Check other articles for certbot SSL https://www.svnlabs.com/blogs/?s=certbot Let’s Encrypt Certbot will save SSL certificate files here /etc/letsencrypt/live/[Domain-Name]/ Now Edit Nimble Config file “/etc/nimble/nimble.conf” Nimble default port is port = 8081 Add below lines in nimble config file ssl_port = 30443 ssl_certificate … Read more

Install Ruby Slate NodeJS on CentOS 7

Slate is Beautiful static documentation for your API Required – Linux or OS X or Windows – Ruby version 2.3.1 or newer – NodeJS – Bundler — gem install bundler # cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) Install Ruby 2.4 – CentOS 7 # yum update # yum groupinstall “Development Tools” # yum install … Read more

Amazon DynamoDB Formatted JSON using JQ

Linux sed is useful tool to format and transform plain text. But sed is not so useful for structured data like JSON. JQ is a sed-like tool easily deal with JSON. ./jq is a lightweight and flexible command-line JSON processor. Install jq on OS X: brew install jq Install jq on Ubuntu: apt-get install jq … Read more

Top 10 Tutorials for your Drupal Website

Drupal is one of the most popular and powerful content management systems. Creating your website with Drupal will allow you endless options for design and function. Use these 10 Drupal tutorials to easily give your website features and options you may have never thought possible. 1. Tutorial For Site Setup Every Drupal website owner should … Read more

Download Gmail Blocked Email Attachments

Anti-virus warning – 1 attachment contains a virus or blocked file. Downloading this attachment is disabled. Gmail says …. File types you can’t include as attachments .ADE, .ADP, .BAT, .CHM, .CMD, .COM, .CPL, .EXE, .HTA, .INS, .ISP, .JAR, .JS (NEW), .JSE, .LIB, .LNK, .MDE, .MSC, .MSI, .MSP, .MST, .NSH .PIF, .SCR, .SCT, .SHB, .SYS, .VB, … Read more

Install Red5 Media Server on Ubuntu / Debian

Red5 is free media server based on Java and other open source frameworks. It support FLV, F4V, MP4, 3GP, MP3, F4A, M4A, AAC and protocols like RTMP, RTMPT, RTMPS, RTMPE. Install Red5 Media server # apt-get install red5-server Red5 Need below ports open in firewall / iptable RTMP: 1935 Debug proxy: 1936 HTTP servlet: 5080 … Read more

Select2Array

It’s easy to convert PHP Array to Select Dropdown Box… you need to loop for all element in array to display as dropdown. But may be you ever think for reverse process. Yes, it’s also easy! You need to scrape / crawl Select box HTML to get PHP Array back from HTML Select Box. Please … Read more

Install AWStats with GeoIP Plugin

AWStats is a free analytic tool that generates web, streaming, ftp or mail server statistics, graphically. There are many log analyzer but AWStats is open source Web analytics reporting tool, It can analyze log files from Apache, WebStar, IIS. Installing AWStats on ubuntu 12.04 # apt-get install awstats Configuring for yourdomain.com replace yourdomain.com with your … Read more

Install Red5 1.0.1 on CentOS release 6.5 (Final) 64-Bit

Contact us for Red5 HLS Plugin Red5 MySQL Authentication Plugin Wowza MySQL Authentication Plugin 1. Install Java # yum -y install java-1.6.0-openjdk java-1.6.0-openjdk-devel 2. Install Ant # cd /usr/local/src # wget http://archive.apache.org/dist/ant/binaries/apache-ant-1.8.2-bin.tar.gz # tar zxvf apache-ant-1.8.2-bin.tar.gz # mv apache-ant-1.8.2 /usr/local/ant 3. Export path for Ant and Java # export ANT_HOME=/usr/local/ant # export JAVA_HOME=/usr/lib/jvm/java # export … Read more