摘要:
第一步,备份mysql back_mysql_db.sh 第二步,将文件夹scp到服务器 scp_back_to_test.sh 需要安装一下expect tips:默认情况下 10 秒执行命令就会中断,set timeout 120 能够设置执行时长 第三步,配置定时器crontab 每天夜里3点 阅读全文
摘要:
``` location ^~ /admin.php { allow xxx.xxx.xxx.xxx; // 允许的ip deny all; // 禁止其他 fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fastcgi.conf; include pathinfo.conf; } ``` 阅读全文
摘要:
``` public function banner(){ $redis = Red::create(); $banner_redis_key = 'mask_index_banner'; $banner_data = $redis->get($banner_redis_key); if(!$banner_data) { $mask_banner = M('mask_banner'); $bann 阅读全文