This site will soon be moving to ChiuYau.com. If you have any inquiries, please find contact details at ChiuYau.com.
ChiuYau.com

ChiuYau | 中国 :: Chiu Yau 的博客

2021-01-31

宝塔搭建fiora聊天室

宝塔搭建fiora聊天室
前言由于某种原因,我们有时的某些话,并不适合在主流的聊天应用上说,至少,我认为某些话,会被系统认为有风险,你可能面临禁言冻结或封号,甚至物理攻击。那么,自建一个私人的聊天室在你需要时,帮助你远离这些麻烦。网络的聊天室应用并不少,但要么太过高级没开源,要么太过简洁不适合我这种颜狗。试了不少,看中了Fiora聊天应用,因为它有点可爱有点Q。由于博主不懂各种程序,不通各类各类代码,所以只会用适合小白的宝塔来搭建了。在网上找了很多关于宝塔建Fiora的教程,也喵了各位大佬的文章,并请教了各路大枷,是时候水一篇博文记录下,以便自己需要时再复制粘贴。Fiorafiora聊天室是基于node.js和react由碎碎酱独自开发的开源网页聊天室,使用socket.io模块WebSocket协议通讯,支持Service Worker和PWA.功能丰富,并且简单易上手,很适合作为学习node.js的参考项目,node.js初学者的福音(此条5毛,碎碎酱你看到快给我钱钱。)项目地址: https://github.com/yinxin630/fiora演示站点:fioraZero聊天室MoeChat宝塔...
Chiu Yau
2021-01-31

文章,Git

2021年01月31日
85,611 阅读
0 评论
2021-01-28

How to remove /index.php/ from my URL

How to remove /index.php/ from my URL
I suggest reading this short introduction https://httpd.apache.org/docs/2.4/rewrite/intro.html (15mins) and reference these 2 pages while reading.https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html https://httpd.apache.org/docs/2.4/rewrite/flags.htmlThis is the basic rule to hide index.php from the URL. Put this in your root .htaccess file.mod_rewrite must be enabled with PHP and this will work for the PHP version higher than 5.2.6.RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f Rewri...
2021年01月28日
92,942 阅读
1 评论
2021-01-25

NextCloud Error: Install, Installation fail and 503 Error Service Unavailable

NextCloud Error: Install, Installation fail and 503 Error Service Unavailable
水一篇文章...NextCloud Error: Install, Installation fail and 503 Error Service Unavailable如果你的系统配置什么的都符合安装 NextCloud 的基本要求,然而还是在安装的时候,安装到一半,就被跳转去了 503 Error。那么不用怕,你也不用弄什么。等半个小时到一个小时,再访问你安装 NextCloud 的目录,你就会发现安装成功了。然后进去 NextCloud 后台,也不会报什么奇怪的错误。就是这样。这个花了我几天去领悟的一个事啊。烦死了烦死了
Chiu Yau
2021-01-25

文章

2021年01月25日
72,512 阅读
0 评论
2021-01-25

Unknown collation: 'utf8mb4_0900_ai_ci' - MySQL Error

Unknown collation: 'utf8mb4_0900_ai_ci' - MySQL Error
This article is in English.MySQL Error: Importing database: Unknown collation: 'utf8mb4_0900_ai_ci'This is Github / issues of MySQL....(Something else not important to solve this issue)...Opened the .sql file in Notepad++ ( Alternative: Open the .sql file in Microsoft Word ) and hit CTRL+H ( Alternative: [Microsoft Word] hit CTRL + F ) to find and replace the string “utf8mb4_0900_ai_ci” and replaced it with “utf8mb4_general_ci“.It worked for me ,hope it will work for u as well....(Something e...
2021年01月25日
103,264 阅读
0 评论