python
zl19870208
这个作者很懒,什么都没留下…
展开
-
Writing a Gallery App in Django, Part I
One thing that I see the need for on almost every site is a place to put images. Whether it’s a band website, a personal homepage, or a school newspaper, there will be a need for a photo gallery. The ...原创 2013-04-06 11:04:19 · 125 阅读 · 0 评论 -
python django UnicodeDecodeError
在python的Lib\site-packages文件夹下新建一个sitecustomize.py,内容为 [code="python"] # encoding=utf8 import sys reload(sys) sys.setdefaultencoding('utf8') [/code]原创 2013-04-10 22:35:25 · 106 阅读 · 0 评论 -
Exception occurred processing WSGI script with Django
If you are running Django under mod_wsgi on apache you might see errors like "IOError: failed to write data" followed by "Exception occurred processing WSGI script" in your logs, this is because your ...原创 2013-04-11 14:08:01 · 836 阅读 · 0 评论 -
Using gmail to send e-mails from Django
To send an e-mail through django's SMTP server you just have to define a few variables in your settings.py [code="python"] EMAIL_HOST = 'smtp.gmail.com' EMAIL_HOST_USER = 'user@gmail.com' EMAIL_...原创 2013-04-11 14:09:02 · 158 阅读 · 0 评论 -
Django DEBUG=False and ALLOWED_HOSTS
I’ve been working with Django a bit recently on a new project, and testing out 404/500 templates in the tutorial by switching to DEBUG=False was actually resulting in 500 errors on every page. Since i...原创 2013-04-11 14:48:14 · 412 阅读 · 0 评论 -
Django+mod_wsgi+apache+windows 配置备忘
mod_wsgi关于如何配置mod_wsgi+django的官方文档链接如下: [url]https://code.google.com/p/modwsgi/wiki/IntegrationWithDjango[/url] Django官方关于如何配置Django+mod_wsgi的文档链接如下: [url]https://code.djangoproject.com/wiki/...原创 2013-04-12 14:57:40 · 96 阅读 · 0 评论