WordPress设置代理

Leave a comment

WordPress因为各种原因放在国内服务器上经常无法远程更新、安装插件。通过下面方法设置代理就可以了。

/* 配置代理 */
define('WP_PROXY_HOST', '127.0.0.1');//代理服务器
define('WP_PROXY_PORT', '8118');//代理端口
define('WP_PROXY_USERNAME', '');//代理用户名
define('WP_PROXY_PASSWORD', '');//代理密码
define('WP_PROXY_BYPASS_HOSTS', 'localhost');//排除域名

[PHP]DirectAdmin PHP5.6安装swoole

Leave a comment

客户要求安装swoole,也不知道什么鬼用途。记一下笔记。

yum install gcc make autoconf pcre -y
cd ~
wget http://pecl.php.net/get/swoole-1.10.5.tgz
tar -zxvf swoole-1.10.5.tgz
cd swoole-1.10.5
export PHP_PREFIX="/usr/local"
$PHP_PREFIX/php56/bin/phpize
./configure --with-php-config=$PHP_PREFIX/php56/bin/php-config
make -j 2
make install

echo "extension=swoole.so" >> /usr/local/php56/lib/php.conf.d/20-custom.ini
service httpd restart
php -i | grep "swoole"

[Python]酸酸R飞机场穿透内网限制黑白名单

Leave a comment

酸酸R默认自带的黑名单方法(直接在配置文件添加):

"forbidden_ip": [
  "0.0.0.0/1",
  "192.0.0.0/2"
],

当我想只允许访问1个C段的时候,就比较麻烦了。例如只想允许访问192.168.1.0/24。
但是可以改掉酸酸R的源码,把黑名单改成白名单。上面黑名单参数改成192.168.1.0/24就行。 Continue reading

[PHP]根据User Agent判断是否搜索引擎蜘蛛

Leave a comment
/* 判断搜索引擎 摘自Discuz x3.2 */
function checkrobot($useragent=''){
  static $kw_spiders = array('bot', 'crawl', 'spider' ,'slurp', 'sohu-search', 'lycos', 'robozilla');
  static $kw_browsers = array('msie', 'netscape', 'opera', 'konqueror', 'mozilla');

  $useragent = strtolower(empty($useragent) ? $_SERVER['HTTP_USER_AGENT'] : $useragent);
  if(strpos($useragent, 'http://') === false && dstrpos($useragent, $kw_browsers)) return false;
  if(dstrpos($useragent, $kw_spiders)) return true;
  return false;
}
function dstrpos($string, $arr, $returnvalue = false) {
  if(empty($string)) return false;
  foreach((array)$arr as $v) {
    if(strpos($string, $v) !== false) {
      $return = $returnvalue ? $v : true;
      return $return;
    }
  }
  return false;
}

Continue reading