如何使用django-registration包?

时间:2013-07-11 05:21:42

标签: python django django-registration

我目前正在研究django-registration软件包。我还配置了我的项目,如下所示,

settings.py

EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.yahoo.com'
EMAIL_HOST_USER = 'myname@yahoo.com'
EMAIL_HOST_PASSWORD = 'mypassword'
EMAIL_PORT = 587

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

urls.py

url(r'^accounts/', include('registration.backends.default.urls')),

enter image description here

当我点击SignUp按钮时,我的网络浏览器正在加载。但是没有来自服务器端的响应以及我的详细信息存储在数据库中。请解决我的问题。谢谢..

1 个答案:

答案 0 :(得分:0)

听起来它可能会在发送注册邮件时挂起。根据雅虎的邮件帮助,您的服务器设置不正确。

  

发送服务器:smtp.mail.yahoo.com。

http://help.yahoo.com/kb/index?page=content&y=PROD_MAIL_ML&locale=en_US&id=SLN3285