Oliver Buchmann
Oliver Buchmann
We use OctoberCms Queue for some tasks including sending mails. Mails sent from queue workers don't appear in the maillog. Mails sent appear in the log. We don't use the...
Getting this error: `XML-RPC doesn't support circular references` The line hitting the error is ``` $request = xmlrpc_encode_request( $name, $args, $this->_outputOptions ); ``` I debugged it to ``` xmlrpc_encode_request('authenticate', $args,...
I try to load lots of related records from a one2many relation but there is no plain read method defined. Can we add a method to load records by id...
When installing october command via composer as suggested in the Envoy.blade.php template. Uses `php composer.phar install --no-interaction --no-dev --prefer-dist --ignore-platform-reqs ` I'm getting an error invoking the october command via...
**Describe the bug** When you use a Clickup Trigger based on an event. E.g. "task.updated" the Trigger fails instant on receiving the event with the error: ERROR: The "key" argument...
e.g. project.project action_archive. ``` use Obuchmann\OdooJsonRpc\Odoo\Request\Request; class ArchiveProject extends Request { public function __construct(private int $projectId) { parent::__construct('project.project', 'action_archive'); } public function toArray(): array { return [ $this->projectId ]; }...
We currently have an application with 3 different user types and views. Therefore we would like to determine the redirect route based on some logic. It would be nice if...