Loading

邢栋博客

select标签样式美化

js部分 <script type="text/javascript"> var childCreate=false; function Offset(e) //取标签的绝对位置 { var t = e.offsetTop; var l = e.offsetLeft; var w = e.offsetWidth; var h = e.offsetHeight-2; while(e=e.offsetParent) {...

nginx下支持thinkphp3.1.3的url重写

nginx下支持thinkphp的url重写,项目分组后localhost://project/index.php/Admin //二级目录 location /project/ { index index.php; if (!-e $request_filename) { rewrite ^/project/(.*)$ /project/index.php/$1 last; break; } } location ~ .+.php($|/) { set $script $uri; set $path_info "/"; if ($...

centos6.5下php安装redis扩展

先下载扩展文件: 下载:https://github.com/nicolasff/phpredis/archive/2.2.4.tar.gz(我用的是这个) 上传到根目录下的lnmp下(我自己新建的) cd /lnmp/ tar zxvf phpredis-2.2.4.tar.gz cd phpredis-2.2.4 /usr/local/bin/phpize #用phpize生成configure配置文件(我的phpize路径是这样) ./configure --with-php-config=/usr/local/bin/php-config #配...

css实现背景透明,文字不透明

background:rgba(255, 255, 255, 0.5) none repeat scroll 0 0 !important; filter:Alpha(opacity=50); background:#fff;/ 给区域内的字div标签加上position:relative 才能实现文字不透明

centos下安装配置redis

我用的centos版本是6.5 下载软件包 Wget http://redis.googlecode.com/files/redis-2.4.17.tar.gz 在根目录下 新建一个目录 lnmp(用来放配置文件的) 把文件上传上去(我是用ssh传的) 编译: tar zxvf. redis-2.4.17.tar.gz cd redis-2.4.17 make cd src make install 移动文件 便于管理 mkdir -p /usr/local/redis/bin mkdir -p /usr/local/redis/e...

近期的学习任务

1.掌握一种框架 (五颗星) 2.看完《高性能mysql》这本书 (四颗星) 3.看完《构建高可用linux服务器》这本书 (三颗星) 4.深入了解下redis memcahce mongodb (三点五颗星) 5.扎实下自己的js jq 三点五颗星 要求:在月底之前完成

textarea 在浏览器中固定大小和禁止拖动

给textarea 加个样式 (这个方法直接) resize: none;

putty连接linux中文乱码问题

vim /etc/sysconfig/i18n 把“LANG=”zh_CN.UTF-8″”改为 “LANG=”zh_CN.GB18030″”,完成后保存重新登录即可。

Oracle VM VirtualBox虚拟机上配置nginx后,本机无法访问

Oracle VM VirtualBox虚拟机上配置nginx后,本机无法访问 在centos6.5 上配置linux+nginx+mysql+php,出现用本机访问虚拟机的时候不能访问的问题 防火墙可以ping通虚拟机,虚拟机也可以ping通防火墙。 做如下处理: [root@localhost html]# /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT [root@localhost html]# /etc/init.d/iptables save [root@localhost html]#...

yum install nginx 出现warning

warning: rpmts_HdrFromFdno: Header V3 RSA/SHA1 Signature, key ID 4520afa9: NOKEY Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY.art.txt The GPG keys listed for the "CentOS / Red Hat Enterprise Linux 6 - atomicrocketturtle.com" repository are already installed ...