http_image_filter_module是nginx提供的集成图片处理模块,支持nginx-0.7.54以后的版本,在网站访问量不是很高磁盘有限不想生成多余的图片文件的前提下可,就可以用它实时缩放图片,旋转图片,验证图片有效性以及获取图片宽高以及图片类型信息,由于是即时计算的结果,所以网站访...
分类:
其他好文 时间:
2014-07-11 22:46:02
阅读次数:
242
1 2 3 topframe 4 5 6 7 41 42 43 44 45 46 47 48 49 50 查看51 52 管理53 维护54 55 56 {% module Work...
分类:
Web程序 时间:
2014-07-11 21:44:30
阅读次数:
352
1. apache下载http://httpd.apache.org/download.cgi2. php下载http://windows.php.net/download/3. 配置apache安装目录下conf/httpd.conf加入如下代码:LoadModule php5_module "....
分类:
Web程序 时间:
2014-07-11 12:16:29
阅读次数:
251
不同的操作系统对应不同的事件驱动机制,在Linux 2.6之后使用epoll机制,对应的事件驱动模块是ngx_epoll_module。Nginx的ngx_event_core_module模块根据操作系统确定使用哪一个事件驱动模块。事件驱动模块在ngx_module_t的ctx通用接口是ngx_event_module_t,定义如下所示:
typedef struct {
ngx_st...
分类:
其他好文 时间:
2014-07-09 12:01:13
阅读次数:
230
1、错误描述
严重:Servlet service() for servlet default threw exception .
org.springframework.beans.factory.NoSuchBeanDefinition Exception:
No bean named 'sessionFactory' is defined.
...
分类:
其他好文 时间:
2014-07-09 11:40:23
阅读次数:
181
python中的Module是比较重要的概念。常见的情况是,事先写好一个.py文 件,在另一个文件中需要import时,将事先写好的.py文件拷贝 到当前目录,或者是在sys.path中增加事先写好的.py文件所在的目录,然后import。这样的做法,对于少数文件是可行的,但如果程序数目很 多,层级...
分类:
编程语言 时间:
2014-07-08 22:24:51
阅读次数:
257
最今在玩2048这款小游戏,游戏逻辑简单,非常适合我这种对于游戏新入行的人来实现逻辑。于是选择了最拿手的ruby语言来实现这款小游戏的主要逻辑。还是挺简单的,加起来4小时左右搞定。
上代码:
require 'optparse'
module Help
HELP_TEXT =< move to left
r =>...
分类:
其他好文 时间:
2014-07-08 18:02:06
阅读次数:
252
从命令行执行django数据库操作,报错:
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before acce...
分类:
数据库 时间:
2014-07-08 17:57:04
阅读次数:
495
1. git send-email is included in an individual package, named "git-email":$ sudo apt-get install git-email2. Configure the SMTP server info after the ...
分类:
系统相关 时间:
2014-07-08 14:49:13
阅读次数:
413
module("PathUtil",
package.seeall)
local _map_data --
地图数据
local _open_list --
开放节点
local _open_map --
开放节点,为了提高性能而加
local _close_map --
关闭节点
local _deleget...
分类:
其他好文 时间:
2014-07-08 10:36:34
阅读次数:
271