- 浏览: 80928 次
- 性别:
- 来自: 南京
-
最新评论
文章列表
自己经常用到的命令
top 内存
df -h 文件系统
du -sh * 当前文件夹下 文件大小
hostname 查看主机名
cat /etc/sysconfig/network 修改主机名 就是修改这个文件哦
getconf LONG_BIT 系统位数
uname -a 查看内核版本
lsb_release -a 查看linix版本号
vi ...
警告:gzinflate() 已被禁用出于安全原因,诸如类似的提示,通常是你的php禁止了对应函数,请打开php.ini搜索
disable_functions =
看看里面是否有包含的函数名称,例如现在很多php.ini做过安全都禁止了以下常见函数:
disable_functions =exec,passthru,system,popen,pclose,shell_exec,proc_open,dl,chmod,gzinflate
删除自己需要的函数,然后重启web服务器,就可以了
很多情况下,我们需要在网页上弹出dialog,需要水平垂直居中。而且可以做到自动适应窗口变化
对于页面绝对定位,垂直居中
var h = $(this).height();
var oh = $(this).outerHeight();
var mt = (h + (oh - h)) / 2;
$(this).css("margin-top", "-" + mt + "px");
$(this).css("top", "50%");
$(this).css(&q ...