5.8.7
Improvements
Project templates can be moved to Trash
Bug Fixes
Invoices can’t be duplicated or updated
Download
http://www9.zippyshare.com/v/c7FSciSh/file.html
**Rename 'htaccess' file to '.htaccess' after uploading to server.**
Credit goes to Team ECHO
nice work.... its so awesome
Hello,
I have a problem with installing IMAP (Configure email). The error is
Quote:'instance_id' property is required
Do you know how to fix that?
Thanks,
You can edit ==> activecollab/5.6.4/vendor/activecollab/activecollab-jobs/src/Jobs/Job.php
Before:
Quote: 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
Quote: public function __construct(array $data = null)
{
parent::__construct($data);
}
(08-19-2016 06:22 PM)longnhvietnam Wrote: [ -> ]Hello,
I have a problem with installing IMAP (Configure email). The error is
Quote:'instance_id' property is required
Do you know how to fix that?
Thanks,
(08-20-2016 04:04 AM)dispensaryPros Wrote: [ -> ]You can edit ==> activecollab/5.6.4/vendor/activecollab/activecollab-jobs/src/Jobs/Job.php
Before:
Quote: 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
Quote: public function __construct(array $data = null)
{
parent::__construct($data);
}
(08-19-2016 06:22 PM)longnhvietnam Wrote: [ -> ]Hello,
I have a problem with installing IMAP (Configure email). The error is
Quote:'instance_id' property is required
Do you know how to fix that?
Thanks,
Hi,
The IMAP problem has resolved, but the problem with Active Collab Timer occurs after I fixed IMAP problem. How to I fix the Active Collab Timer problem?
Thanks