0

我正在尝试通过 django 界面上传图片,但我一直遇到此错误

 [Errno 13] Permission denied: '/hello'

/usr/lib/python2.6/os.py 在 makedirs

            makedirs(head, mode)

        except OSError, e:

            # be happy if someone already created the path

            if e.errno != errno.EEXIST:

                raise

        if tail == curdir:           # xxx/newdir/. exists if xxx/newdir exists

            return

    mkdir(name, mode)

...

def removedirs(name):

    """removedirs(path)

    Super-rmdir; remove a leaf directory and all empty intermediate

    ones.  Works like rmdir except that, if the leaf directory is

我有一个由 django 和 web 服务器 apache2 组成的生产设置。

我正在使用 apache2 来提供我的静态文件,所以我没有配置任何我的 django 设置,这意味着我将 MEDIA_URL 和 MEDIA_ROOT 留空

我的媒体文件的完整路径是和权限

/home/tests/media/ 
drwxrwxrwx 3 www-data www-data 4096 Jun 15 16:08 .

我指示我的模型字段存储所有图片,这也具有完全权限并与您的 Python 进程在同一组上运行

/home/tests/media/hello
drwxrwxrwx 3 www-data www-data 4096 Jun 15 16:08 .

这是我的 apache.conf

WSGIPythonEggs /tmp

WSGIScriptAlias / /home/tests/tests/wsgi.py
WSGIPythonPath /home/tests

<Directory /home/tests>
<Files wsgi.py>
Order deny,allow
Allow from all
</Files>
</Directory>


Alias /media/ /home/tests/media/
<Directory /home/tests/media/>
Order deny,allow
Allow from allow
</Directory>

Alias /static/ /home/tests/static/
<Directory /home/tests/static/>
Order deny,allow
Allow from all

drwxrwxrwx 3 www-data www-data 4096 Jun 15 16:08 .

设置.py

MEDIA_ROOT = ''


MEDIA_URL = ''

有人能帮助我吗

4

1 回答 1

1

我不知道您为什么认为应该将媒体设置留空。MEDIA_ROOT应该是/home/tests/media。

于 2013-06-15T17:15:49.617 回答