• Hi,
    I am using your plugin quite a while and it was always workiung well. But now I have a problem,. I cannot resolve. My migration from a very difficult server (Domainfactory) to an other host (Hetzner) did not work. I received this debug code: BMI-TKePCyxC-47519

    Additionally I was informed, that the max. execution time of the server is set to 60. That is strange, because I changed it vis the .htaccess. Here is my complete .htaccess:

    # 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

    # Backup Migration START
    <IfModule mod_rewrite.c>

    RewriteEngine On
    RewriteRule .* - [E=noabort:1]
    RewriteRule .* - [E=noconntimeout:1]

    </IfModule>
    <IfModule mod_env>

    SetEnv noabort 1

    </IfModule>
    # Backup Migration END

    php_value max_execution_time 300

    Do you have any ideas, where the bug is located?
    Thanks
    Raphael

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support MixHa

    (@mixha)

    Hello @rabox66 ,

    The issue is likely caused by the RAM memory limit configuration.

    Because your WP_MAX_MEMORY_LIMIT is set to 256 MB (which is the default value and you need to override it in wp-config.php) our plugin assumes that there are 256 MBs of free RAM memory, but in reality, there is a hard limit of 40 MBs, best solution for you would be to increase memory limit to 256 MBs in your php.ini configuration, that would resolve all issues or set correct value for WP_MAX_MEMORY_LIMIT in wp-config.php to “40M”.

    After all, running WordPress with only 40 MBs of RAM is quite challenging and may make the website unstable.

    You need to increase the memory_limit variable in your php.ini configuration, the most recommended value for you is “256M”.

    Regarding the max. execution time.

    We have noticed that your current PHP max_execution_time is just 60. For optimal performance of our plugin, we recommend increasing this value to at least 300 seconds. This adjustment is necessary to ensure that all processes complete without interruption, particularly those requiring extended execution times.

    To update the max_execution_time, you can add/modify the following line to your php.ini file:

    max_execution_time = 300

    Alternatively, if you have access to your server’s control panel, you may adjust this setting through the PHP configuration section.

    Thank you!

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.