2014-02-25 22:321105人阅读评论(1)收藏举报目录(?)[-]HTMLJavaScriptCSS篇C篇Lua篇其他语言篇游戏开发篇在本文中,我们盘点了过去的一年里,最受开发者喜爱的跨平台应用及游戏开发工具,尤以HTML/JS/CSS为众,却也包含使用其他语言进行开发的工具,比如Xa...
分类:
移动开发 时间:
2014-07-06 22:22:20
阅读次数:
321
linux下的ImageMagick安装方法由于没有图形化界面的支持,在Linux(CentOS 6.4 x64)上的配置相对Windows XP还是麻烦了一点。1、下载ImageMagick和JMagick的源文件(http://downloads.jmagick.org/6.4.0/):Imag...
分类:
系统相关 时间:
2014-07-06 21:55:32
阅读次数:
257
第一步:在 /etc/yum.repos.d/ 目录下,建立名叫nginx.repo的软件源配置文件。 文件 nginx.repo 的内容是:[nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/$releaseve...
分类:
其他好文 时间:
2014-07-06 20:40:06
阅读次数:
173
有时启或无缘无故的就会出来数据库连不上的问题。1.重启服务器2.出现了mysql未连接上,3.重新启动mysql,出现5024.执行/etc/init.d/php-fpm start,出现数据库无法连接5.执行service mysqld restart,重启数据库如果=====nginx错====...
分类:
数据库 时间:
2014-07-06 15:49:55
阅读次数:
317
crul新浪微博的时候发现对面用的是nginx服务器,在虎扑足球(挺好的足球论坛)讨论世界杯也发现他们也用这nginx,联想到阿里的tengine也是基于nginx的,觉得有了解一下nginx的必要了。1. nginx安装 nginx安装跟普通开源软件安装相似(都使用makefile),具体流程.....
分类:
其他好文 时间:
2014-07-06 14:05:11
阅读次数:
239
执行启动nginx:/usr/local/nginx/sbin/nginx
错误:/usr/local/nginx/sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
查找:[roo...
分类:
其他好文 时间:
2014-07-06 00:11:52
阅读次数:
205
看了不少人的,主要还是错误处理有点问题,不多说了贴代码:require "lfs"function getpathes(rootpath, pathes) pathes = pathes or {} ret, files, iter = pcall(lfs.dir, rootpath) ...
分类:
其他好文 时间:
2014-07-05 22:07:38
阅读次数:
471
Nginx服务器nginx.conf的配置文件说明, 部分注释收集与网络.#运行用户user www-data;#启动进程,通常设置成和cpu的数量相等worker_processes 1;#全局错误日志及PID文件error_log /var/log/nginx/error.log;pid /va...
分类:
其他好文 时间:
2014-07-05 21:31:22
阅读次数:
183
整型的封装typedef intptr_t ngx_int _t;//有符号整型typedef uintptr_t ngx_uint_t;//无符号整型字符串的封装typedef struct{ size_t len; u_char *data; }ngx_str_t;链表容器...
分类:
其他好文 时间:
2014-07-05 20:55:25
阅读次数:
252
user www www;worker_processes 2;error_log /usr/local/nginx/logs/nginx_error.log crit;pid /usr/local/nginx/logs/nginx.pid;#Specifies the valu...
分类:
其他好文 时间:
2014-07-05 20:48:19
阅读次数:
245