You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
getSuhosinMemoryDifference() tries to work out the difference between suhosin’s memory limit and PHP’s memory limit. As suhosin’s limit is 0, this returns a negative value
As isSuhosinRelevant() therefore returns true, it tries to update the memory limit
ensureSuhosinMemory() tries to reserve the suhosin memory limit, -5mb - so it’s trying to set the memory limit to -5mb
Errors logged are script tried to disable memory_limit by setting it to a negative value
The text was updated successfully, but these errors were encountered:
What happens in order is:
isSuhosinRelevant()
callsgetSuhosinMemoryDifference()
getSuhosinMemoryDifference()
tries to work out the difference between suhosin’s memory limit and PHP’s memory limit. As suhosin’s limit is 0, this returns a negative valueisSuhosinRelevant()
therefore returnstrue
, it tries to update the memory limitensureSuhosinMemory()
tries to reserve the suhosin memory limit, -5mb - so it’s trying to set the memory limit to -5mbErrors logged are
script tried to disable memory_limit by setting it to a negative value
The text was updated successfully, but these errors were encountered: