lnmp的nginx 配置 Thinkphp 艰辛记

本文不定时更新,主要为了记录 linux服务器上搭建lnmp 的水土不服
参考
http://www.cnblogs.com/echosoar/p/4723892.html-EchoSoar
https://bbs.vpser.net/viewthread.php?tid=10068&page=1&fromuid=3#pid29934-军哥

什么是Thinkphp的URL模式

http://document.thinkphp.cn/manual_3_2.html#url

简单点说

PATHINFO模式 1 ?localhost/index.php/Home/Index(需要index.php)
REWRITE模式 2 ??localhost/Home/Index(这样就可以了)

为什么会404 Not?Found

apache?的?PATHINFO 默认开启

nginx 的?PATHINFO 默认关闭

怎么拯救Thinkphp的PATHINFO模式

*我使用了Thinkphp3.2 ? ?lnmp1.3 搭建环境??| ?PATHINFO、REWRITE两种模式二选一*

首先的首先

SSH运行下面的代码

cat > /usr/local/nginx/conf/pathinfo.conf << 'EOF'
set $real_script_name $fastcgi_script_name;
if ($fastcgi_script_name ~ "(.+?\.php)(/.*)") {
set $real_script_name $1;
set $path_info $2;
}
fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
fastcgi_param SCRIPT_NAME $real_script_name;
fastcgi_param PATH_INFO $path_info;
EOF

1.thinkphp配置文件下定义

'URL_MODEL' => 1,////PATHINFO URL模式

2.修改Linux服务器下?/usr/local/nginx/conf/vhost/网站配置文件

  • 用#注释 #include enable-php.conf; 在它下一行添加?include enable-php-pathinfo.conf;
  • 再下一行添加以下代码
    location ~ .*\.php
    {
    	try_files $uri =404;
    	fastcgi_pass  unix:/tmp/php-cgi.sock;
    	fastcgi_index index.php;
    	include fastcgi.conf;//注意,我参考那篇写成 fcgi.conf; 应该是版本不同
    	include pathinfo.conf;
    }
    
    location /status 
    {
    	stub_status on;
    	access_log   off;
    }
    

3.修改nginx.conf ?Linux服务器下?/usr/local/nginx/conf/nginx.conf

  • 用#注释 #include enable-php.conf; 在它下一行添加?include enable-php-pathinfo.conf;
  • SSH里面运行 lnmp nginx restart 来重启nginx

4.修改php.ini? Linux服务器下?/usr/local/php/etc/php.ini

  • cgi.fix_pathinfo=1 修改为?cgi.fix_pathinfo=0
  • SSH里面运行lnmp php-fpm restart 来重启php-fpm

5.好了,现在可以访问 ? localhost/index.php/Home/Index 了

怎么拯救Thinkphp的REWRITE模式

*我使用了Thinkphp3.2 ? ?lnmp1.3 搭建环境 ?| ?PATHINFO、REWRITE两种模式二选一*

 

 

 

 

thinkphp3.2生成验证码

来源:http://www.thinkphp.cn/topic/23989.html

1在控制器里定义一个方法来生成验证码:
public function selfverify(){
$verify = new \Think\Verify($config);
$verify->entry();
}

2模板里面引用验证码:
<IMG onclick="this.src=this.src+'?'+Math.random()" src="{:U('login/selfverify')}" >
注:onclick="this.src=this.src+'?'+Math.random()"意思是点验证码是自已刷新一下.
注:src="{:U('login/selfverify')}" 意思是验证码图的地址是:login控制器下面的selfverify方法
注:src="{:U('login/selfverify')}" 可以用 src="__URL__/selfverify"来代替,效果是一样的

3验证码的校验
在应用的公共模块Application\Common\Common里面的function.php中或自已控制器内写一个校验方法:
function check_verify($code,$id=''){
$verify = new \Think\Verify();
return $verify->check($code,$id);
}

 

Unknown storage engine ‘InnoDB’ InnoDB报错请切换MyISAM引擎

   在phpmyadmin中执行下列语句:
CREATE TABLE `message` (
  `id` tinyint(1) NOT NULL auto_increment,
  `user` varchar(25) NOT NULL,
  `title` varchar(50) NOT NULL,
  `content` tinytext NOT NULL,
  `lastdate` date NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;

问题:phpmyadmin报错——Unknown storage engine 'InnoDB'

解决方法:解决方法:
             1.关闭MySQL数据库
        2.修改my.ini文件,把skip-innodb这行注释掉
        3.打开MySQL数据库
当然把innodb改成MyISAM也行

 

thinkphp 3.2 – UEditor 富文本

源码下载/使用方法:Ueditor-thinkphp-master

注意

  1. ueditor.json放置位置,源代码是CONF_PATH."ueditor.json" 即放置到?Application\Common\Conf目录下
  2. 编辑器实例化建议用
    ue = UE.getEditor('uedit',{
               serverUrl :'{:U('Home/EnrolBack/ueditor')}'
           });
    
    })

    需要公共变量来获取内容。

  3. 获取编辑器内容
    function formsave(){
        alert(ue.getContent());
        return;
    }