次のZendFrameworkフォームが正しく機能していません。
<?php
class Application_Form_Auth extends Zend_Form
{
public function init()
{
$this->setAttrib('enctype', 'multipart/form-data');
$this->setMethod('post');
$username = $this->createElement('text','username');
$username->setLabel('Username:')
->setAttrib('size',10);
$password = $this->createElement('password','password');
$password->setLabel('Password')
->setAttrib('size',10);
$file = new Zend_Form_Element_File('file');
$file->setLabel('File')
->setDestination('/data/uploads')
->setRequired(true);
$reg = $this->createElement('submit','submit');
$reg->setLabel('save');
$this->addElements(array(
$username,
$password,
$file,
$reg
));
return $this;
}
}
?>
問題は次の場所にあります。
->setDestination('/data/uploads')
コードからこの行を削除すると、フォームは正しく機能しています。アップロードフォルダが/data/uploads
あり、ディレクトリのアクセス許可が設定されて777
います。どうすればこれを解決できますか?ありがとう