2015/11/17 Nginx/Apache/Tomcat No Comments Debian Install Nginx Error: Depends libssl0.9.8 (>= 0.9.8m-1) but it is not installable 今天在Debian系统上使用apt-get install nginx-full方式安装nginx时遇到错误:Depends libssl0.9.8 (>= 0.9.8m-1) but it is not installable,错误代码如下:root@(none):/opt# apt-get install nginx-fullReading package lists... DoneBuilding dependency tree Reading state information... DoneSome packages could not be installed. This may mean that you haverequ... 继续阅读 »
2015/11/12 Nginx/Apache/Tomcat 2 Comments Nginx Google反向代理扩展ngx_http_google_filter_module Nginx Google反向代理扩展模块ngx_http_google_filter_modulengx_http_google_filter_module扩展模块介绍ngx_http_google_filter_module是一个过滤器模块,能够让谷歌镜像更便捷的部署。内建了正则表达式、URI locations和其他复杂的配置。原生nginx模块确保了更加高效地处理cookies, gstatic scoures和重定向。轻松部署1、依赖库pcre 正则ngx_http_proxy_module 反向代理ngx_http_substitutions_filter_module 多重替换下载substitutions扩展:https://github.com/yaoweibin/ngx_http_sub... 继续阅读 »
2015/10/25 WEB前端 No Comments 批量删除/复原 批量选中js **批量删除 批量复原js jquery** ```javascript function chkbox(){ $('#delButton').show(50); } function checkNews(){ var chckBoxSign = document.getElementById("newsChk"); //newsChk 全选/反选的选择框id var chckBox = document.getElementsByName("newsBoxChk"); //所有的选择框其name都是newsBoxChk var num = chckBox.length; if(chckBoxSig... 继续阅读 »
2015/10/19 PHP/Python/Java No Comments php多维数组排序方法 php二维数组排序,php多维数组排序函数/** * 二维数组排序/多维数组排序 PHP * @param multi_array 多维数组名称 * @param sort_key 二维数组的键名(要排序的键名) * @param sort 排序常量 SORT_ASC || SORT_DESC * @return multi_array 排序后的数组数据 */ function ... 继续阅读 »
2015/09/15 Discuz/CMS No Comments Joomla You do not have access to the administrator section of this site **Joomla后台登陆报错You do not have access to the administrator section of this site解决:** 最近下了个Joomla安装倒腾,然后装完模板后导入了模板QuickSart后,发现后台登录不进去了,提示错误代码:>最近下了个Joomla安装倒腾,然后装完模板后导入了模板QuickSart后,发现后台登录不进去了,提示错误代码: > You do not have access to the administrator section of this site 经过分析大意是登陆的账号没有权限访问管理后台。经过一番研究后,分享以下解决方法: ##### 首先先来了解下几个表(prefix_为自己设定的表的前缀) > pref... 继续阅读 »
2015/09/15 Discuz/CMS No Comments joomla菜单默认首页/主页 joomla菜单默认首页 joomla set the default home page admin -- menu -- main menu -- click the index/home buttonExample / Icon: 继续阅读 »
2015/09/13 Discuz/CMS No Comments Joomla3.4中文简体/繁体语言包 Joomla 3.4 language package/extension,Joomla 3.4中文简体/繁体语言包下载及安装 Language extension/pack download:Project LocationJoomla!®3.x Accredited TranslationsInstall & configuration:Install:admin -- Extensions -- Extension Manager -- Upload & Install Joomla Extension Effective method:relogin & select the language 继续阅读 »
2015/09/10 PHP/Python/Java No Comments 获取IP地址及对应城市函数 PHP **获取客户IP地址** ```php function get_proxy_ip(){ $arr_ip_header = array( 'HTTP_CDN_SRC_IP', 'HTTP_PROXY_CLIENT_IP', 'HTTP_WL_PROXY_CLIENT_IP', 'HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', 'REMOTE_ADDR', ); $client_ip = '127.0.0.1'; foreach ($arr_ip_header as $key){ if (!empty($_SERVER[$key]) && strtolower($_SERVER[$key]) != 'unknow... 继续阅读 »
2015/09/08 WEB前端 No Comments 手机号码格式验证正则[2018更新] **js jquery验证手机号码格式是否正确(新)** ```javascript function checkPhone(){ var phone = document.getElementById(‘phone’).value; if(!(/^1[3456789]\d{9}$/.test(phone))){ alert(“手机号码有误,请重填”); return false; } } ``` **PHP验证手机号码格式是否正确(新):** ```php ** * 手机号码验证 * @param $mobile 手机号码 * @return false/true ... 继续阅读 »
2015/09/06 Nginx/Apache/Tomcat No Comments Nginx拒绝默认主机IP访问 Nginx拒绝访问默认主机 IPserver { listen 80 default; return 500; } 继续阅读 »
2015/09/01 服务器技术 No Comments linux查找替换目录下文件中包含的字符串-sed命令 linux查找替换目录下文件中包含的字符串-sed命令查找文件夹下包含字符串的文件例:查找/opt/web/blog目录下所有包含”demo.www.fity.cn”的文件。grep -lr 'demo.www.fity.cn' /opt/web/blog/*vim替换单个文件中所有字符串方法例:替换当前文件中所有demo为blog:%s/demo/blog/g#注释:%表示替换说有行,g表示替换一行中所有匹配点替换文件夹下包含字符串的文件sed结合grep,例:将目录/opt/web/blog下所有文件中的demo.www.fity.cn都替换为www.fity.cn:sed -i "s/demo.www.fity.cn/www.fity.cn/g" `grep ... 继续阅读 »
2015/08/25 WEB前端 No Comments ul菜单居中_水平居中css样式 ul li导航菜单居中/水平居中css样式。这个方法较简单,是将容器转成`display:inline-block`行内块级元素,然后就可以直接用`text-align:center`使其达到水平居中效果,也是推荐的方法。 示例ul导航菜单HTML代码: ```html 首页 … ``` CSS样式代码: 给外面的div添加`text-align:center`,然后将菜单容器设成`display:inline-block`行内块级元素,菜单浮左`float:left` ```css .nav {text-align:center;} .nav ul {display:inline-block;} .nav li {... 继续阅读 »
2015/08/24 WEB前端 1 Comments 带动态时间/公历/农历日期的js效果代码 ##### 显示动态时间 公历 农历日期的js效果代码 **效果图** ![](https://www.fity.cn/usr/uploads/2015/08/1440406473_4591f802.png) ##### HTML & Javascript代码 ```html ``` ```javascript //日历 var CalendarData=new Array(20); var madd=new Array(12); var TheDate=new Date(); var tgString="甲乙丙丁戊己庚辛壬癸"; var dzString="子丑寅卯辰巳午未申酉戌亥"; var numString="一二三四五六七八九十"; ... 继续阅读 »
2015/08/20 Discuz/CMS No Comments hook discuz插件钩子 discuz hook——discuz插件的钩子//插件钩子(模板/视图中代码) <!--{hook/viewthread_postbottom $postcount}--> //注释:$postcount每页楼层数,楼主为0 。$postcount=0时是可见的,等于别的值是不可见的,所以,就只有在每版的第一楼可见,其他楼层不可以见。 //class_template.php 执行的语句为这句 function hooktags(){} //上述代码等于执行下面的这句代码: ... 继续阅读 »
2015/08/12 PHP/Python/Java No Comments php检测是否https协议访问 php检测访问协议https/http,php判断访问协议/* * 检测链接是否是SSL连接 * @return bool */ function is_https(){ $port = $_SERVER['SERVER_PORT']; if($port == '443'){ $protocol = 'https:';&nbs... 继续阅读 »