摘要: 当使用以下系列函数: ldap_connect()ldap_bind()ldap_search()ldap_get_entries() 需要安装php-ldap扩展 centos下 yum install php-ldap 阅读全文
posted @ 2021-03-22 17:40 唯一客服系统开发笔记 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 这里比较兼容的处理是: server { listen 80; server_name 域名; root 路径; if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; } access_log /var/log 阅读全文
posted @ 2021-03-22 17:21 唯一客服系统开发笔记 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 当使用mcrypt_get_iv_size这个函数的时候 需要安装 php-mcrypt扩展 centos下 yum install php-mcrypt 阅读全文
posted @ 2021-03-22 17:02 唯一客服系统开发笔记 阅读(160) 评论(0) 推荐(0) 编辑
摘要: vim 编辑 /etc/yum.repos.d/nginx.repo [nginx-stable] name=nginx stable repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=1 en 阅读全文
posted @ 2021-03-22 16:19 唯一客服系统开发笔记 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 查看centos的发行版本 cat /etc/redhat-release 查看centos的位数 uname -a 阅读全文
posted @ 2021-03-22 16:14 唯一客服系统开发笔记 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 创建用户和密码 phpfly phpfly: CREATE USER 'phpfly'@'%' IDENTIFIED BY 'phpfly'; 只准操作phpfly数据库 GRANT all ON phpfly.* TO 'phpfly'@'%' ; flush privileges; 阅读全文
posted @ 2021-03-22 16:05 唯一客服系统开发笔记 阅读(87) 评论(0) 推荐(0) 编辑