(Docker Solved) Post-processing of the image failed likely because the server is busy or does not have enough resources ERROR
Hi All! Photo by Markus Spiske on Unsplash Post-processing of the image failed likely because the server is busy or does not have enough resources. Encountered this issue, when uploading media files to my 4nutz.tk website! To solve this issue it might comes from PHP setting and Nginx settings. Thus i took the chance to fix both! Fix PHP settings First i increased the minimum size file upload in PHP settings by introducing new php.ini / uploads.ini file link to local file to the wordpress container example in docker.yaml file setting. wordpress: depends_on: - db image: wordpress:5.1.1-fpm-alpine container_name: anutz_wordpress restart: unless-stopped env_file: .env environment: - WORDPRESS_DB_HOST=db:3306 - WORDPRESS_DB_USER=$MYSQL_USER - WORDPRESS_DB_PASSWORD=$MYSQL_PASSWORD - WORDPRESS_DB_NAME=xxx - WORDPRESS_DB_PORT=3306 volumes: - ./data/html:/var/www/html - ./php/uploads.ini:/usr/local/etc/php/co