我正在关注上传Symfony2中文件的食谱:here
我已经把一切都搞定了,在提交表单后我收到了以下错误:
Unable to create the "/var/www/html/forum/src/Developer/Forum/ForumBundle/Entity/../../../../web/uploads/documents" directory
在stackoverflow上找到此解决方案:here
所以我在项目文件夹中输入:
chown -R www-data web/*
但它仍然无效。问题出在哪里?
可能有用的错误:
{
if (!is_dir($directory)) {
if (false === @mkdir($directory, 0777, true)) {
throw new FileException(sprintf('Unable to create the "%s" directory', $directory));
}