随笔- 88
文章- 0
评论- 2
阅读-
18万
随笔分类 - PHP框架
Nginx 支持 CI 框架的配置并禁止使用 ip 访问
摘要:#CIserver { listen 80; server_name www.ci.com; index index.php index.html index.htm; root "/servers/apps/CI"; location ~ \\.php{ fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; ##########################################pathinfo 模式 set $path_info ""; set $real_script_nam...
阅读全文
一些 PHP 框架
摘要:1. symfony2. yii中文资料:http://www.yiichina.org/3. codeIgniter中文资料:http://codeigniter.org.cn/user_guide/index.html4. cakePHP中文资料:http://book.cakephp.org/cn5. zendFramework中文资料:http://framework.zend.com/manual/zh/(部分中文)
阅读全文
Zend Framework 入门随笔 配置与注意事项
摘要:入门教程推荐:http://akrabat.com/zend-framework-tutorial/配置环境从 Zend Framework 的网页上下载最新版本.我的是 ZendFramework-1.11.10-minimal 版本. 解压后, 把整个目录拷贝到一个理想的地方, 比如:C:\ZF\library.打开 php.ini 文件,确认包含 Zend 目录的路径在 include_path 已定义。php.ini 中应有类似下面的条目:Linux: include_path = ".:/ZF/library"Windows: include_path = &qu
阅读全文