Code Monkey home page Code Monkey logo

teambitionnet's Introduction

#这是一个TeambitionShare修改版本,因为原版本不支持Teambition国际版,这次修改过,以支持国际版本,欢迎使用。欢迎入群交流~~~

tg:https://t.me/rssdaniao

tg群:https://t.me/daniaoboke

安装教程:https://www.daniao.org/13352.html

演示:http://tb.qixi.me/

TeambitionShare

挂载Teambition文件(网盘文件列表程序)

说明

目前开始继续维护,会对阿里网盘进行支持。请稍等几天!
已支持Teambition网盘(需申请)与Teambition项目
最近出了点意外,接下来的一段时间不会维护更新本项目
希望各位修改页面底部信息时保留本项目的github链接!
如果升级版本时出现报错 请删除 config/app.cfg.php 然后在配置向导中重新生成配置

PHP版本要求 ≥ 5.6
PHP版本推荐 ≥ 7.0
项目挂载演示站点:tbfile.ouoacg.com
网盘挂载演示站点:tbfile.ouoacg.com/pan 访问密码:123456

一些问题

1.Cookie有效期
目前未遇到cookie失效的情况,猜测只要你不在官网手动退出登录就不会失效
2.下载速度
下载速度有些不稳定,有时快有时慢(1MB/S);
3.访问密码
①)全局密码
在config/app.cfg.php中添加 'password' => '你要设置的密码' 即可
②)目录密码
在目录下上传一个文件.password,文件内容即为目录密码
4.二级目录运行
放在二级目录运行,配置的时候填入对应的URL和修改伪静态规则(Apache无需修改)即可

如何使用

在没有配置文件时访问网站会跳转到配置向导,在配置向导页面填写对应的参数即可生成配置文件

先去 www.teambition.com 注册登录
Cookie获取:
F12 -> Network -> 刷新一下 找到如图所示的cookie
image

项目ID(projectId)获取:
先创建一个项目,然后进入创建的项目
image
image

伪静态规则

Nginx

# 根目录伪静态
location / {
  if (!-e $request_filename){
    rewrite ^(.*)$ /index.php/?s=$1;
  }
}
# 二级目录伪静态,自行修改pan为你的二级目录名字
location /pan {
  if (!-e $request_filename){
    rewrite ^/pan/(.*)$ /pan/index.php/?s=$1;
  }
}

Apache

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/?s=$1 [QSA,PT,L]
</IfModule>

Docker

docker pull flxsnx/teambitionshare
docker run -d -p 8081:80 flxsnx/teambitionshare:latest
# 访问: http://ip:8081

teambitionnet's People

Contributors

flxsnx avatar tmmtoo avatar malaohu avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.