如何解决Your tmp directory is NOT writeable.

解决这个问题有两个方法:


1.Linux下修改tmp目录权限为777,命令为  chmod -R 777 tmp

2.修改tmp目录指向一个可读写的目录,配置文件在/lib/Cake/bootstarp.php:

/**
 * Path to the temporary files directory.
 */
if (!defined('TMP')) {
	define('TMP', APP . 'tmp' . DS);
}

修改   APP . 'tmp'  指向一个新的目录就可以了。


在新浪SAE云平台服务中的cakePHP,不支持本地文件写入,但是它提供了一个公共的可写入得路径,在代码管理-应用调优-预定义变量下,可以查看SAE提供的公共变量和方法等;

 
 

你可能感兴趣的:(如何解决Your tmp directory is NOT writeable.)