一般CI框架第一次使用时: 原地址为: http://127.0.0.1/CI/index.php/hello/index 隐藏入口文件后只需要把地址写成即可: http://127.0.0.1/CI/hello/index 第一步、需要开启Apache的 rewrite 功能 Apache\conf\httpd.conf 修改,然后...
Selenium+PhantomJS使用时报错原因及解决方案
今天在使用selenium+PhantomJS动态抓取网页时,出现如下报错信息: UserWarning: Selenium support for PhantomJS has been deprecated, please use headless versions of Chrome or Firefox instead warnings.warn(‘Selenium s...
python3.6 使用pip 出现 TLS/SSL问题?
今天在在centos 6.9上 安装python3.6后 使用pip 安装模块,提示如下错误: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. 解决方法: 1、安装 openssl openssl-devel (...
CentOS下Redis的安装与简单管理
redis官方发布版本 https://github.com/MicrosoftArchive/redis/releases redis desktop官方版本下载 https://github.com/uglide/RedisDesktopManager 安装Redis需要知道自己需要哪个版本,有针对性的安装,比如如果需要redis GEO这个...
Centos环境下安装mongoDB
安装前注意: 此教程是通过yum安装的.仅限64位centos系统 安装步骤: 1、创建仓库文件: vi /etc/yum.repos.d/mongodb-org-3.4.repo 然后复制下面配置,保存退出 [mongodb-org-3.4] name=MongoDB Repository baseurl=https://repo.mongodb...
响应式网页Html5基本模板架构
个人经常使用结构如下: <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <!--[if lt IE 9]> <scrip...