Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • I had this same problem. After upgrading wordpress to 5.3 as well as updating JQuery and PHP to the latest, everytime I would go to manage galleries the page would refresh and append a string to the URL in a loop. Eventually, the URL would get so long that you get a server error. The URL appendage has the “skipjs” just like in the above issues. I found a line of code in the NextGen GitHub repository that gave me a hint. If you define this variable, say in your functions.php file, then the looping URL appendage goes away:

    define(‘NGG_JQUERY_CONFLICT_DETECTION’, FALSE);

    It looks like there is something going on where NextGen is trying to indicate it should use a built-in version of JQuery and when it appends the URL, it gets stuck in a loop. Simply turning off conflict detection seems to have resolved the issue.

    Thread Starter tjarosz

    (@tjarosz)

    Here are the settings reported by the NextGen Gallery Overview page:

    Operating System : WINNT (32 Bit)
    Server : Microsoft-IIS/7.5
    Memory usage : 25.99 MByte
    MYSQL Version : 5.5.21
    SQL Mode : NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
    PHP Version : 5.4.9
    PHP Safe Mode : Off
    PHP Allow URL fopen : On
    PHP Memory Limit : 128
    PHP Max Upload Size : 2M
    PHP Max Post Size : 8M
    PCRE Backtracking Limit : 1000000
    PHP Max Script Execute Time : 300s
    PHP Exif support : Yes ( V1.4 )
    PHP IPTC support : Yes
    PHP XML support : Yes
    Graphic Library

    GD Version : bundled (2.0.34 compatible)
    FreeType Support : Yes
    FreeType Linkage : with freetype
    T1Lib Support : No
    GIF Read Support : Yes
    GIF Create Support : Yes
    JPEG Support : Yes
    PNG Support : Yes
    WBMP Support : Yes
    XPM Support : Yes
    XBM Support : Yes
    JIS-mapped Japanese Font Support : No

    This is the same issue I reported last night. @aitken.jared In the header of your site, the NextGen script declarations are missing a “/” in the URL concatenation just after the FQDN. See code from your page header below:

    </script>
    <script type='text/javascript' src='https://www.chessingtonbuzz.co.ukplugins/nextgen-gallery/products/photocrati_nextgen/modules/ajax/static/ajax.js?ver=3.9.2'></script>
    <script type='text/javascript' src='/wp-includes/js/jquery/jquery.js?ver=1.11.0'></script>
    <script type='text/javascript' src='/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1'></script>
    <script type='text/javascript' src='https://www.chessingtonbuzz.co.ukplugins/nextgen-gallery/products/photocrati_nextgen/modules/ajax/static/persist.js?ver=3.9.2'></script>
    <script type='text/javascript' src='https://www.chessingtonbuzz.co.ukplugins/nextgen-gallery/products/photocrati_nextgen/modules/ajax/static/store.js?ver=3.9.2'></script>
    <script type='text/javascript' src='https://www.chessingtonbuzz.co.ukplugins/nextgen-gallery/products/photocrati_nextgen/modules/ajax/static/ngg_store.js?ver=3.9.2'></script>
    <script type='text/javascript' src='https://www.chessingtonbuzz.co.ukplugins/nextgen-gallery/products/photocrati_nextgen/modules/lightbox/static/lightbox_context.js?ver=3.9.2'></script>
    <script type='text/javascript' src='https://www.chessingtonbuzz.co.ukplugins/nextgen-gallery-pro/modules/nextgen_pro_lightbox_legacy/static/jquery.velocity.min.js?ver=3.9.2'></script>
    <script type='text/javascript' src='/assets/js/vendor/modernizr-2.6.2.min.js'></script>
    <!-- <meta name="NextGEN" version="2.0.66.27" /> -->
Viewing 3 replies - 1 through 3 (of 3 total)