Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/django/22.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 在django中加载图像时的可疑操作_Python_Django_Amazon Web Services_Amazon S3_Static - Fatal编程技术网

Python 在django中加载图像时的可疑操作

Python 在django中加载图像时的可疑操作,python,django,amazon-web-services,amazon-s3,static,Python,Django,Amazon Web Services,Amazon S3,Static,我正在django中部署一个web应用程序,有一个页面从我的静态文件加载一些图像,返回以下错误: SuspiciousOperation at /wallet Attempted access to '/coins/' denied. 我一直在读,这是因为媒体文件,但我不明白,因为所有其他静态文件加载正确。我正在使用aws的s3 这是我的s3配置文件: import datetime import os BASE_DIR = os.path.dirname(os.path.dirname(os

我正在django中部署一个web应用程序,有一个页面从我的静态文件加载一些图像,返回以下错误:

SuspiciousOperation at /wallet
Attempted access to '/coins/' denied.
我一直在读,这是因为媒体文件,但我不明白,因为所有其他静态文件加载正确。我正在使用aws的s3

这是我的s3配置文件:

import datetime
import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
AWS_ACCESS_KEY_ID = "whatever"
AWS_SECRET_ACCESS_KEY = "whatever"
AWS_STORAGE_BUCKET_NAME = 'xxx'
AWS_S3_CUSTOM_DOMAIN = '%s.s3.us-east-2.amazonaws.com' % AWS_STORAGE_BUCKET_NAME
AWS_S3_OBJECT_PARAMETERS = {
    'CacheControl': 'max-age=86400',
}
AWS_LOCATION = 'static'

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, '../static'),
]
STATIC_URL = 'https://%s/%s/' % (AWS_S3_CUSTOM_DOMAIN, AWS_LOCATION)
STATICFILES_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'
MEDIA_URL = ''
MEDIA_ROOT = ''
调试模式下的整个错误如下:

Environment:


Request Method: GET
Request URL: http://ip/wallet

Django Version: 2.0.5
Python Version: 3.6.6
Installed Applications:
['django.contrib.admin',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.messages',
 'django.contrib.staticfiles',
 'profiles',
 'portfolios',
 'django_extensions',
 'rest_framework',
 'corsheaders',
 'storages']
Installed Middleware:
['django.middleware.security.SecurityMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.common.CommonMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 'django.middleware.clickjacking.XFrameOptionsMiddleware',
 'corsheaders.middleware.CorsMiddleware',
 'django.middleware.common.CommonMiddleware']


Template error:
In template /home/ubuntu/chimpy/templates/base.html, error at line 54
   Attempted access to '/coins/' denied.
   44 : <div class="sidebar-user">
   45 :     {% load static %}
   46 :     {#        <div class="sbuser-pic"><a href="/user"><img src="{% static 'batman-for-facebook.jpg' %}" alt="" class="sbuser-pic-image"></a></div>#}
   47 :     <div class="sbuser-welcome">
   48 :         <h4 class="sbuser-name">Hola {{ request.user }}</h4>
   49 :     </div>
   50 : </div>
   51 : <div class="sb-menu">
   52 :     <ul class="sb-ul">
   53 :         <li id="dashboard" class="{% if active == 'dashboard' %}active{% endif %}"><i class="fas fa-sitemap"></i>Panel</li>
   54 :         <li id="wallet" class="{% if  active == 'wallet' %}a ctive{% endif %}"><i class="fas fa-coins"></i>Cartera</li>
   55 :         <li id="history" class="{% if active == 'history' %}active{% endif %}"><i class="fas fa-history"></i>Histórico</li>
   56 :         <li id="user" class="{% if active == 'settings' %}active{% endif %}"><i class="fas fa-cogs"></i>Ajustes</li>
   57 :     </ul>
   58 :     <ul id="responsive-menu">
   59 :         <li id="app-name"><a href="/dashboard">Suribit</a></li>
   60 :         <li id="blank-space"></li>
   61 :         <li id="hello">Hola {{ request.user }}</li>
   62 :         <li id="logout"><button class="logout" onclick="location.href = '/logout';"><i class="fas fa-power-off"></i> Desconectarse </button></li>
   63 : {#        make it a double button#}
   64 :     </ul>


Traceback:

File "/home/ubuntu/django_env/lib/python3.6/site-packages/storages/backends/s3boto3.py" in _normalize_name
  377.             return safe_join(self.location, name)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/storages/utils.py" in safe_join
  79.         raise ValueError('the joined path is located outside of the base path'

During handling of the above exception (the joined path is located outside of the base path component), another exception occurred:

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/core/handlers/exception.py" in inner
  35.             response = get_response(request)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/core/handlers/base.py" in _get_response
  128.                 response = self.process_exception_by_middleware(e, request)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/core/handlers/base.py" in _get_response
  126.                 response = wrapped_callback(request, *callback_args, **callback_kwargs)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/contrib/auth/decorators.py" in _wrapped_view
  21.                 return view_func(request, *args, **kwargs)

File "/home/ubuntu/chimpy/portfolios/views.py" in portfolio_edit
  149.                        'user_lapse': user_lapse})

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/shortcuts.py" in render
  36.     content = loader.render_to_string(template_name, context, request, using=using)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/loader.py" in render_to_string
  62.     return template.render(context, request)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/backends/django.py" in render
  61.             return self.template.render(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/base.py" in render
  175.                     return self._render(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/base.py" in _render
  167.         return self.nodelist.render(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/base.py" in render
  943.                 bit = node.render_annotated(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/base.py" in render_annotated
  910.             return self.render(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/loader_tags.py" in render
  155.             return compiled_parent._render(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/base.py" in _render
  167.         return self.nodelist.render(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/base.py" in render
  943.                 bit = node.render_annotated(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/base.py" in render_annotated
  910.             return self.render(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/loader_tags.py" in render
  67.                 result = block.nodelist.render(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/base.py" in render
  943.                 bit = node.render_annotated(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/template/base.py" in render_annotated
  910.             return self.render(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/templatetags/static.py" in render
  106.         url = self.url(context)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/templatetags/static.py" in url
  103.         return self.handle_simple(path)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/django/templatetags/static.py" in handle_simple
  118.             return staticfiles_storage.url(path)

File "/home/ubuntu/django_env/lib/python3.6/site-packages/storages/backends/s3boto3.py" in url
  561.         name = self._normalize_name(self._clean_name(name))

File "/home/ubuntu/django_env/lib/python3.6/site-packages/storages/backends/s3boto3.py" in _normalize_name
  380.                                       name)

Exception Type: SuspiciousOperation at /wallet
Exception Value: Attempted access to '/coins/' denied.
环境:
请求方法:获取
请求URL:http://ip/wallet
Django版本:2.0.5
Python版本:3.6.6
已安装的应用程序:
['django.contrib.admin',
“django.contrib.auth”,
“django.contrib.contenttypes”,
“django.contrib.sessions”,
“django.contrib.messages”,
“django.contrib.staticfiles”,
"简介",,
“投资组合”,
“django_扩展”,
“rest_框架”,
“护卫舰”,
“存储”]
已安装的中间件:
['django.middleware.security.SecurityMiddleware',
“django.contrib.sessions.middleware.SessionMiddleware”,
'django.middleware.common.CommonMiddleware',
“django.middleware.csrf.CsrfViewMiddleware”,
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.xFrameOptions中间件',
“corsheaders.middleware.Corsmidlware”,
'django.middleware.common.CommonMiddleware']
模板错误:
在template/home/ubuntu/chimpy/templates/base.html中,第54行出现错误
尝试访问“/coins/”被拒绝。
44 : 
45:{%load static%}
46 :     {#        #}
47 :     
48:Hola{{request.user}
49 :     
50 : 
51 : 
52:
    53:
  • 面板
  • 54:
  • Cartera
  • 55:
  • Histórico
  • 56:
  • Ajustes
  • 57:
58:
    59:
  • 60:
  • 61:
  • Hola{{request.user}
  • 62:
  • 说明
  • 63:{把它做成一个双按钮} 64:
回溯: 文件“/home/ubuntu/django_env/lib/python3.6/site packages/storages/backends/s3boto3.py”在_normalize_name中 377返回安全连接(self.location,name) 文件“/home/ubuntu/django_env/lib/python3.6/site packages/storages/utils.py”在safe_join中 79raise VALUERROR('连接的路径位于基本路径之外' 在处理上述异常(连接路径位于基本路径组件之外)期间,发生了另一个异常: 文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/core/handlers/exception.py” 35.响应=获取响应(请求) 文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/core/handlers/base.py”在_get_响应中 128.response=self.process\u异常\u由\u中间件(e,请求) 文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/core/handlers/base.py”在_get_响应中 126.response=wrapped\u callback(请求,*callback\u args,**callback\u kwargs) 视图中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/contrib/auth/decorators.py” 21.返回视图_func(请求,*args,**kwargs) 公文包编辑中的文件“/home/ubuntu/chimpy/portfolions/views.py” 149.“用户失效”:用户失效}) render中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/shortcuts.py” 36content=loader.render_to_string(模板名称、上下文、请求、using=using) render_to_字符串中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/loader.py” 62返回template.render(上下文、请求) render中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/backends/django.py” 61返回self.template.render(上下文) render中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/base.py” 175返回self.\u呈现(上下文) 文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/base.py”在_render中 167返回self.nodelist.render(上下文) render中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/base.py” 943位=节点。带注释的渲染(上下文) render_注释中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/base.py” 910返回self.render(上下文) render中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/loader_tags.py” 155返回编译的\u父对象。\u呈现(上下文) 文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/base.py”在_render中 167返回self.nodelist.render(上下文) render中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/base.py” 943位=节点。带注释的渲染(上下文) render_注释中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/base.py” 910返回self.render(上下文) render中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/loader_tags.py” 67结果=block.nodelist.render(上下文) render中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/base.py” 943位=节点。带注释的渲染(上下文) render_注释中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/template/base.py” 910返回self.render(上下文) render中的文件“/home/ubuntu/django_env/lib/python3.6/site packages/django/templatetags/static.py” 106url=self.url(上下文)