-
Incident report
-
Resolution: Duplicate
-
Major
-
1.8.1, 1.8.2
-
None
If any field length in json string longer then ~60000 symbols then field after CJSON->decode will be empty
Fix: I don't fixed it in CJSON class, in php>5.2.0 internal function json_decode presents. For compatible with old php versions i do this for example:
if(!function_exists("json_decode"))
else
{ $rcv = json_decode($reply, true); }- duplicates
-
ZBX-2084 When output of script >65535 symbols, data getting by the web-interface is corrupted and truncated
- Closed