Claude Diderich
Claude Diderich
I think you need to put the script section after/below the select statement.
I want to create a calendar list that filters on `status`. But in my installation, I don't see any options. It is my understanding that I do not have access...
You write on your website that it has been tested using 8.1 (I assumed that when it has been tested with a version, that the version is supported). You even...
I read the `dev` as related to php (you were using a development version of php), not that the dev related to the crm system ;-)
This is an update without errors from 6.5.0
FYI (you may disagree with my reasoning). I was implementing a customized loader (rather than the generic one `require __DIR__ . '/../vendor/autoload.php';` because: 1. The generic autoloader introduces some overhead...
I loaded the class with the following code: ``` function my__autoload(string $class_name): void { if(str_contains($class_name, 'DeepL\\')) { $class_name = str_replace('DeepL\\', '', $class_name); $class_file = _HOLIDAY_APP_ROOT_.'/vendor/deeplcom/deepl-php/src/'.$class_name.'.php'; if(file_exists($class_file)) { require_once($class_file); return; }...
My use case is as follows: I am developing an application (i.e., a server that will display photos and associated captions in the language of the end user). I want...