Webtatic EL6 for CentOS/RHEL 6.xrpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpmWebtatic EL5.1 for CentOS/RHEL 5.x:rpm -Uvh http://mirror.webtatic.com/yum/el5/late...
记录遇到问题的点点滴滴。
开放80、3306端口vim /etc/sysconfig/iptables在默认的22端口这条规则下面添加以下代码(可以继续添加,修改端口号即可) /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT /sbin/iptables -I INPUT -p tcp --dport 330...
Github: https://github.com/electrolinux/phpqueryComposer: https://packagist.org/packages/electrolinux/phpquerycomposer require electrolinux/phpquery
CentOS 安装 Gearmand 和 PHP Gearman的步骤本人觉得有点复杂了,我看了很多很多的文章都不简单呀,下面大家来与小编来起来看看 Gearmand 和 PHP Gearman的安装方法吧。本文是采用源码编译方式安装Gearmand 和 PHP Gearman,完成安装Gearman当前最新版本1.1.2。你也可以采取傻...
1、获取apktool软件包 wget https://android-apktool.googlecode.com/files/apktool1.5.2.tar.bz2 wget https://android-apktool.googlecode.com/files/apktool-install-linux-r05-ibot...
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * Class MY_Loader */ class MY_Loader extends CI_Loader { public function view($v...
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * A base model with a series of CRUD functions (powered by CI's query builder), * va...
// application/core/MY_Controller.php <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * 控制器扩展类 * * 示例: * ``` * $this->input-&g...
调试android应用的网络交互时,常常希望看到网络包的交互过程。而在破解app时也经常希望看到网络交互过程的抓包。之前的思路一直是在手机上安装抓包软件,这种方式实时性不好而且分析能力有限。有天看到测试组的MM用一个简洁的方式解决的这个问题,很巧妙,特记录下分享。1 设置手机上的代理到pc电脑的端口8888可以再系统中设置。有个软件是au...
访问控制过滤Access Control Filter (ACF) 是一个简单的鉴权方法,很适合那些只需要简单访问控制的应用程序使用。顾名思义,ACF 是一个动作过滤器,可以被当作一个行为附属到一个控制器或一个模块中。ACF将通过检测 访问规则集合( access rules )来确定用户是否可以访问被请求的动作。use yii\filt...