SCRIPT AсtiveCollab

basix

Best member
Verified
#1
Active Collab (corporate) - управление проектами

Active Collab helps your team stay organized when you outgrow email. But it’s so much more than that — with plenty of neat add-ons, it’s a one-stop solution for all your business needs.




AсtiveCollab installer 5.13.133
Hidden content. You need Log in or Register.
***Hidden content***
How-to null:
Hidden content. You need Log in or Register.
***Hidden content***

Install updates manually
Hidden content. You need Log in or Register.
***Hidden content***

For PHAR update you need:
[POSTS=10]you need upload a phar file to public_html/activecollab/ and run
Code:
cd /home/admin/web/your-domain/public_html/tasks
php activecollab-cli.php upgrade --dont-download-latest
[/POSTS]
Phar decompress:
Code:
phar extract -f %some phar file%
or
Code:
php -r '$phar = new Phar("phar-file.phar"); $phar->extractTo("./directory");'

NGINX config (Android OS tested)
NGINX:
 server {
        listen       80;
        listen       [::]:80;
        server_name  ac.server.com;
        root         /var/www/ac.server.com/public;
        index   router.php
        access_log /var/log/nginx/activecollab-access.log;
        error_log /var/log/nginx/activecollab-error.log;
        ssi on;
        client_max_body_size 32m;

        include /etc/nginx/default.d/*.conf;

        if (!-e $request_filename) {
                rewrite ^/assets/(.*)$ /assets/$1 last;
                rewrite ^/avatars/(.*)$ /avatars/$1 last;
                rewrite ^/wallpapers/(.*)$ /wallpapers/$1 last;
                rewrite ^/verify-existence$ /verify.php last;
                rewrite ^/proxy.php$ /proxy.php last;
                rewrite ^/api/v([0-9]*)/(.*)$ /api.php?path_info=$2&api_version$
                rewrite ^$ /router.php last;
                rewrite ^(.*) /router.php?path_info=$1 last;
        }
    }
 
Last edited by a moderator:
Top