• Resolved lylesmoviefiles

    (@lylesmoviefiles)


    Hello

    My web host said that I’m getting a massive problems with autoloads from the plugin and suggested I reach out for assistance. Here is a screenshot of the issue. Thank you.

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

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

    (@elviiso)

    Hi @lylesmoviefiles

    Thanks for reaching out and sharing the screenshot. From the screenshot shared, I am unable to see any large autoloaded options from FooGallery.

    With that said, if there are any and your web host is concerned regarding the options from FooGallery I will share some recommendations you or your web host can implement:

    1. Disabling autoload for large options

    If there are large autoload options from FooGallery identified by your web host that they feel would cause issues, they can run the following query to prevent these options from loading on every page request

    UPDATE wp_options 
    SET autoload = 'no'
    WHERE option_name IN ('replace with the option_name with large sizes');

    2. Cleaning Up the Database

    You or your we host can clean up the database to prevent the large autoloaded options from loading on every page request, improving performance. You can use a plugin like WP-Optimize or run the following querry:

    DELETE FROM wp_options WHERE option_name LIKE 'replace with the option_name with large sizes';

    In the meantime we will also look into this internally and analyse if any optimisations are needed. Thanks

Viewing 1 replies (of 1 total)

The topic ‘Autoload issues’ is closed to new replies.