by Rain Chu | 3 月 5, 2023 | Wallet, web, 加密貨幣, 區塊鏈
Views: 7
官方文件
https://github.com/WalletConnect
https://github.cocm/WalletConnect/walletconnect-docs
React 與 WallectConnect
https://github.com/WalletConnect/web-examples/tree/main/dapps/react-dapp-v2
https://react-app.walletconnect.com/
C# 與 WalletConnect
https://github.com/WalletConnect/WalletConnectSharp/tree/main/WalletConnectSharp.Desktop
參考資料
如何使用WalletConnect,https://academy.binance.com/zt/articles/how-to-use-walletconnect
WalletConnect 简单示例
DEMO
https://github.com/PureStake/moonbeam-walletconnect-demo
https://moonbeam-walletconnect-demo.netlify.app/
https://example.walletconnect.org/
by Rain Chu | 1 月 19, 2023 | IIS, PHP, web, Windows, wordpress
Views: 16
在 windows server 的 iis 下,預設情況下安裝 php 架構的 wordpress 總是會遇到很多的困難,像是如果遭遇到想要訪問 wordpress 目錄下的目錄資料,例如:https://rain.tips/uploads/,會跟你說找不到資料,原因是wordpress所有的入口要先透由 index.php 去做路由,解決方案則是用 web.config 去指定路由要透過 index.php 即可
請在web.config檔案中添加 rewrite rules
<rewrite>
<rules>
<rule name="WordPress: https://yoururl.com" patternSyntax="Wildcard">
<match url="*"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="index.php"/>
</rule></rules>
</rewrite>
最後會長成這樣子
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="WordPress: https://yoururl.com" patternSyntax="Wildcard">
<match url="*"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="index.php"/>
</rule></rules>
</rewrite>
</system.webServer>
</configuration>
同場加映
by Rain Chu | 7 月 9, 2022 | web
Views: 0
除了 wordpress ,我們也可以從最基本的網頁編輯起,今天可以來推薦 2022 年最多新創採用的線上網頁編輯器。
近期留言