We have RS version 10.5 on an Ubuntu 24.04.2 LTS serve VM in Parallels Desktop 20.3.0 Pro Edition on a Mac Mini host on Sequoia 15.4.1.
Using PHP 8.3 to access the API, after uploading an MP3 file, I am trying to upload about a 25kB text string to the Extracted Text field (#72, shortname text).
When I upload the first 5,000 characters, it works fine. When I enlarge the string to the full amount, it fails to upload.
I check my PHP.ini limits and increased them from the PHP.ini file that is displayed by PHPInfo(). The settings I chose are:
max_execution_time 1200
memory_limit 4096M
post_max_size 4096M
upload_max_filesize 4096M
At start of program execution, I run: $maxUploadSize = ini_get(upload_max_filesize) and it returns only 2M. Still this seems large enough.
I removed the .htaccess file from the webroot, since it seemed to be ineffective.
Any ideas? Is it not allowable to load such a large amount of text into a field? I would like to make it searchable, perhaps by indexing it.
Thanks for any suggestions you can come up with.