微信文档地址 https://mp.weixin.qq.com/wiki
微信支付的开发文档https://pay.weixin.qq.com/wiki/doc/api/index.html
- index.php 里面的 连接地址不对 http://paysdk.weixin.qq.com/example/ 应该修改为 ./example/xxxxx
- 待续
微信文档地址 https://mp.weixin.qq.com/wiki
微信支付的开发文档https://pay.weixin.qq.com/wiki/doc/api/index.html
location / {
if ($cookie_firstvisit != “1”) {
return 301 /login.html;
}
}
location = /login.html {
add_header Set-Cookie “firstvisit=1;Max-Age=1000”;
}
centos 6.X 安装过程
yum install https://download.postgresql.org/pub/repos/yum/9.4/redhat/rhel-6-x86_64/pgdg-centos94-9.4-2.noarch.rpm
yum install postgresql94
yum install postgresql94-server
yum install postgresql94-devel
ln -sf /usr/pgsql-9.4/bin/pg_config /usr/bin/
编译php时候加参数 –with-pgsql –with-pdo-pgsql
看代码 pc-jump-m-pc
官方标准做法
https://packagecontrol.io/installation
2)
Preferences->PackageControl->Install package -> ConvertToUTF8
Using Package Control to find, install and upgrade ConvertToUTF8 is the recommended method to install this plug-in.
在windows 2003 64位系统php运行报错:1%不是有效的win32应用程序解决
问题一:php运行报错:1% 不是有效的 win32 应用程序
cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1
问题二: 网页报错:Service Unavailable
经过上面的操作后,以为大功告成了,其实不然。访问网站竟然又报错:Service Unavailable。
解决方法如下:
1)进入命令提示符:开始->运行 cmd
2)执行脚本:
%SYSTEMROOT%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i
说明:%SYSTEMROOT%\表示系统目录,一般是“C:\WINDOWS\”;v1.1.4322是默认.net版本,你也可以改为“v2.0.50727”等其他版本,关键是不要写错路径名,否则执行不成功。