希望可以有人帮帮我!
我正在尝试在附件中上传图像并使用 croogo 在页面中插入图像。
当我上传时,我不断收到相同的错误消息:
安全错误 在此服务器上找不到请求的地址。由于“auth”违规,请求被黑。
图片保存在上传文件夹中,但我无法让它们显示在页面上。
希望可以有人帮帮我!
我正在尝试在附件中上传图像并使用 croogo 在页面中插入图像。
当我上传时,我不断收到相同的错误消息:
安全错误 在此服务器上找不到请求的地址。由于“auth”违规,请求被黑。
图片保存在上传文件夹中,但我无法让它们显示在页面上。
Just add some line of code in your controller
public function afterFilter() {
if (($this->request->isPost() || $this->request->isPut()) && empty($_POST) && empty($_FILES)) {
$this->Security->csrfCheck = false;
}
}
OR May be you forgot to define multipart in your form.
echo $this->Form->create('Something', array( 'type' => 'file'));
Hope this help you.