Changes between Initial Version and Version 1 of Ticket #49329, comment 29
- Timestamp:
- 05/22/2020 08:17:31 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #49329, comment 29
initial v1 20 20 I think the solution is to get the value with `ini_get('memory_limit')` as early as possible to get not affected from any plugins or WP which are trying to set something else and show only this value. 21 21 22 The only other reliable way to get the real value I know of is to try to getthe memory and see when it fails. This is of course a risky way, so we decided against it:22 The only other reliable way to get the real value I know of is to try to allocate the memory and see when it fails. This is of course a risky way, so we decided against it: 23 23 https://github.com/WordPress/health-check/issues/50