12 2019 档案

摘要:centos6.9安装python3.6.9独立的virtualenv环境,并且能正确引入ssl1.编译安装python3.6环境# 安装依赖yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel 阅读全文
posted @ 2019-12-19 17:03 reblue520 阅读(320) 评论(0) 推荐(0) 编辑
摘要:# 安装数据库和web服务器nginx # 安装虚拟环境 # 在bashrc中加入如下环境变量 # 在开发环境中导出我们的依赖环境列表 C:\WINDOWS\system32>workon mxonline (mxonline) C:\Windows\System32>pip list 将文件导出到 阅读全文
posted @ 2019-12-18 17:01 reblue520 阅读(411) 评论(0) 推荐(0) 编辑
摘要:django入门8之xadmin引入富文本和excel插件 Xadmin引入富文本 插件的文档 https://xadmin.readthedocs.io/en/docs-chinese/make_plugin.html Django ueditor插件的安装 下载地址:https://github 阅读全文
posted @ 2019-12-17 11:56 reblue520 阅读(427) 评论(0) 推荐(0) 编辑
摘要:django入门7之django template和xadmin常用技巧 根据访问路径url来判断 如访问:http://127.0.0.1:8000/course/list 截取request.path的7位如果是 /course 就代表是课程相关的链接 获取用户消息个数 注销用户,登出用户 做除 阅读全文
posted @ 2019-12-17 10:15 reblue520 阅读(300) 评论(0) 推荐(0) 编辑
摘要:mysql5.7同步复制报错故障处理# 报错 1060,具体如下Last_Errno: 1060Last_Error: Coordinator stopped because there were error(s) in the worker(s). The most recent failure 阅读全文
posted @ 2019-12-17 09:29 reblue520 阅读(2047) 评论(0) 推荐(0) 编辑
摘要:Centos7.6使用yum安装PHP7.21、安装源安装php72w,是需要配置额外的yum源地址的,否则会报错不能找到相关软件包。php高版本的yum源地址,有两部分,其中一部分是epel-release,另外一部分来自webtatic。如果跳过epel-release的话,安装webtatic 阅读全文
posted @ 2019-12-16 21:08 reblue520 阅读(2558) 评论(0) 推荐(0) 编辑
摘要:模拟sql注入 编写url 页面登录测试 随意输入aaa/aaa,可以看到是不可能登录成功的 登录框输入 ' OR 1 = 1#空格单引号 'or 1=1#可以看到sql语句拼凑成功绕过验证 阅读全文
posted @ 2019-12-16 17:26 reblue520 阅读(318) 评论(0) 推荐(0) 编辑
摘要:Django的验证码插件 https://github.com/mbi/django-simple-captcha 安装 (mxonline) C:\Users\ws>pip install django-simple-captcha==0.4.6 添加到settings.py中 配置urls.py 阅读全文
posted @ 2019-12-16 17:20 reblue520 阅读(266) 评论(0) 推荐(0) 编辑
摘要:# 启动redis端口6379的配置[root@newcms:/usr/local/nginx/conf]# egrep -v '^#|^$' /usr/local/redis-2.8.7/etc/redis.conf daemonize yespidfile /usr/local/redis-2. 阅读全文
posted @ 2019-12-16 16:31 reblue520 阅读(404) 评论(0) 推荐(1) 编辑
摘要:新建jangostart项目 使用manager.py新建app即单独的应用 创建一个message应用 manage.py@djangostart > startapp message 如果app新建多了都在djangostart下,为了区分apps,新建apps目录将message拖入apps文 阅读全文
posted @ 2019-12-16 11:38 reblue520 阅读(498) 评论(0) 推荐(0) 编辑
摘要:在pycharm中新建django项目 查看django是否安装成功 运行django 设置pycharm快捷键 设置python模板,新建的python文件就会自动生成一些信息 设置django启动配置 阅读全文
posted @ 2019-12-16 11:32 reblue520 阅读(207) 评论(0) 推荐(0) 编辑
摘要:1.安装virtualenv虚拟程序 C:\Users\ws>pip install virtualenv 创建名字为testvir的虚拟环境 C:\Users\ws>virtualenv testvir 进入虚拟环境 C:\Users\ws\testvir\Scripts>activate.bat 阅读全文
posted @ 2019-12-16 11:29 reblue520 阅读(225) 评论(0) 推荐(0) 编辑