这是我的代码:
class ManImportsController extends AppController {
public $uppath;
var $name = 'ManImports';
var $uses = array ('RFupload','ManImport');
var $helpers = array ('Html', 'Session','Time', 'Form', 'Js', 'Javascript','DatePicker','Ajax','IrDependentArray','databaseFields','FileUpload.FileUpload', 'showFields');
var $components = array ('FileUpload.FileUpload','Session','RequestHandler');
var $actsAs = array('FileUpload.FileUpload' => array(
'uploadDir' => $this->uppath, // Primary Upload Path
'forceWebroot' => false, // false, files upload to uploadDir
'fields' => array ('name' => 'name', 'size' => 'size',
'date' => 'date', 'created' => 'created',
'type' => 'type'),
'allowedTypes' => array ('csv' => array('application/csv'),
'xls' =>array('application/vnd.ms-excel'),
'xlsx' =>array('application/vnd.ms-excel')),
'required' => false, // true = errors when file isn't uploaded.
'maxFileSize' => false, // false to turns off maxFileSize
'unique' => true, // true will overwrite files with same name.
'massSave' => true,
'fileNameFunction' => false)); //execute the Sha1 function on a filename before saving it (default false)
public function beforeFilter() {
$this->uppath = $this->get_path();
} // end function beforeFilter
function get_path() {
$mach = gethostname();
if ($mach=='my_machine_ID') {
$path = "C:/home/files/uploads/";
} else {
$path = '/home/files/uploads/';
} // end if $mach
return $path;
} // end function get_path
} // end class ManImportsController
问题是通过正确调用函数/方法“get_path”来正确分配“uploadDir”。我尝试了大约4种不同的组合,从cakePHP约定和PHP OOP开始,但到目前为止还没有任何工作。
你看到我在这里缺少什么,你能告诉我正确的方式来打电话给你!
我必须在Linux机器上部署,但需要使用Win7开发机器。
答案 0 :(得分:0)
首先,$ actsAs用于指定模型行为。你永远不应该在控制器中使用$ acts。
仔细阅读the doco - 你要么:
a)在您的模型中通过$ actsAs实现行为(在这种情况下,您根本不需要控制器中的组件)或
b)如果你真的不需要模型并且想要实现Component,那么你将组件包含在你的控制器中,而你根本不需要$ actsAs。 (注意,这是不推荐的方式)
但无论如何,你的控制器中永远不应该有$ actsAs。
编辑:顺便说一句,我显然不知道您的具体要求,或者您正在使用的CakePHP版本,但this upload plugin最近更新并积极维护,而不是您的'{重新使用。