Cakephp installl plugin as submodule
In order to install Search plugin for instance: git submodule add https://github.com/CakeDC/search.git app/Plugin/Search git submodule update –init –recursive
In order to install Search plugin for instance: git submodule add https://github.com/CakeDC/search.git app/Plugin/Search git submodule update –init –recursive
For prestashop 1.6.0.8 I want to work on a local branch (I use it to install my plugins as submodules) # get remote updates git fetch -all # reset all uncommited changes (I don’t need them anymore) git reset –hard … Continue reading
I had apache 2.4.6 already installed so Note: – I downloaded the sources for 2.4.6 – You need mod_so wget http://archive.apache.org/dist/httpd/httpd-2.4.6.tar.gz tar -xf httpd-2.4.6.tar.gz cd httpd-2.4.6 cd modules/proxy /usr/local/apache/bin/apxs -i -a -c mod_proxy_wstunnel mod_proxy_wstunnel.c as a bonus: to configure apache … Continue reading
There is no excerpt because this is a protected post.
Note: draft article (not beer) Headaches like having your email account hijacked I see more and more often now automatic brute force attacks over a server like mail. This attacks are getting from hundreds and hundreds of ips at once … Continue reading
I found the answer on google and post it here for reference 1. create a new role (Administration -> User Management -> Roles). This role will be a template for the type of user and the types of permissions they … Continue reading
Most times I find myself in a need to check database issues on a system I am given FTP only. To quickly set up something similar to phpmyadmin I found a very light, one file adminer: http://www.adminer.org/
Officially this is my first non-technical post I write. Even if nobody reads it it’s a good place to lay down some of the things I find interesting. Life is not only about work and study so maybe it makes … Continue reading
In order to list all incoming requests to get a hang of what’s happening with your server in real time you can use the command bellow. Make sure you have enabled mod_security audit. Because I use whm/cpanel this was possible … Continue reading
In order to keep the linux server as safe as possible I wrote two quick bash scripts that will scan for infected files and then send me an email report to take action. On the server I have centos with … Continue reading