To try it out if you have just cloned it (to your home directory):
source ~/.oh-my-zsh/templates/zshrc.zsh-template| #### Enable Apache Proxy related modules | |
| sudo a2enmod proxy | |
| sudo a2enmod proxy_http | |
| sudo a2enmod proxy_ajp | |
| sudo a2enmod rewrite | |
| sudo a2enmod deflate | |
| sudo a2enmod headers | |
| sudo a2enmod proxy_balancer | |
| sudo a2enmod proxy_connect |
| <?php | |
| /* | |
| * XSS filter, recursively handles HTML tags & UTF encoding | |
| * Optionally handles base64 encoding | |
| * | |
| * ***DEPRECATION RECOMMENDED*** Not updated or maintained since 2011 | |
| * A MAINTAINED & BETTER ALTERNATIVE => kses | |
| * https://github.com/RichardVasquez/kses/ | |
| * | |
| * This was built from numerous sources |
| <?php namespace App\Http\Middleware; | |
| use Closure; | |
| use Illuminate\Http\Response; | |
| class DBTransaction | |
| { | |
| /** | |
| * Handle an incoming request. | |
| * |