Active Collab

Jan 26, 2021
35
8
8
Please check its working or not I don't know.

How to null activecollab:

\activecollab\5.13.133\angie\classes\application\installer\AngieApplicationInstallerAdapter.class.php

PHP:
$license_accepted = (boolean) $licensing_params['accepted'];
$license_validated = $license_validation_error = false;

if ($owner_email && is_valid_email($owner_email) && $owner_password && $license_accepted) {
$license_validated = true;
}
(change to):
PHP:
$license_accepted = true;
$license_validated = true;


Need upload folder to /activecollab/, later make upgrade from console.
For make update from local folder you need run next command from console:

php activecollab-cli.php upgrade --dont-download-latest


For PHAR update you need:

you need upload a phar file to /public_html/activecollab/ and run

cd /home/admin/web/your-domain/public_html/tasks
php activecollab-cli.php upgrade --dont-download-latest

Phar decompress:

phar extract -f %some phar file%

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;
}
}


AсtiveCollab installer 5.13.133




Active Collab 5.14.64 updates in ZIP (phar to zip repack)

https:mega.nz/#!xq5GkS7S!8TWbB9-s5Y6nvyyfWCKZTxmCxjfRDe-xLxWv3exXlg8



ActiveCollab 5.6.16 - 2016.03.17

https:mega.nz/#!ZJEhgQqS!oyeGmhnpwJc1Xdun1eoThvYZ-LacXfXsl3eBxeRTabs

only updates (.zip)

For ActiveCollab 6.0.7

it's okay for update from 5.13.133 to 6.0.7






updates (.zip)

to ActiveCollab 6.0.50


https:dropmefiles.com/5OnDp
https:mega.nz/#!zAtllCJK!2ByP0R_PAhpJH2zEzwJYXRm1k6NOlf7rfD5n8oYMb1Y
https:mega.nz/#!66IUmCTT!wuEbk5UY9-0Mjd6sGsa5ZjctgF4IACUSZ9QbR6hlkDY
ActiveCollab 6.0.50 INSTALLER

https:mega.nz/#!LdFGBAgS!VAV0b2oekbi3jTw1hzt2oVPym-UfwC1cUxq3UpgI8B0
MIRROR:

https:mega.nz/#!m25SjAZT!VAV0b2oekbi3jTw1hzt2oVPym-UfwC1cUxq3UpgI8B0
ActiveCollab 6.1.53

https:mega.nz/#!eVNEQaJb!Z11XCq1eoh0qyBkrM3jUA1LhStLCrRqqaBHULJ_WOZE
MIRROR:

https:mega.nz/#!3YE2FQJJ!Z11XCq1eoh0qyBkrM3jUA1LhStLCrRqqaBHULJ_WOZE
MIRROR:

https:mega.nz/#!4J5CiKgT!Z11XCq1eoh0qyBkrM3jUA1LhStLCrRqqaBHULJ_WOZE
ActiveCollab 6.2.169


M:



ActiveCollab 7.0.15

M:

Active Collab 7.1.0

M:
 
Last edited by a moderator:

lectora

Member
Nov 1, 2019
57
5
8
thanks man)) but its just updates for installed version) need installer files
all this:
ActiveCollab 6.0.50 INSTALLER
ActiveCollab 6.1.53
ActiveCollab 6.2.169

cause step by step updates
 
  • Like
Reactions: GORSKY
Jan 26, 2021
35
8
8
thanks man)) but its just updates for installed version) need installer files
all this:
ActiveCollab 6.0.50 INSTALLER
ActiveCollab 6.1.53
ActiveCollab 6.2.169

cause step by step updates

Bro I have update the links what ever I have please give a try

@ Admin I tried to use spoiler to hide links its going crazy can you take care of hiding links for me please
 

tuton012

Strive for progress, not perfection
Babiato Lover
Trusted Uploader
May 23, 2019
1,607
2,060
120
Near You
@myfreehostingacc please go to the 3 dots in your bar and click on spoiler to add it to your links see imagen

1614187055207.png

I also I delete a few links they were all broken please re-add them

Thanks
 

CaptainQ

New member
Mar 15, 2021
2
0
1
Super thx for the share. Just can I start with the v6 installer or do I need to start with the v5?
 

assholio

Member
Apr 11, 2020
45
6
8
So there is no 7.x installer?

I need to install 5.x then update to 6.x and then update to 7.x? Or am I missing something
 

assholio

Member
Apr 11, 2020
45
6
8
Tried to install 5.13.133 and getting the error when trying to activate my account:

License Verification
  • Error — Failed to connect to database
 
Jan 26, 2021
35
8
8
I did that, the changes listed in the post are already present in the file. there's nothing to change.

\activecollab\5.13.133\angie\classes\application\installer\AngieApplicationInstallerAdapter.class.php

PHP:
$license_accepted = (boolean) $licensing_params['accepted'];
$license_validated = $license_validation_error = false;

if ($owner_email && is_valid_email($owner_email) && $owner_password && $license_accepted) {
$license_validated = true;
}
(change to):
PHP:
$license_accepted = true;
$license_validated = true;
 

assholio

Member
Apr 11, 2020
45
6
8
As I said. The zip file already comes with a modified file:

\activecollab\5.13.133\angie\classes\application\installer\AngieApplicationInstallerAdapter.class.php

public function validateInstallation($database_params, $owner_params, $licensing_params, $additional_params = null)
{
$this->cleanUpValidationLog();

$owner_email = array_var($owner_params, 'email', null, true);
$owner_password = array_var($owner_params, 'pass', null, true);

$license_accepted = true;
$license_validated = true;


// We have all the data
if ($license_validated) {
 

Forum statistics

Threads
69,279
Messages
908,678
Members
237,529
Latest member
asssssssss

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu