摘要:
如果出现这个错误 “no such table:django_session” 这个错误跟Session的机制有关,既然要从Web服务器端来记录用户信息,那么一定要有存放用户session id对应信息的地方才行。所以,我们需要创建django_session表。别着急!Django已经帮我们准备好 阅读全文
摘要:
1.首先要进入本地环境把项目所需要的环境导出来 pip freeze >requirements.txt 2.安装python3.6.8版本 3.安装得到的requirements.txt 命令:pip3 install -r requirements.txt 全部安装 如果遇到HTTPConnec 阅读全文
摘要:
最近部署了一个Django项目 部署过程:https://www.cnblogs.com/erhangboke/p/11678486.html 按照教程都部署好了,但是请求时发现报504超时错误 问题定位: 由于是走了nginx代理,所以可能和nginx配置相关,于是找解决方法 解决过程: 1.查阅 阅读全文
摘要:
在ubuntu下部署Django服务,使用uwsgi时报错 命令:uwsgi --http :8001 --wsgi-file test.py 报错信息:uwsgi: error while loading shared libraries: libpcre.so.1: cannot open sh 阅读全文
摘要:
报错信息: HTTPConnectionPool(host=''xx.xx.xx.xx', port=xx): Max retries exceeded with url: (Caused by NewConnectionError('<urllib3.connection.HTTPConnecti 阅读全文
摘要:
执行python3命令,回车 root@rrdloan-server:~/anaconda2/bin# python3Python 3.6.8 (default, Oct 7 2019, 12:59:55) [GCC 8.3.0] on linuxType "help", "copyright", 阅读全文
摘要:
大家都知道启动Django服务时使用该命令python manage.py runserver启动 Performing system checks... System check identified no issues (0 silenced).October 12, 2019 - 10:57: 阅读全文
摘要:
Django新增一个content字段时,报错: django.db.utils.OperationalError: (1054, "Unknown column 'autotest_node.content' in 'field list'") 暴力破解: 1、删除app下migrations下除 阅读全文
摘要:
报错信息: django.db.utils.OperationalError: (1091, "Can't DROP 'content'; check that column/key exists") 可能数据库中的字段结构已经完成了此字段的修改但是在 python manage.py makemi 阅读全文
摘要:
为什么要用INI文件?如果我们程序没有任何配置文件时,这样的程序对外是全封闭的,一旦程序需要修改一些参数必须要修改程序代码本身并重新编译,这样很不好,所以要用配置文件,让程序出厂后还能根据需要进行必要的配置;配置文件有很多如INI配置文件,XML配置文件,还有就是可以使用系统注册表等。 本文主要是为 阅读全文