### 錯誤一:windows下會報錯 `[1024]invalid [default store dir]: /tmp/`,在Linux下不報錯。
答:在 `window` 系統下需要修改
把`C:\tp5_alipay2017\extend\AlipayTradePagePay\lotusphp_runtime\Lotus.php` 第 61行注釋掉;
```
//trigger_error("invalid [default store dir]: " . $this->defaultStoreDir);
```
否則會報錯 《錯誤一:`[1024]invalid [default store dir]: /tmp/`》 !
注釋完了再改回來就沒事兒了!!
### 錯誤二:appid should not be NULL!
原因一:配置錯誤了,請檢查詳細配置
原因二:`TP3.2.3` 采用 `$config=C('ALIPAY_CONFIG');` 方法,而 `TP5` 采用的助手函數 `config('alipay')`
### 錯誤三:致命錯誤: Call to undefined function openssl_sign()

解決辦法:
打開php.ini,找到這一行 ;extension=php_openssl.dll,將前面的“;”去掉;
重啟服務器