06 2018 档案
Windows安装使用Openssl创建pks p12证书
摘要:什么是OpenSSL? 什么是OpenSSL? OpenSSL是用于安全通信的著名开源密码学工具包,包括主要的密码算法、常见密码和证书封装功能。 1. OpenSSL官网 官方下载地址: https://www.openssl.org/source/ 2. Windows安装方法 OpenSSL官网 阅读全文
posted @ 2018-06-28 14:21 jurui 阅读(1842) 评论(0) 推荐(0)
解决在IE下使用PHPExcel导出时的文件名中文乱码问题
摘要:在使用PHPExcel导出文件时,IE浏览器或者和IE使用同一内核的浏览器需要使用urlencode对中文文件名进行转换才可以正常显示。 阅读全文
posted @ 2018-06-27 16:38 jurui 阅读(341) 评论(0) 推荐(0)
.htaccess目录伪静态规则和目录排除
摘要:Options +FollowSymlinks -Multiviews RewriteEngine On #排除static|themes|uploads目录 RewriteCond $1 !^(static|themes|uploads) #重写规则 RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !... 阅读全文
posted @ 2018-06-25 09:32 jurui 阅读(2898) 评论(0) 推荐(0)
Ubuntu 14 中给 APACHE2安装 SSL 模块
摘要:Ubuntu 14 中给 APACHE2安装 SSL 模块 Enable SSL site on Ubuntu 14 LTS, Apache 2.4.7: 参考 http://blog.csdn.net/Sky_qing/article/details/443032211. 启用SSL模块sudo 阅读全文
posted @ 2018-06-23 09:32 jurui 阅读(559) 评论(0) 推荐(0)
ubuntu服务器初始化配置lamp环境
摘要:1.安装之前先更新系统 sudo apt-get install software-properties-common sudo add-apt-repository ppa:ondrej/php sudo apt-get update sudo apt update 2.安装Apache2sudo 阅读全文
posted @ 2018-06-04 10:26 jurui 阅读(154) 评论(0) 推荐(0)
远程连接MySQL报错ERROR 2003解决办法
摘要:转自https://blog.csdn.net/hjwang1/article/details/51669223 问题代码代码 ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.0.19' (111) ERROR 2003 ( 阅读全文
posted @ 2018-06-02 09:38 jurui 阅读(932) 评论(1) 推荐(0)