Typecho在Tengine下pathinfo的问题(/index.php/xxx/)

打开网站的 .conf 文件 server 段 #error_page 404 /404.html; #error_page 502 /502.html; # 添加下面一段 location ~ [^/]\.php(/?.*)$ { fastcgi_split_path_info ^(.+?\.php)(/.+)$; fastcgi_pass unix:/dev/shm/php-cgi.sock; fastcgi_index index.php; include fastcgi.conf; } location ~ [^/]\.p...

MySQL允许远程访问

授权用户远程访问数据库 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password'; FLUSH PRIVILEGES; 授权用户远程访问数据库(带管理权限) GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password'WITH GRANT OPTION; FLUSH PRIVILEGES; 取消授权 REVOKE ALL ON *.* FROM 'root'@'%'; FLUSH PRIVILEGES;

重置MySQL密码

禁用mysql权限表 vi /etc/my.cnf 添加如下一行 skip-grant-tables 重启mysql service mysql restart 进入mysql修改密码 mysql -u root -p mysql> USE mysql; mysql> UPDATE mysql.user SET authentication_string = PASSWORD('MyNewPass') WHERE User = 'root' AND Host = 'localhost'; mysql> FLUSH PRIVILEGES; mysql> quit ...

阿里云 CentOS 7.2 PHP7 LNMP配置

更新系统软件 yum update 安装编译工具 yum install gcc automake autoconf libtool gcc-c++ 安装服务端程序(二选一) (a) nginx 安装nginx源 yum localinstall http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm 安装nginx yum install nginx 启动nginx service nginx start 成功显示: Redirecting to /bin...

编译UnQLite数据库并静态链接C++项目中

前往官网下载最新版的UnQLite源码 VS中File->New->Project From Existing Code 选择C++项目 选择UnQLite源码目录 类型选择Static Lib 完成导入 分别编译32位以及64位Lib并链接到你的工程中 在你的工程中引用unqlite.h文件 需要注意的是 如果是C++项目你需要修改unqlite.h将unqlite.c中#ifdef __cplusplus相关的代码复制到unqlite.h中 否则编译时会发生链接错误

最新文章

最近回复