Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is there a limit to the length of text? #47

Open
carlotta11 opened this issue Oct 8, 2022 · 1 comment
Open

Is there a limit to the length of text? #47

carlotta11 opened this issue Oct 8, 2022 · 1 comment
Assignees
Labels

Comments

@carlotta11
Copy link

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 150 words / 900 characters, it works fine. But then an incredibly long time passes, in which Filemaker does something, but after that time you see that he has nothing saved.
How can I make it possible to write about 800 words in this field?

@airmoi airmoi self-assigned this Dec 26, 2023
@airmoi
Copy link
Owner

airmoi commented Dec 26, 2023

Hi,

XML engine is using "GET" queries to push data to FileMaker, this means all data are passed in the query string, but web servers usually have a limit for query string length :

  • IIS (Windows) : 2048
  • Apache (MacOs, Linux) : 8000
  • Nginx (Linux): 8K (9192)

You can exceed this limit by changing the underlaying web server's settings

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants