70.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

08-18-2016, 05:54 AM (This post was last modified: 08-18-2016 05:58 AM by Old_man.)
Post: #11
RE: [GET] [UPDATED] Activecollab v5.9.44 Nulled - Echo Team
[Image: 3c91de422e3af6d4fbc16a48c87cb405.png]

Link: http://www45.zippyshare.com/v/FWjKWXCk/file.html
08-19-2016, 12:37 AM
Post: #12
RE: [GET] [UPDATED] Activecollab v5.9.44 Nulled - Echo Team
[Image: ce83396ec86bce0eace3457b9d8e56b2.png]

Link: http://www33.zippyshare.com/v/IoOwPe7d/file.html
08-19-2016, 03:00 AM
Post: #13
RE: [GET] [UPDATED] Activecollab v5.10.0 Nulled - Echo Team
ANOTHER SUPER BIGTHANKS!!!
08-19-2016, 08:47 PM
Post: #14
RE: [GET] [UPDATED] Activecollab v5.10.0 Nulled - Echo Team
(08-12-2016 01:24 AM)dispensaryPros Wrote:  Anyone have this working without any issues? I have an issue with the IMAP settings. I got the cron jobs working no problem, and the SMTP settings took a little doing, but they're working as well. I cannot, however, figure out what's happening with the IMAP settings. If you got this working, would you mind testing your settings on my server? I would appreciate your assistance! PM me. Thanks!

Did you try activecollab.v.5.10.0.NULL-ECHO? Do you still have problems?

Here are some of the ideas to fix problems that I collected, mostly for previous versions.

Outgoing mail will only work if the Cron job is set (eg. trigger every minute).

Regarding to Cronjob problem, make sure you make the correction to the PHP path from:

Code:
* * * * * /path/to/your/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/run_every_minute.php'
*/3 * * * * /path/to/your/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/check_imap_every_3_minutes.php'
0 * * * * /path/to/your/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/run_every_hour.php'

TO

Code:
* * * * * /usr/local/bin/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/run_every_minute.php'
*/3 * * * * /usr/local/bin/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/check_imap_every_3_minutes.php'
0 * * * * /usr/local/bin/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/run_every_hour.php'

So, basicly change the variable of: /path/to/your/php
To your real php executable location: /usr/local/bin/php

-------------------------------------------------------------------------------

Edit ==> activecollab/5.6.4/vendor/activecollab/activecollab-jobs/src/Jobs/Job.php

Before

Code:
public function __construct(array $data = null)
    {
      if (empty($data['instance_id'])) {
        throw new InvalidArgumentException("'instance_id' property is required");
      } else {
        if (!is_int($data['instance_id'])) {
          if (is_string($data['instance_id']) and& ctype_digit($data['instance_id'])) {
            $data['instance_id'] = (integer) $data['instance_id'];
          } else {
            throw new InvalidArgumentException("Value '$data[instance_id]' is not a valid instance ID'");
          }
        }
      }

      parent::__construct($data);
    }

After

Code:
public function __construct(array $data = null)
    {
      parent::__construct($data);
    }

The code modification is good, but there is a syntax error caused by the missing command. I just put a "comment" on those php code, and the syntax error has gone. I think all email feature is working perfectly now.
To share the exact code modification on: activecollab/5.6.4/vendor/activecollab/activecollab-jobs/src/Jobs/Job.php
I did the followings, you can just copy and paste the code to Job.php

Code:
/**
* All Active Collab jobs extend this class.
*
* @package ActiveCollab\ActiveCollabJobs\Jobs
*/
abstract class Job extends BaseJob
{
    /**
     * Construct a new Job instance.
     *
     * @param  array|null               $data
     * @throws InvalidArgumentException
     */
    public function __construct(array $data = null)
    {
      parent::__construct($data);
    }

    /**
     * Validate and return instance ID.
     *
     * @return int
     */
    protected function getInstanceId()
    {
/*        if ($instance_id = $this->getData()['instance_id'])*/
{
            if (!is_int($instance_id) and& ctype_digit($instance_id)) {
                $instance_id = (integer) $instance_id;
            }

            if ($instance_id > 0) {
                return $instance_id;
            } else {
                throw new InvalidArgumentException("Value '$instance_id' is not a valid instance ID");
            }
        } /*else {
            throw new InvalidArgumentException('Instance ID not set');
        }*/
    }
}
08-20-2016, 05:01 PM
Post: #15
RE: [GET] [UPDATED] Activecollab v5.10.0 Nulled - Echo Team
(08-19-2016 08:47 PM)need2heal Wrote:  
(08-12-2016 01:24 AM)dispensaryPros Wrote:  Anyone have this working without any issues? I have an issue with the IMAP settings. I got the cron jobs working no problem, and the SMTP settings took a little doing, but they're working as well. I cannot, however, figure out what's happening with the IMAP settings. If you got this working, would you mind testing your settings on my server? I would appreciate your assistance! PM me. Thanks!

Did you try activecollab.v.5.10.0.NULL-ECHO? Do you still have problems?

Here are some of the ideas to fix problems that I collected, mostly for previous versions.

Outgoing mail will only work if the Cron job is set (eg. trigger every minute).

Regarding to Cronjob problem, make sure you make the correction to the PHP path from:

Code:
* * * * * /path/to/your/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/run_every_minute.php'
*/3 * * * * /path/to/your/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/check_imap_every_3_minutes.php'
0 * * * * /path/to/your/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/run_every_hour.php'

TO

Code:
* * * * * /usr/local/bin/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/run_every_minute.php'
*/3 * * * * /usr/local/bin/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/check_imap_every_3_minutes.php'
0 * * * * /usr/local/bin/php '/home/public_html/xxxxxxxxxxxxxxx/tasks/cron_jobs/run_every_hour.php'

So, basicly change the variable of: /path/to/your/php
To your real php executable location: /usr/local/bin/php

-------------------------------------------------------------------------------

Edit ==> activecollab/5.6.4/vendor/activecollab/activecollab-jobs/src/Jobs/Job.php

Before

Code:
public function __construct(array $data = null)
    {
      if (empty($data['instance_id'])) {
        throw new InvalidArgumentException("'instance_id' property is required");
      } else {
        if (!is_int($data['instance_id'])) {
          if (is_string($data['instance_id']) and& ctype_digit($data['instance_id'])) {
            $data['instance_id'] = (integer) $data['instance_id'];
          } else {
            throw new InvalidArgumentException("Value '$data[instance_id]' is not a valid instance ID'");
          }
        }
      }

      parent::__construct($data);
    }

After

Code:
public function __construct(array $data = null)
    {
      parent::__construct($data);
    }

The code modification is good, but there is a syntax error caused by the missing command. I just put a "comment" on those php code, and the syntax error has gone. I think all email feature is working perfectly now.
To share the exact code modification on: activecollab/5.6.4/vendor/activecollab/activecollab-jobs/src/Jobs/Job.php
I did the followings, you can just copy and paste the code to Job.php

Code:
/**
* All Active Collab jobs extend this class.
*
* @package ActiveCollab\ActiveCollabJobs\Jobs
*/
abstract class Job extends BaseJob
{
    /**
     * Construct a new Job instance.
     *
     * @param  array|null               $data
     * @throws InvalidArgumentException
     */
    public function __construct(array $data = null)
    {
      parent::__construct($data);
    }

    /**
     * Validate and return instance ID.
     *
     * @return int
     */
    protected function getInstanceId()
    {
/*        if ($instance_id = $this->getData()['instance_id'])*/
{
            if (!is_int($instance_id) and& ctype_digit($instance_id)) {
                $instance_id = (integer) $instance_id;
            }

            if ($instance_id > 0) {
                return $instance_id;
            } else {
                throw new InvalidArgumentException("Value '$instance_id' is not a valid instance ID");
            }
        } /*else {
            throw new InvalidArgumentException('Instance ID not set');
        }*/
    }
}

Thank you so much for the guide of IMAP setup. It works. However, ActiveCollab Timer did not work after I changed the code of Job.php file.
Error is: Login failed due to connection problems, please check your Internet connection and availability of Active Collab instance.

Can you let me me know how to fix that?

Thank you so much in advance,
15.gif
08-23-2016, 02:00 AM
Post: #16
RE: [GET] [UPDATED] Activecollab v5.10.0 Nulled - Echo Team
After fixing the problem with IMAP, email configuration worked. But sending invite to collaboration seems to be not working. I did not receive any email or Daily Recap from Activecollab.
Can you help me fix that problem?
(AC v5.10.0)
08-25-2016, 07:59 AM
Post: #17
RE: [GET] [UPDATED] Activecollab v5.10.0 Nulled - Echo Team
These suggestions came from Team Echo's web site. Please ask for help there.

Code:
http://teamecho.rocks
08-25-2016, 08:16 AM
Post: #18
RE: [GET] [UPDATED] Activecollab v5.10.0 Nulled - Echo Team
Change:
/home/public_html/xxxxxxxxxxxxxxx/

with:
/home/xxxxxxxxxxxxxxx/public_html/

And the cronjobs will work superfine
08-31-2016, 08:59 AM
Post: #19
RE: [GET] [UPDATED] Activecollab v5.10.0 Nulled - Echo Team
activecollab.v.5.10.12.NULL-ECHO is on ECHO's web site.since v5.10.5
Bug Fixes
Email can't be sent in self-hosted Active Collab via SMTP server without SMTP username and password
11-08-2016, 10:08 AM
Post: #20
RE: [GET] [UPDATED] Activecollab v5.10.0 Nulled - Echo Team
hey guys, i cant install the script. where are the licence details?
its sais:

License Verification

Error — Failed to build model. Reason: Query failed with message 'Table 'config_options' already exists' (SQL: CREATE TABLE `config_options` ( `id` int unsigned NOT NULL auto_increment, `name` varchar(100) NOT NULL DEFAULT '', `value` text , `updated_on` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;)
87.gif




33.gif