如何在本地计算机上设置Codeigniter上载库的上载路径?

时间:2010-04-01 20:33:28

标签: codeigniter

我将以下路径设置为Codeigniter附带的上传库的upload_path。

 $this->upload_config['upload_path'] = './uploads/working/';

此路径在远程服务器上正常工作。但是,当我在本地调试时,它会失败。

我设置了权限,因此目录是可写的。

我在上传库中添加了日志记录,发现它在库中未通过此检查:

! @is_dir($this->upload_path)

我的开发机器是运行10.6.2的MacBook Pro。我正在使用MAMP Pro。我的目录结构如下:

app
cache
ci_1_7_2
html
 - css
 - images
 - index.php
 - js
 - uploads
   - large
   - normal
   - small
   - working

非常感谢任何帮助。谢谢你的时间。

2 个答案:

答案 0 :(得分:9)

当uploads文件夹在/ application /中时,您可以使用:

$this->upload_config['upload_path'] = APPPATH . 'uploads/working/';

但是对于这种结构,硬编码绝对路径或使用:

$this->upload_config['upload_path'] = realpath(dirname(__FILE__)). '/uploads/working/';

请注意,APPPATH包含一个尾部斜杠,但realpath将删除尾部斜杠。

答案 1 :(得分:3)

当其他所有方法都失败时,请使用绝对路径。