thinkphp版本 3.2.3 bootstrap的版本3.3.5
先看效果:
1.测试系统 NGINX + PHP
2.修改服务器配置
在nginx.conf 找到client_max_body_size 改为400M
在php.ini 修改一下内容
memory_limit = 400M
post_max_size = 400M
upload_max_filesize = 400M
3.注意SWFupload/index.php
file_size_limit : “400 MB”,
file_upload_limit : 400,
upload_url: “/upload.php”, // 替换成你自己的路径
4.修改upload.php的上传文件类型限制
找到72行 $extension_whitelist = array(“doc”, “txt”, “jpg”, “gif”, “png”, “gz”, “zip”, “rar”, “png”); // Allowed
修改成你自己的文件类型
5.提供文件下载
另附中文帮助手册
1.确定你安装好lnmp 然后备份一下nginx
cd ~
service nginx stop
mv /usr/local/nginx /usr/local/nginx18
2.安装Tengine (备注with前两个-)
cd ~
wget http://tengine.taobao.org/download/tengine-2.0.0.tar.gz
tar zxvf tengine-2.0.0.tar.gz
cd tengine-2.0.0
./configure –with-http_concat_module
make
make install
3.把以前的配置文件拷贝回来
mv /usr/local/nginx/conf/nginx.conf /usr/local/nginx/conf/nginx.confbak
cp /usr/local/nginx18/conf/nginx.conf /usr/local/nginx/conf/nginx.conf
4.编辑/usr/local/nginx/conf/nginx.conf 的对应的Server中添加如下内容
location /static/ {
concat on; #启用concat函数
concat_unique off; #允许返回不同类型的文件内容(js,css同时合并)
concat_delimiter “\n”; #自动在返回每个文件内容的末尾添加换行符
concat_ignore_file_error off; #不要忽略所合并的文件不存在等错误
}
5.重启Tengine
service nginx start
6.测试,你的js和css可以这样写
<link rel="stylesheet" type="text/css" href="/static/css/??style.css,css.css"> <script type="text/javascript" src="/static/js/??jquery.js,slide.js"></script>
CSS:
//一般的高级浏览器都支持
background: rgba(255,255,255,0.1);
//IE8下
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#19ffffff,endColorstr=#19ffffff);
第二句话的意思就是当上一行的透明度不起作用的时候执行。这句话的意思本来是用来做渐变的。但是这个地方不需要渐变。所以两个颜色都设置成了相同的颜色。
这个颜色“#19ffffff”是由两部分组成的。
第一部是#号后面的19 。是rgba透明度0.1的IEfilter值。从0.1到0.9每个数字对应一个IEfilter值。对应关系如运行截图所示。
第二部分是19后面的六位 。这个是六进制的颜色值。要跟rgb函数中的取值相同。比如rgb(255,255,255)对应#ffffff;就是白色。
alert($(window).height()); //浏览器当前窗口可视区域高度
alert($(document).height()); //浏览器当前窗口文档的高度
alert($(document.body).height());//浏览器当前窗口文档body的高度
alert($(document.body).outerHeight(true));//浏览器当前窗口文档body的总高度 包括border padding margin
alert($(window).width()); //浏览器当前窗口可视区域宽度
alert($(document).width());//浏览器当前窗口文档对象宽度
alert($(document.body).width());//浏览器当前窗口文档body的高度
alert($(document.body).outerWidth(true));//浏览器当前窗口文档body的总宽度 包括border padding margin