Loading... ColibriSM这是一个用于共享媒体内容的现代平台,类似于 twitter、instagram 等社交网络。 ColibriSM是创建自己的社交平台的最佳选择之一。 前两天有个这样的想法,汇聚一群有共同爱好的打造一个论坛,结果突然放弃了哈哈哈哈,这玩意太像twitter了,简直是推特套皮,以前也有过做论坛的冲动,但如何起步始终是一个严峻的问题,还是分享一下部署的过程趴。 #### 环境 ``` PHP 5.5 or Higher MySQLi GD Library MBstring cURL PHP Zip Module ``` #### 安装 因为这个程序是付费的,但程序本身并没有授权机制,所以网上有开心版的很多,我这里找了个1.3.0nulled的,不要问我为啥官方最新版是1.2.9但为啥我分享的是1.3.0,因为在1.2.9更新后几天紧急发布了1.3.0版本,目前并没有正式的发布 下载链接:<div class="hideContent">此处内容需要评论回复后(审核通过)方可阅读。</div> 这里使用宝塔面板安装,先下载源码然后上传到网站目录中,如果需要上传视频需要去php设置中删除`()exec`函数的禁用,老样子进入`域名/install` 访问安装界面并检查环境要求  点击继续老样子填写数据库信息 填写完成后点击安装就完事了 然后配置伪静态 ``` # @*************************************************************************@ # @ Software author: Mansur Altamirov (Mansur_TL) @ # @ Author_url 1: https://www.instagram.com/mansur_tl @ # @ Author_url 2: http://codecanyon.net/user/mansur_tl @ # @ Author E-mail: vayart.help@gmail.com @ # @*************************************************************************@ # @ ColibriSM - The Ultimate Modern Social Media Sharing Platform @ # @ Copyright (c) 2020 - 2021 ColibriSM. All rights reserved. @ # @*************************************************************************@ location /404 { rewrite ^/404(\/|)$ /index.php?app=err404; } location /500 { rewrite ^/500(\/|)$ /index.php?app=err500; } location /download_info { rewrite ^/download_info(\/|)$ /index.php?app=download_info; } location /native_api { rewrite "^/native_api/(\w{3,32})/(\w{3,32})$" /api.php?api=native&app=$1&action=$2; } location /mobile_api { rewrite "^/mobile_api/(\w{3,32})$" /api.php?api=mobile&app=$1; } location /language{ rewrite "^/language/(\w{2,25})(\/|)$" /index.php?app=home&language=$1; } location /guest { rewrite ^/guest(\/|)$ /index.php?app=guest; } location /confirm_registration { rewrite ^/confirm_registration(\/|)$ /index.php?app=confirm_reg; } location /confirm_email { rewrite ^/confirm_email(\/|)$ /index.php?app=confirm_email; } location /admin_panel { rewrite ^/admin_panel(\/|)$ /index.php?app=cpanel; rewrite "^/admin_panel/(\w{3,25})(\/|)$" /index.php?app=cpanel§ion=$1; } location /trending { rewrite ^/trending(\/|)$ /index.php?app=trending; } location /bookmarks { rewrite ^/bookmarks(\/|)$ /index.php?app=bookmarks; } location /notifications { rewrite ^/notifications(\/|)$ /index.php?app=notifications&page=notifs; } location /mentions { rewrite ^/mentions(\/|)$ /index.php?app=notifications&page=mentions; } location /search { rewrite ^/search(\/|)$ /index.php?app=search; rewrite ^/search/(htags|people|posts)(\/|)$ /index.php?app=search&tab=$1; } location /start_up { rewrite ^/start_up(\/|)$ /index.php?app=start_up; } location /thread { rewrite "^/thread/([0-9]{1,11})(\/|)$" /index.php?app=thread&thread_id=$1; } location /reset_password { rewrite ^/reset_password(\/|)$ /index.php?app=guest; } location /home { rewrite ^/home(\/|)$ /index.php?app=home; } location /logout { rewrite ^/logout(\/|)$ /index.php?app=logout; } location /settings { rewrite ^/settings(\/|)$ /index.php?app=settings; rewrite "^/settings/(\w{3,25})(\/|)$" /index.php?app=settings&sapp=$1; } location /terms_of_use { rewrite ^/terms_of_use(\/|)$ /index.php?app=stat_pages&page=terms; } location /privacy_policy { rewrite ^/privacy_policy(\/|)$ /index.php?app=stat_pages&page=privacy_policy; } location /cookies_policy { rewrite ^/cookies_policy(\/|)$ /index.php?app=stat_pages&page=cookies_policy; } location /about_us { rewrite ^/about_us(\/|)$ /index.php?app=stat_pages&page=about_us; } location /faqs { rewrite ^/faqs(\/|)$ /index.php?app=stat_pages&page=faqs; } location /suggested { rewrite ^/suggested(\/|)$ /index.php?app=suggested; } location /chats { rewrite ^/chats(\/|)$ /index.php?app=chats; } location /affiliates { rewrite ^/affiliates(\/|)$ /index.php?app=affiliates; } location /ads { rewrite ^/ads(\/|)$ /index.php?app=ads; rewrite ^/ads/new(\/|)$ /index.php?app=ads&page=upsert; rewrite ^/ads/archive(\/|)$ /index.php?app=ads&page=archive; rewrite ^/ads/pending(\/|)$ /index.php?app=ads&page=pending; rewrite ^/ads/edit/(\d+)(\/|)$ /index.php?app=ads&page=upsert&ad_id=$1; rewrite ^/ads/(\d+)(\/|)$ /index.php?app=ad_item&ad_id=$1; } location /oauth { rewrite ^/oauth(\/|)$ /index.php?app=oauth; rewrite ^/oauth/twitter(\/|)$ index.php?app=oauth&provider=twitter; rewrite ^/oauth/google(\/|)$ index.php?app=oauth&provider=google; rewrite ^/oauth/facebook(\/|)$ index.php?app=oauth&provider=facebook; } location /conversation { rewrite "^/conversation/(\w{3,25})(\/|)$" /index.php?app=conversation&uname=$1; } location / { if (!-e $request_filename){ rewrite ^/$ /index.php?app=home; } if (!-e $request_filename){ rewrite "^/(\w{3,25})(\/|)$" /index.php?app=profile&uname=$1; rewrite "^/(\w{3,25})/(following|followers)(\/|)$" /index.php?app=connections&uname=$1&tab=$2; rewrite "^/(\w{3,25})/(posts|media|likes)(\/|)$" /index.php?app=profile&uname=$1&tab=$2; } } location ~ /\.ht { deny all; } ``` 完事了基本,访问主域名就ok了 设置汉化包,前往后台找到UI Languages  找到Chinese - 中文按下方选择  然后Add Language  点圆圈设置为默认前台语言 然后下载汉化包:[Colibrism1.3.0汉化](https://dew.nz/s/dNIR) 上传到网站根目录解压,完成! 最后修改:2022 年 03 月 24 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 0 如果觉得我的文章对你有用,请随意赞赏
1 条评论
真棒棒的,谢谢博主