FileMaker icon indicating copy to clipboard operation
FileMaker copied to clipboard

FileMaker PHP API rewritten for PHP 5.5+

Results 14 FileMaker issues
Sort by recently updated
recently updated
newest added

Thanks for this useful rewrite of the PHP API. However, I now come across a problem. I have a text field in which you should write whole processes. Up to...

question

The former code crashes on large xml data (e.g. 50MB). This workaround is a fix by running the parser over parts of 5MB consecutively.

FM Server 19.4.2.204 running on MacOS Catalina 10.15.7 on Intel. Unit test results: ``` ========================================== FILEMAKER API UNIT TEST ========================================== ------------------------------------------ Test FileMaker object's main methods ------------------------------------------ API version :...

This might be more of an issue with FileMaker Server, but I was wondering if this library could be used to handle this edge case better: **Summary:** Sometimes FileMaker Server...

This is how a initialize the filemaker handler: $fm = new \airmoi\FileMaker\FileMaker($database, $url, $user, $password, ['prevalidate' => true, 'logLevel' => 3]); [05-Jul-2021 10:52:17 UTC] Perform request: ****.**/fmi/xml/fmresultset.xml?-db=dbname&-lay=xyz&-find&-recid=4711 [05-Jul-2021 10:52:17 UTC]...

Hey I am using Filemaker 17 database/server. but the problem is when I am trying to create a new record why would it ask for some field is required to...

enhancement

Hello, If you set a custom dateFormat the following code will throw a "could not be converted to a valid timestamp" exception. ```php $record = $this->fileMaker->createRecord('layout', $data); $record->commit(); ``` The...

bug

Hello! Me again! If I run an edit command (or a commit on an existing record) and don't set all required fields, I get a `FileMakerValidationException` with code `0`: FileMakerValidationException...

enhancement

I'm receiving the following error: Deprecated: urlencode(): Passing null to parameter #1 ($string) of type string is deprecated in /path to airmoi_FileMaker/src/FileMaker.php on line 839 It is easily fixed by...

I am currently grappling with an issue following the upgrade from FileMaker Server 17 to FileMaker Server 2023. Specifically, we are encountering difficulties accessing and manipulating data through the FileMaker...