1,首先更改ssh配置,可以是ssh端口连接不上服务器 cd /etc/ssh/sshd_config vi !$ Port 52113 //ssh默认的连接端口, 改为别人不知道的端口 PermitRootLogin no //root用户都知道的,静止远程登录 PermitEmptyPasswords no //禁止空密码登录 UseDNS no //不使用DNS加入之后,/etc/init.d/sshd restart netstat -lnt 查看端口,或者lsof -i :52113…
在部署WebSite时遇到问题,刚好发现Eric Sun的文章,因此转载做个副本. 原文地址:http://www.cnblogs.com/mingmingruyuedlut/archive/2011/11/04/2235630.html 1: Server Error Internet Information Services 7.5 Error Summary HTTP Error 500.19 - Internal Server Error The requested page canno…
document.onclick = function (e) { var e = e ? e : window.event; var tar = e.srcElement || e.target; if (tar.id != "searchData") { pagesZone.style.display = "none"; } } 以上代码在电脑浏览器和安卓上都能触发alert事件,但是在iOS上却完全没有反应. 如果这个name标签是button的可click事…