Viewing 30 results - 1 through 30 (of 223 total)
  • Author
    Search Results
  • #1476018

    Did that and still getting errors…
    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /home/lzevon/apps/kingucc/wp-includes/class-wp-post.php on line 267
    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32768 bytes) in /home/lzevon/apps/kingucc/wp-content/plugins/the-events-calendar/src/Events/Custom_Tables/V1/Updates/Events.php on line 1

    I stepped it back down to default so I don’t leave failed attempts strewn-about.

    The issue has returned.

    We need to investigate a possible memory leak with the alb image element.

    Something is causing a memory leak or causing the query to fail.

    If we edit the homepage and then click on an image element to edit it we get an empty window and the errors below in the console in Plesk.

    If we have redis enabled:
    AH01071: Got error ‘; PHP message: PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 1310720 bytes) in /var/www/vhosts/domainname.com/httpdocs/wp-content/object-cache.php on line 2534’, referer: https://domainname.com/wp-admin/post.php?post=14&action=edit

    If we have redis disabled:
    AH01071: Got error ‘PHP message: PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 5242880 bytes) in /var/www/vhosts/domainname.com/httpdocs/wp-includes/class-wp-object-cache.php on line 239’, referer: https://domainname.com/wp-admin/post.php?post=14&action=edit

    This is accompanied by a console error:
    Failed to load resource: server responded with a status of 500 ()
    wp-admin/admin-ajax.php
    wp-admin/load-scripts.php
    I am assuming these two errors are because the process has stopped – And the cause is something to do with the issues above.

    This problem occurs in php 8.1 and above. It does not occur in php 8.0

    • This reply was modified 1 month, 1 week ago by thinkjarvis. Reason: extra note added
    #1475943

    I just enabled debugging, I don’t have a log file generated yet, but can see this error:

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32768 bytes) in /home/lzevon/apps/kingucc/wp-content/plugins/events-calendar-pro/src/views/custom-tables-v1/components/series-relationship-marker-link.php on line 1

    thinkjarvis
    Participant

    Hi we are experiencing an issue with Enfold on one of our sites where the memory limit is getting exausted when trying to view any ALB image element on our site.

    It times out and when I check the log files I get the following:

    If we have redis enabled:
    AH01071: Got error ‘; PHP message: PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 1310720 bytes) in /var/www/vhosts/domainname.com/httpdocs/wp-content/object-cache.php on line 2534’, referer: https://domainname.com/wp-admin/post.php?post=14&action=edit

    If we have redis disabled:
    AH01071: Got error ‘PHP message: PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 5242880 bytes) in /var/www/vhosts/domainname.com/httpdocs/wp-includes/class-wp-object-cache.php on line 239’, referer: https://domainname.com/wp-admin/post.php?post=14&action=edit

    This is accompanied by a console error:
    Failed to load resource: server responded with a status of 500 ()
    wp-admin/admin-ajax.php
    wp-admin/load-scripts.php
    I am assuming these two errors are because the process has stopped – And the cause is something to do with the issues above.

    We therefore cannot change the images on this site.

    I have raised this issue before but we couldnt find a cause.

    The allowed memory size is much larger than the limit suggested here. So not sure where the memory limit at 536870912 bytes is being pulled from.

    I think this is an issue with PHP compatibility and the avia builder. The problem seems to be worse in anything above php 8.0. We are now running PHP 8.2 on this site and the problem occurs with consistency.

    Please can you let me know what you need from us to investigate? I can provide login credentials if required.

    • This topic was modified 1 month, 2 weeks ago by thinkjarvis.
    • This topic was modified 1 month, 2 weeks ago by thinkjarvis. Reason: redacted url for security
    #1474124
    This reply has been marked as private.
    #1474119
    Vista53
    Participant

    Hi,
    The day before yesterday I updated my Enfold (followed: https://kriesi.at/support/topic/update-12/), because i can’t make new portfolio elements.
    After I successfully uploaded the two portfolio items, I received the following messages in succession:
    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /web/vincent-design/vincent-design.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-callback.php on line 259

    What should I do?
    Thanks in advance,
    István

    thinkjarvis
    Participant

    Hi I have a large enfold site where I get a memory exausted error when trying to edit an ALB image element.

    This only occurs on the image element.

    I ahve tried with REDIS enabled and REDIS disabled. I’ve also disabled caching to see if that is the issue.

    PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 14680120 bytes)

    The weirdest part is the allowed memory limit is set to 8gb. So I dont understand why the memory limit is set at 536mb as above.

    Any chance you could take a look at this? Happy to provide access to the site so you can see the problem

    #1434587
    This reply has been marked as private.
    #1434573

    Hi,
    Thanks for your patience, I found that your site is exhausting it’s allowed memory size in /public_html/wp-includes/class-wpdb.php on line 2320, I noticed that you have some javascript in your page and sometimes these are also executed in the backend, so I moved it to your WP Code plugin as a javascript snippet.
    I then created a shortcode to display your getresponse-form snippet and added it to your WP Code plugin:

    function getresponse_form_shortcode($atts) {
        $atts = shortcode_atts(
            array(
                'form-id' => '', 
                'e' => '1', 
            ),
            $atts,
            'getresponse-form'
        );
        $form_id = $atts['form-id'];
        $e = $atts['e'];
    
        if (empty($form_id)) {
            return '<p style="color: red;">Error: Form ID is missing</p>';
        }
        $html = '<getresponse-form form-id="' . esc_attr($form_id) . '" e="' . esc_attr($e) . '"></getresponse-form>';
        return $html;
    }
    add_shortcode('getresponse-form', 'getresponse_form_shortcode');

    Then I added [getresponse-form] to your page to show the form snippet.
    While this didn’t solve the issue directly, it ruled out the possibility of the javascript causing the issue in the backend. I found a Yoast support issue that points to /public_html/wp-includes/class-wpdb.php on line 2320 as a known Yoast issue and I tried adding the snippet but this didn’t help, so please try changing your server setting and see if this helps.
    max_execution_time = 300
    PHP max input variables = 10000
    PHP time limit = 300
    Max input time = 120

    Best regards,
    Mike

    #1432936

    In reply to: Page Builder Issue

    Hi Mike

    I am pretty sure the issue with the custom login plugin was because I was messing with the htaccess file. Its working again.
    I did test disabling the mod security and that did not work. below is the error log if you can see anything there that stands out. I notice the ini_set errors and thought that was odd. and the fatal error for allowed memory, but that could be from my testing. The ini_set error is listed in the other sites too.

    Stack trace:
    #0 /home/summitenvcon/public_html/wp-load.php(50): require_once()
    #1 /home/summitenvcon/public_html/wp-blog-header.php(13): require_once(‘/home/summitenv…’)
    #2 /home/summitenvcon/public_html/index.php(17): require(‘/home/summitenv…’)
    #3 {main}
    thrown in /home/summitenvcon/public_html/wp-config.php on line 3
    [01-Feb-2024 08:04:51 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [01-Feb-2024 10:23:38 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [01-Feb-2024 13:50:23 UTC] PHP Warning: Use of undefined constant ABSPATH – assumed ‘ABSPATH’ (this will throw an Error in a future version of PHP) in /home/summitenvcon/public_html/wp-settings.php on line 33
    [01-Feb-2024 13:50:23 UTC] PHP Warning: require(ABSPATHwp-includes/version.php): failed to open stream: No such file or directory in /home/summitenvcon/public_html/wp-settings.php on line 33
    [01-Feb-2024 13:50:23 UTC] PHP Fatal error: require(): Failed opening required ‘ABSPATHwp-includes/version.php’ (include_path=’.:/opt/cpanel/ea-php74/root/usr/share/pear’) in /home/summitenvcon/public_html/wp-settings.php on line 33
    [01-Feb-2024 13:50:24 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [01-Feb-2024 13:50:28 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [01-Feb-2024 20:05:56 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [02-Feb-2024 05:08:15 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [02-Feb-2024 05:08:17 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [02-Feb-2024 11:16:50 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [02-Feb-2024 11:16:51 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [02-Feb-2024 11:16:51 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [02-Feb-2024 13:38:19 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [02-Feb-2024 16:41:25 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [02-Feb-2024 19:12:01 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [02-Feb-2024 21:23:00 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [02-Feb-2024 21:46:25 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [02-Feb-2024 23:22:07 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 00:09:53 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 07:29:39 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 12:52:00 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 14:29:40 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 14:45:11 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 16:52:49 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 22:54:12 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 22:54:52 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 22:54:53 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 22:54:54 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 22:54:55 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 22:55:00 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 23:54:11 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 23:54:59 UTC] Cron reschedule event error for hook: action_scheduler_run_queue, Error code: invalid_schedule, Error message: Event schedule does not exist., Data: {“schedule”:”every_minute”,”args”:[“WP Cron”],”interval”:60}
    [03-Feb-2024 23:55:28 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 23:55:28 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 23:55:34 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 23:55:34 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 23:55:34 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [03-Feb-2024 23:55:34 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 00:02:51 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:02:51 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 20480 bytes) in /home/summitenvcon/public_html/wp-content/plugins/wordfence/lib/wfUtils.php on line 762
    [04-Feb-2024 00:03:18 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:03:18 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 500
    [04-Feb-2024 00:03:19 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:03:19 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 32768 bytes) in /home/summitenvcon/public_html/wp-content/wflogs/rules.php on line 1595
    [04-Feb-2024 00:03:20 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:03:20 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 151552 bytes) in /home/summitenvcon/public_html/wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php on line 33
    [04-Feb-2024 00:03:21 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:03:22 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 20480 bytes) in /home/summitenvcon/public_html/wp-content/plugins/wordfence/lib/wfUtils.php on line 762
    [04-Feb-2024 00:03:23 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:03:23 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 114688 bytes) in /home/summitenvcon/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php on line 682
    [04-Feb-2024 00:03:25 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:03:25 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 65536 bytes) in /home/summitenvcon/public_html/wp-content/plugins/wordpress-seo/src/services/indexables/indexable-version-manager.php on line 25
    [04-Feb-2024 00:03:28 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:03:28 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 20480 bytes) in /home/summitenvcon/public_html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 116
    [04-Feb-2024 00:03:30 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:03:30 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:03:30 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 32768 bytes) in /home/summitenvcon/public_html/wp-content/plugins/wordpress-seo/src/helpers/schema/language-helper.php on line 1
    [04-Feb-2024 00:03:30 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-number.php on line 24
    [04-Feb-2024 00:03:32 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:03:32 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 32768 bytes) in /home/summitenvcon/public_html/wp-content/wflogs/rules.php on line 1595
    [04-Feb-2024 00:03:33 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:03:34 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 151552 bytes) in /home/summitenvcon/public_html/wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php on line 33
    [04-Feb-2024 00:04:14 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:04:14 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-number.php on line 225
    [04-Feb-2024 00:04:20 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:04:20 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 498
    [04-Feb-2024 00:04:22 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:04:23 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 32768 bytes) in /home/summitenvcon/public_html/wp-content/wflogs/rules.php on line 1595
    [04-Feb-2024 00:04:23 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:04:23 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:04:24 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:04:24 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 151552 bytes) in /home/summitenvcon/public_html/wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php on line 33
    [04-Feb-2024 00:04:24 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 493
    [04-Feb-2024 00:04:24 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:04:24 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 32768 bytes) in /home/summitenvcon/public_html/wp-content/wflogs/rules.php on line 1595
    [04-Feb-2024 00:04:25 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:04:25 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:04:25 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 20480 bytes) in /home/summitenvcon/public_html/wp-content/plugins/wordfence/lib/wfUtils.php on line 334
    [04-Feb-2024 00:04:25 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 151552 bytes) in /home/summitenvcon/public_html/wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php on line 33
    [04-Feb-2024 00:04:26 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:04:26 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 20480 bytes) in /home/summitenvcon/public_html/wp-content/plugins/wordfence/lib/wfUtils.php on line 334
    [04-Feb-2024 00:05:30 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:05:30 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/common.php on line 502
    [04-Feb-2024 00:05:59 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:05:59 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 493
    [04-Feb-2024 00:06:12 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:06:12 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 500
    [04-Feb-2024 00:07:22 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:07:22 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 493
    [04-Feb-2024 00:07:23 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:07:23 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:07:23 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:07:23 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 32768 bytes) in /home/summitenvcon/public_html/wp-content/wflogs/rules.php on line 1595
    [04-Feb-2024 00:07:23 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:07:24 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 151552 bytes) in /home/summitenvcon/public_html/wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php on line 33
    [04-Feb-2024 00:07:37 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:07:37 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-number.php on line 75
    [04-Feb-2024 00:08:14 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:08:14 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 498
    [04-Feb-2024 00:08:20 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:08:20 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 498
    [04-Feb-2024 00:10:10 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:10:10 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-number.php on line 199
    [04-Feb-2024 00:10:40 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:10:41 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-number.php on line 119
    [04-Feb-2024 00:11:04 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:11:05 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 546
    [04-Feb-2024 00:11:50 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:11:50 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 500
    [04-Feb-2024 00:12:11 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:12:11 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/themes/enfold/framework/php/widgets/widget-classes/class-avia-combo.php on line 103
    [04-Feb-2024 00:12:15 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:12:15 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/themes/enfold/framework/php/widgets/widget-classes/class-avia-combo.php on line 134
    [04-Feb-2024 00:14:38 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:14:38 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 493
    [04-Feb-2024 00:14:39 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:14:39 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/default-constants.php on line 69
    [04-Feb-2024 00:14:39 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 32768 bytes) in /home/summitenvcon/public_html/wp-content/wflogs/rules.php on line 1595
    [04-Feb-2024 00:14:39 UTC] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2621440 bytes) in /home/summitenvcon/public_html/wp-content/plugins/gravityforms/includes/fields/class-gf-field-name.php on line 493
    [04-Feb-2024 10:14:41 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:14:42 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:14:43 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:14:44 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:14:44 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:14:45 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:14:45 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:14:46 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:14:48 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:14:51 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:14:55 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:15:00 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:15:04 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:15:09 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:15:15 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:15:19 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:15:30 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 10:15:30 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on line 605
    [04-Feb-2024 14:37:26 UTC] PHP Warning: ini_set() has been disabled for security reasons in /home/summitenvcon/public_html/wp-includes/load.php on

    #1431283

    I didn’t add WP_MEMORY_LIMIT constant anywhere but guy from Ionos may have.

    I have disabled the W3TC plugin via FTP and get a new error:

    W3 Total Cache Error: some files appear to be missing or out of place. Please re-install plugin or remove /homepages/43/d603302806/htdocs/clickandbuilds/AnneCurrySculpture/wp-content/advanced-cache.php.

    Fatal error: Allowed memory size of 62914560 bytes exhausted (tried to allocate 20480 bytes) in /homepages/43/d603302806/htdocs/clickandbuilds/AnneCurrySculpture/wp-includes/functions.php on line 650

    Fatal error: Allowed memory size of 62914560 bytes exhausted (tried to allocate 20480 bytes) in /homepages/43/d603302806/htdocs/clickandbuilds/AnneCurrySculpture/wp-includes/class-wp-fatal-error-handler.php on line 74

    Thanks
    Rob

    #1430236

    I added it at the end as below but still getting an error:
    Fatal error: W3TC\Generic_Plugin::ob_callback(): Cannot use output buffering in output buffering display handlers in /homepages/43/d603302806/htdocs/clickandbuilds/AnneCurrySculpture/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.php on line 917

    Fatal error: Allowed memory size of 62914560 bytes exhausted (tried to allocate 40960 bytes) in /homepages/43/d603302806/htdocs/clickandbuilds/AnneCurrySculpture/wp-includes/plugin.php on line 177

    #1430231

    Hi,

    Thank you for the info.

    We also encounter this error when we attempt to log in to the site.

    Fatal error: Allowed memory size of 62914560 bytes exhausted (tried to allocate 20480 bytes) in /homepages/43/d603302806/htdocs/site/wp-includes/functions.php on line 2190

    Have you tried increasing the PHP memory limit?

    // https://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/

    You can add this code in the wp-config.php file.

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

    Best regards,
    Ismael

    #1426042
    dlott
    Participant

    When activating Enfold v5.6.5 in a cPanel with PHP 8, the website crashes and “There has been a critical error on this website.” displays.

    Error Log:
    [20-Nov-2023 06:08:54 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 662
    [20-Nov-2023 06:12:14 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 618
    [20-Nov-2023 06:12:15 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 601
    [20-Nov-2023 06:58:08 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 662
    [20-Nov-2023 07:11:01 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 643
    [20-Nov-2023 07:17:46 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 590
    [20-Nov-2023 07:21:22 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 590
    [20-Nov-2023 07:21:55 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 590
    [20-Nov-2023 07:25:13 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 662
    [20-Nov-2023 07:31:50 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 643
    [20-Nov-2023 07:45:07 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 226
    [20-Nov-2023 07:45:15 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 226
    [20-Nov-2023 07:48:19 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 77
    [20-Nov-2023 07:48:27 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 235
    [20-Nov-2023 07:48:28 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 226
    [20-Nov-2023 07:48:31 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 234
    [20-Nov-2023 07:48:32 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 226
    [20-Nov-2023 07:50:50 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 233
    [20-Nov-2023 07:50:51 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 77
    [20-Nov-2023 07:54:30 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 5242880 bytes) in /home/betagchtravis/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php on line 64

    Suggestions?

    #1425305

    Hi SHR Design,

    Thanks for providing the video, I think those weird errors you’re getting is because of memory issue.
    If I check on Site Health, the memory limit is 896M however on this timestamp: https://youtu.be/usO0gsLTBF0?t=687 this error appears:
    Allowed memory size of 134217728 bytes exhausted
    Which is equivalent only to 128M.

    And on this timestamp: https://youtu.be/usO0gsLTBF0?t=773 this error appears:
    Service Unavailable
    The server is temporarily unavailable to service your request due to maintenance downtime or capacity problems.

    Which seems to specify that there’s some capacity problems.

    Here’s some causes of the error: https://bobcares.com/blog/litespeed-503-service-unavailable/

    I think the most probable cause is memory issue because Site Health can be tricked to have a higher amount of memory when the memory_limit is set even though the limit is actually lower. Also, those slowness you’re experiencing and some weird issues popping out in random is a sign that memory usage is at it’s limit.

    Enfold’s hosting requirement can be found here: https://kriesi.at/documentation/enfold/hosting-requirement/

    As for those deprecated errors, you can ignore them, the ones to look-out for are the fatal errors.

    Best regards,
    Nikko

    #1425239

    Hi Nikko

    I have noticed there is a mix of errors with the labhuset.no web site. The site ran WP 6.3.2 at the time I took the below video. Right afterward I upgraded it to WP 6.4 but all the same errors remained.

    The video became much longer (24 minutes) than I hoped as multiple issues showed up along the way.

    1- I have contacted ManageWP about the errors related to the Worker plugin.
    There are various errors there, so it is hard to pinpoint what is really going on.
    This is a work in progress. I thought I would share the video just in case you have any thoughts regarding what is going on.

    Here is one Enfold error that came up.
    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /home/L/Labhusetno//www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-base.php on line 104

    • This reply was modified 1 year, 3 months ago by SHR Design. Reason: Added an error related to Enfold
    #1416097

    In reply to: critical error

    This reply has been marked as private.
    #1401892

    I activate the WordPress Debug-Modus.
    When I activate the Enfold-Theme, this message is shown:
    Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 20480 bytes) in /usr/www/users/stbugo/wp2023/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-base.php on line 104

    Hi Rikard,

    I contacted the company where my website is hosted.
    He was saying that the WP Memory limit was too low and he got this error:
    [Tue Jan 10 08:55:30.906775 2023] [proxy_fcgi:error] [pid 5534:tid 140605669594880] [client 188.207.216.106:47932] AH01071: Got error ‘PHP message: PHP Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 20480 bytes) in /home/qconcepts/domains/aeronamics.com/public_html/wp-content/plugins/woocommerce/src/Internal/DataStores/Orders/OrdersTableDataStore.php on line 546PHP message: PHP Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 20480 bytes) in /home/qconcepts/domains/aeronamics.com/public_html/wp-includes/plugin.php on line 173’

    He solved this bij addid the following code to WP-config.php;
    define( ‘WP_MEMORY_LIMIT’, ‘256M’ );

    However, now my video is still not running. Could you have a look to my website please? I don’t know what to do right now.

    Thanks, Leonie

    So now

    #1376264

    @Rikard, @Yigit, I enabled the Debug mode inside WordPress and then I installed the theme, which triggered the crash again. Then I got two kinds of error logs. The first I will paste here below. It is from the error.txt file from the server:

    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:24 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:14:25 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 272893 bytes) in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfoldhello/css/dynamic-css.php on line 1134
    [15-Dec-2022 11:22:04 UTC] PHP Notice: Function register_block_script_handle was called incorrectly. The asset file for the “editorScript” defined in the “contact-form-7/contact-form-selector” block definition is missing. Please see Debugging in WordPress for more information. (This message was added in version 5.5.0.) in /kunden/501055_10249/webseiten/wordpress/wp-includes/functions.php on line 5836
    [15-Dec-2022 11:23:04 UTC] PHP Notice: Function register_block_script_handle was called incorrectly. The asset file for the “editorScript” defined in the “contact-form-7/contact-form-selector” block definition is missing. Please see Debugging in WordPress for more information. (This message was added in version 5.5.0.) in /kunden/501055_10249/webseiten/wordpress/wp-includes/functions.php on line 5836
    [15-Dec-2022 11:24:01 UTC] PHP Notice: Function register_block_script_handle was called incorrectly. The asset file for the “editorScript” defined in the “contact-form-7/contact-form-selector” block definition is missing. Please see Debugging in WordPress for more information. (This message was added in version 5.5.0.) in /kunden/501055_10249/webseiten/wordpress/wp-includes/functions.php on line 5836
    [15-Dec-2022 11:24:02 UTC] PHP Strict Standards: Static function aviaBuilder\base\aviaSubItemQueryBase::default_args() should not be abstract in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-sub-item-query-base.php on line 117
    [15-Dec-2022 11:24:02 UTC] PHP Notice: Function register_block_script_handle was called incorrectly. The asset file for the “editorScript” defined in the “contact-form-7/contact-form-selector” block definition is missing. Please see Debugging in WordPress for more information. (This message was added in version 5.5.0.) in /kunden/501055_10249/webseiten/wordpress/wp-includes/functions.php on line 5836
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:02 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:24:03 UTC] PHP Warning: Cannot modify header information – headers already sent by (output started at /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php:220) in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/framework/php/function-set-avia-backend.php on line 832
    [15-Dec-2022 11:24:03 UTC] PHP Warning: Cannot modify header information – headers already sent by (output started at /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php:220) in /kunden/501055_10249/webseiten/wordpress/wp-admin/includes/misc.php on line 1416
    [15-Dec-2022 11:24:03 UTC] PHP Warning: Cannot modify header information – headers already sent by (output started at /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php:220) in /kunden/501055_10249/webseiten/wordpress/wp-includes/functions.php on line 6865
    [15-Dec-2022 11:24:03 UTC] PHP Warning: Cannot modify header information – headers already sent by (output started at /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php:220) in /kunden/501055_10249/webseiten/wordpress/wp-admin/admin-header.php on line 9
    [15-Dec-2022 11:25:04 UTC] PHP Strict Standards: Static function aviaBuilder\base\aviaSubItemQueryBase::default_args() should not be abstract in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-sub-item-query-base.php on line 117
    [15-Dec-2022 11:25:04 UTC] PHP Notice: Function register_block_script_handle was called incorrectly. The asset file for the “editorScript” defined in the “contact-form-7/contact-form-selector” block definition is missing. Please see Debugging in WordPress for more information. (This message was added in version 5.5.0.) in /kunden/501055_10249/webseiten/wordpress/wp-includes/functions.php on line 5836
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:12 UTC] PHP Strict Standards: Static function aviaBuilder\base\aviaSubItemQueryBase::default_args() should not be abstract in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-sub-item-query-base.php on line 117
    [15-Dec-2022 11:25:12 UTC] PHP Notice: Function register_block_script_handle was called incorrectly. The asset file for the “editorScript” defined in the “contact-form-7/contact-form-selector” block definition is missing. Please see Debugging in WordPress for more information. (This message was added in version 5.5.0.) in /kunden/501055_10249/webseiten/wordpress/wp-includes/functions.php on line 5836
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:25:13 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:04 UTC] PHP Strict Standards: Static function aviaBuilder\base\aviaSubItemQueryBase::default_args() should not be abstract in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-sub-item-query-base.php on line 117
    [15-Dec-2022 11:26:04 UTC] PHP Notice: Function register_block_script_handle was called incorrectly. The asset file for the “editorScript” defined in the “contact-form-7/contact-form-selector” block definition is missing. Please see Debugging in WordPress for more information. (This message was added in version 5.5.0.) in /kunden/501055_10249/webseiten/wordpress/wp-includes/functions.php on line 5836
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘default’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘desktop’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘medium’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘small’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220
    [15-Dec-2022 11:26:05 UTC] PHP Warning: Illegal string offset ‘mini’ in /kunden/501055_10249/webseiten/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220

    dk_highbridge
    Participant

    I am trying to run this theme on staging on Flywheel and they’ve increased memory but it’s till causing an error:

    PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 118784 bytes) in /www/wp-content/themes/enfold/css/dynamic-css.php on line 226"

    #1364844

    Hi Ismael,

    I put the ftp credentials in the private section.

    Here is the log:

    [12-Sep-2022 18:21:36 UTC] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 135168 bytes) in …/httpdocs/wp/wp-includes/wp-db.php on line 2135
    [13-Sep-2022 03:28:21 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 12288 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:21 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 03:28:21 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 12288 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:21 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 03:28:24 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 40960 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:24 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 03:28:25 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 40960 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:25 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 03:28:25 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 40960 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:25 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 03:28:26 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 40960 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:26 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 03:28:26 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 40960 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:26 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 03:28:28 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 40960 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:28 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 03:28:28 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 40960 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:28 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 03:28:29 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 40960 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:29 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 03:28:30 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 40960 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:30 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 03:28:31 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 40960 bytes) in …/httpdocs/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683
    [13-Sep-2022 03:28:31 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32768 bytes) in /opt/psa/admin/plib/modules/wp-toolkit/vendor/wp-cli/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php on line 1
    [13-Sep-2022 05:12:42 UTC] PHP Notice: Undefined index: path in …/httpdocs/wp/wp-includes/l10n.php on line 1049
    [13-Sep-2022 05:12:42 UTC] PHP Notice: Undefined index: path in …/httpdocs/wp/wp-includes/l10n.php on line 1066
    [13-Sep-2022 05:12:42 UTC] PHP Notice: Undefined index: path in …/httpdocs/wp/wp-includes/l10n.php on line 1084
    [13-Sep-2022 05:12:42 UTC] PHP Notice: Undefined index: path in …/httpdocs/wp/wp-includes/l10n.php on line 1049
    [13-Sep-2022 05:12:42 UTC] PHP Notice: Undefined index: path in …/httpdocs/wp/wp-includes/l10n.php on line 1066
    [13-Sep-2022 05:12:42 UTC] PHP Notice: Undefined index: path in …/httpdocs/wp/wp-includes/l10n.php on line 1084

    I got an error when uploading images as well but after refreshing the upload works and I can use the image.

    Best regards
    Bernhard

    #1364660
    bernhardk3
    Participant

    Hi,
    I am receiving a fatal error since some weeks regarding the memory size. In my opinion it could correlate with an automatic update to WordPress 6.0.2 on 04.09.2022. I tried several ways of fixing it but all failed. I contacted already my hoster (netcup) for an upgrade because the package includes just 64 MB php memory (what using other themes hasn’t been a problem so far). At the moment it’s still the original package as it probably is just a error of a plugin I guess. Last week I also got an automatic mail with a error description regarding enfold but couldn’t find a good fix for it.

    I tried to manually override wordpress and enfold files for a clean update but this has not had any positive effect.

    ERROR MESSAGE WHEN UPDATING THE HOME SITE:
    Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 131072 bytes) in …/httpdocs/wp/wp-includes/wp-db.php on line 2135

    MAIL:
    WordPress-Version 6.0.2
    Aktives Theme: enfold (Version )
    Aktuelles Plugin: (Version )
    PHP-Version 7.4.30

    Fehler-Details
    ==============
    Ein Fehler vom Typ E_COMPILE_ERROR wurde in der Zeile 185 der Datei …/httpdocs/wp/wp-content/themes/enfold/functions.php verursacht. Fehlermeldung: require_once(): Failed opening required ‘includes/helper-privacy.php’ (include_path=’.:/usr/local/php74/share/php74′)

    Wordpress-Admin-Details in the private section. Tell me, if you need access to the hoster’s backend.

    Kind regards

    todtbern
    Participant

    After update to Enfold 5.1.1. the website produces following fatal error:
    Fatal error: Allowed memory size of 100663296 bytes exhausted (tried to allocate 4 bytes) in /var/home/webt_at/www/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php on line 2683

    #1357965

    In reply to: php 7.4 or php 8.0

    This reply has been marked as private.
    #1355385
    Adtime
    Participant

    Hi guys,

    we wanted to put a website online today, but after changing the url in the database (Better Search & Replace), the following error occurs:

    Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 268435464 bytes) in /html/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-element-templates.php on line 3531

    Increasing the memory doesn’t make sense, Enfold goes into an infinite loop (while(true)) in said line because it can’t find the correct content templates anymore.

    The changes of the Url’s in the database look so far correctly / as with other sites also.

    An update to Enfold 5 was also tried. Downgrades also.

    Deactivating the plugins does not help. All other 1st level stuff do not work either.

    I can provide a test environment.

    The page is very large (+wpml) and putting it online is urgent.

    Please help.

    <!–
    Debugging Info for Theme support:

    Theme: Enfold
    Version: 4.9.2.2
    Installed: enfold
    AviaFramework Version: 5.0
    AviaBuilder Version: 4.8
    aviaElementManager Version: 1.0.1
    – – – – – – – – – – –
    ChildTheme: Enfold Child
    ChildTheme Version: 1.0
    ChildTheme Installed: enfold

    ML:256-PU:120-PLA:17
    WP:6.0
    Compress: CSS:all theme files – JS:all theme files
    Updates: enabled – token has changed and not verified
    PLAu:16
    –>

    Hi,

    Thanks for the update. I’m seeing this on your site now:

    Fatal error: Allowed memory size of 2097152 bytes exhausted (tried to allocate 20480 bytes) in /var/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/cell.php on line 969

    Please try to increase the memory allocated to PHP on your installation: https://wordpress.org/support/article/editing-wp-config-php/. If you need help with that, then please try reaching out to your hosting provider.

    Best regards,
    Rikard

    #1337379

    Hi,

    Sorry, login should be good now.

    I have turned off all the plugins and im still getting the same error. Also, debugging is turned on now.

    Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 16384 bytes) in /home/devcganet/public_html/wp-includes/formatting.php on line 486

    #1337155
    acscreativenew
    Participant

    Hi, so im running enfold and have run into a couple of issues on my website.

    First when I try to save a page with the “social buttons” element the page will not save.
    Second the search is a little messed up. When i use the search it will drop down the ajax search but when i view all results it throws an error.

    Can you help me take a look at these issues on my website?

    I keep getting these errors within my logs

    [25-Jan-2022 18:02:59 UTC] PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 16384 bytes) in /home/devcganet/public_html/wp-includes/formatting.php on line 486

    Here are my PHP settings

    display_errors = Off
    max_execution_time = 90
    max_input_time = 90
    max_input_vars = 4000
    memory_limit = 512M
    post_max_size = 256M
    session.gc_maxlifetime = 1440
    session.save_path = “/var/cpanel/php/sessions/ea-php74”
    upload_max_filesize = 60M
    zlib.output_compression = Off

    Thanks
    -Dan

    #1325755
    johnoros
    Participant

    Hello,

    I am currently running WordPress 5.8.1 and Enfold 4.8.6.5

    When I enable PHP 7.4 on my VPS my site throws the following errors. How can I resolve the error related to Enfold.

    Errors I am receiving with debug mode turned on
    Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 32768 bytes) in /home/mysite/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-html-helper.php on line 1701

    Any help much appreciated,
    Thanks,
    John O Connor

Viewing 30 results - 1 through 30 (of 223 total)