Hello @dimodi and @delyandelov
I know this is one month ago, but I started again to compress my images (within 1 deactivated conflicting plugin). It worked well until it got stuck again on 91 images, even after 30 minutes… So I decided to deactivated all my plugins and tried again, and it’s still on 91 images. Any solutions?
Here is my .htaccess file:
# SGS XMLRPC Disable Service
<Files xmlrpc.php>
order deny,allow
deny from all
</Files>
# SGS XMLRPC Disable Service END
SetEnv PHPRC /home/customer/www/conferenziaworld.com/public_html/php.ini
<IfModule mod_dtimeout.c>
<Files ~ ".php">
SetEnvIf Request_URI "index.php" DynamicTimeout=900
SetEnvIf Request_URI "wp-admin" DynamicTimeout=900
SetEnvIf Request_URI "wp-admin/admin-ajax.php" DynamicTimeout=900
SetEnvIf Request_URI "wp-admin/admin.php" DynamicTimeout=900
</Files>
</IfModule>
# HTTPS forced by SG-Optimizer
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
# END HTTPS
# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Please and thank you so much.