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
When using the Nextcloud app, the following PHP error appears:
allowed memory size of 536870912 bytes exhausted (tried to allocate 53248 bytes)
This error indicates that the current PHP memory_limit (512 MB) may be insufficient for the Nextcloud instance. As a result, the application may experience crashes or functional limitations, especially when handling larger files or data-intensive operations.
Proposed Solution:
To address this issue, it is recommended to increase the memory_limit for PHP in the docker-compose.yml file of the Nextcloud app to 1024 MB (1 GB). This adjustment could help prevent memory shortages and improve the stability of the Nextcloud instance.
Suggested Change for docker-compose.yml:
environment:
- PHP_MEMORY_LIMIT=1024M # Increase memory limit to 1GB
Additional Information:
This modification should ensure that Nextcloud remains stable even during memory-intensive operations. Raising the memory_limit may provide improved performance and reliability without requiring deeper changes to the application.
Note:
It may be helpful to review the potential impacts on system resource management before making this adjustment.
Perhaps this change could be considered for the next version update?
The text was updated successfully, but these errors were encountered:
Description:
When using the Nextcloud app, the following PHP error appears:
allowed memory size of 536870912 bytes exhausted (tried to allocate 53248 bytes)
This error indicates that the current PHP memory_limit (512 MB) may be insufficient for the Nextcloud instance. As a result, the application may experience crashes or functional limitations, especially when handling larger files or data-intensive operations.
Proposed Solution:
To address this issue, it is recommended to increase the memory_limit for PHP in the
docker-compose.yml
file of the Nextcloud app to 1024 MB (1 GB). This adjustment could help prevent memory shortages and improve the stability of the Nextcloud instance.Suggested Change for docker-compose.yml:
Additional Information:
This modification should ensure that Nextcloud remains stable even during memory-intensive operations. Raising the memory_limit may provide improved performance and reliability without requiring deeper changes to the application.
Note:
It may be helpful to review the potential impacts on system resource management before making this adjustment.
Perhaps this change could be considered for the next version update?
The text was updated successfully, but these errors were encountered: