by Rain Chu | 7 月 10, 2022 | Raspberry Pi
用 Raspberry Pi 來實作一個簡單、靈活、好控管、安全、便宜的好用VPN,只要有一個固定IP,一台 Raspberry Pi,接上網路就可以擁有一個 VPN Server,Client 端則是下載 OpenVPN,就可以連上 PiVPN。
curl -L https://install.pivpn.io | bash
安裝非常的容易,安裝完畢後,需要用到的指令也很容易,列舉如下
「pivpn add」添加新用戶帳號跟密碼
「pivpn list」列出目前所有有效的帳號
「pivpn revoke」刪除某個用戶的帳號
「pivpn uninstall」卸載 PiVPN
官方網址:https://pivpn.io/
by Rain Chu | 7 月 10, 2022 | PHP, wordpress
對於使用 WordPress 來做會員管理的人,需要針對註冊、登入、登出等會員行未做個細節的控管,第一步應該要先修改會員註冊後,要給他一個反應頁面,通常是「Thank You」的頁面,謝謝他的註冊,告知他註冊已經成功並且下一個步驟應該往那邊去,例如去領註冊獎勵金。
/**
* 註冊後,跳轉到指定頁面
*/
function auto_login_new_user( $user_id ) {
wp_set_current_user($user_id);
wp_set_auth_cookie($user_id);
// 跳轉到 thank you 網頁
//wp_redirect( home_url() );
wp_redirect('/thank-you/');
exit;
}
add_action( 'user_register', 'auto_login_new_user');
https://www.wpdaxue.com/user-first-login-redirect.html
by Rain Chu | 7 月 10, 2022 | PHP, wordpress
我們可以用 php 程式,來取得使用者的資訊,最重要的當然是 User ID 的取得,能取得 User ID 才能進行使用者的資訊取得,取得uid的方法百百種,這邊列出四種常用的場景,取得當下登入的使用者ID,另用會員的關鍵資料取得會員ID,利用文章取得作者ID,在商店中取得客戶ID,
1.get_current_user_id()
$current_user_id = get_current_user_id();
$current_user = wp_get_current_user();
$current_user_id = $current_user->ID;
2.使用會員資訊取得ID,get_user_by()
利用Email取的ID
利用登入帳號
$the_user = get_user_by('login', 'rain');
$the_user_id = $the_user->ID;
3.利用文章資訊取得作者 ID
$my_post = get_post( $id ); // $id - Post ID
echo $my_post->post_author; // print post author ID
4.在woocommerce中取得訂單的客戶ID
$order = wc_get_order( 123 ); // your order ID
$customer_id = $order->get_customer_id(); // or $order->get_user_id() – the same
by Rain Chu | 7 月 9, 2022 | 創新創業, 新創, 科技, 辦公日常
線上會議發展至今,從單純的語音會議,到了單純的線上視訊會議,到了前年的二次元遊戲的辦公室或是學校,現在不但有 3D 擬真的,甚至還有線上喝酒開會專用,正是白花齊放的年代,除了大家常用的 Google meet, Zoom, Teams, WebEx,本次還介紹了大家比較少看到,但都是超好用的線上會議系統,例如 Gather Town, Jitsi Meet
7.branch https://www.branch.gg/ 遊戲二次元類
10.Spatial https://spatial.io/ 3D元宇宙類
11.GlueWork https://glue.work/ 3D元宇宙類
12.Tacnom https://tacnom.com/ 邊喝邊開類
宅在家的商業模式是賣酒,想喝想交友的就到這邊起各酒局,邊開會還可以訂酒,會有人送酒給你喝
by Rain Chu | 7 月 9, 2022 | web
除了 wordpress ,我們也可以從最基本的網頁編輯起,今天可以來推薦 2022 年最多新創採用的線上網頁編輯器。
近期留言