0

以下 Zend Framework 表单无法正常工作:

<?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我该如何解决这个问题?谢谢

4

1 回答 1

1

您是否使用任何域(没有本地主机)。如果是,您应该使用数据/上传。数据目录应位于公共目录中。如果您有任何域,则应使用带有 baseUrl 的目标路径。

于 2012-07-23T03:57:38.450 回答