Viewing 1 replies (of 1 total)
  • Plugin Author WP connect

    (@wpconnectco)

    Hi @tanizabecomingmo,

    I noticed that your website encountered a PHP Fatal Error due to the maximum execution time of 60 seconds being exceeded while processing images. This is likely happening because:

    • Large image files take too long to process.
    • Server resources (memory/CPU) may be limited.
    • The PHP execution time is set too low (currently at 60 seconds).

    To fix this, I suggest increasing the PHP execution time by adding the following lines to your wp-config.php file:

    define('WP_MEMORY_LIMIT', '256M');
    set_time_limit(0);

    Additionally, please check if you are uploading large image files, as they might be causing this issue. I also recommend updating to the latest WordPress version to ensure compatibility and optimal performance.

    Let me know if you need further assistance!

    Best,

    Cristian
    WP connect Support

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