简体   繁体   English

在Django settings.py文件中指定STATIC_ROOT STATIC_URL时出错

[英]Getting error in specifying STATIC_ROOT STATIC_URL in Django settings.py file

I am new to django and web application development. 我是django和Web应用程序开发的新手。 I am trying to add css to my demo site (using django v1.4 on windows7) and getting the following error. 我正在尝试将css添加到我的演示站点(在windows7上使用django v1.4)并收到以下错误。 I have tried all, and wasted almost 3-4 hrs. 我已经尝试了所有,浪费了将近3-4小时。 still not been able to resolve it. 仍然无法解决它。

I think I am doing some silly mistake, can anyone please let me know where I am making the blunder. 我想我在做一些愚蠢的错误,任何人都可以让我知道我在哪里犯错误。

either when I do 要么当我这样做

http://localhost:8000/static/css.css

or 要么

python manage.py collectstatic

I get: 我明白了:

TypeError: coercing to Unicode: need string or buffer, tuple found TypeError:强制转换为Unicode:需要字符串或缓冲区,找到元组

setting.py file is: setting.py文件是:

import os
PROJECT_PATH = os.path.abspath(os.curdir).replace('\\', '/')

DEBUG = True
TEMPLATE_DEBUG = DEBUG

ADMINS = (
    # ('Your Name', 'your_email@example.com'),
)

MANAGERS = ADMINS

DATABASES = {
    'default': {
        'ENGINE'   : 'django.db.backends.mysql',        # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME'     : 'ecomstore',                       # Or path to database file if using sqlite3.
        'USER'     : 'vivek',                           # Not used with sqlite3.
        'PASSWORD' : 'linux',                           # Not used with sqlite3.
        'HOST'     : '',                                # Set to empty string for localhost. Not used with sqlite3.
        'PORT'     : '',                                # Set to empty string for default. Not used with sqlite3.
    }
}

TIME_ZONE     = 'America/Chicago'
LANGUAGE_CODE = 'en-us'
SITE_ID       = 1
USE_I18N      = True
USE_L10N      = True
USE_TZ        = True
MEDIA_ROOT    = ''
MEDIA_URL     = ''
STATIC_ROOT   = os.path.join(PROJECT_PATH,'static').replace('\\', '/'),
STATIC_URL    = '/static/'

STATICFILES_DIRS = (
    os.path.join(PROJECT_PATH, 'static').replace('\\', '/'),
)

STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
    'django.contrib.staticfiles.finders.DefaultStorageFinder',
)

SECRET_KEY = 'dyi(9i9e*oy#7o#-z$vcnk%d$2)n!)t=3(cqo5=prtp$7e2(*h'

TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
)

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
)

ROOT_URLCONF = 'ecomstore.urls'

WSGI_APPLICATION = 'ecomstore.wsgi.application'

TEMPLATE_DIRS = (
    os.path.join(PROJECT_PATH, 'templates').replace('\\', '/'),
)

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
)

LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,
    'filters': {
        'require_debug_false': {
            '()': 'django.utils.log.RequireDebugFalse'
        }
    },
    'handlers': {
        'mail_admins': {
            'level': 'ERROR',
            'filters': ['require_debug_false'],
            'class': 'django.utils.log.AdminEmailHandler'
        }
    },
    'loggers': {
        'django.request': {
            'handlers': ['mail_admins'],
            'level': 'ERROR',
            'propagate': True,
        },
    }
}
STATIC_ROOT   = os.path.join(PROJECT_PATH,'static').replace('\\', '/'),

取出,在该行的末尾。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM