• The index.php is creating a large of request to the server which are overwhelming the resources.
    I have increased the limits on the server, and still the issue remains…

    Help please

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

Viewing 1 replies (of 1 total)
  • Try to avoid External resources and Add the following to your .htaccess file:
    # compress text, html, javascript, css, xml:
    AddOutputFilterByType DEFLATE text/plain
    AddOutputFilterByType DEFLATE text/html
    AddOutputFilterByType DEFLATE text/xml
    AddOutputFilterByType DEFLATE text/css
    AddOutputFilterByType DEFLATE application/xml
    AddOutputFilterByType DEFLATE application/xhtml+xml
    AddOutputFilterByType DEFLATE application/rss+xml
    AddOutputFilterByType DEFLATE application/javascript
    AddOutputFilterByType DEFLATE application/x-javascript

    # Or, compress certain file types by extension:
    <files *.html>
    SetOutputFilter DEFLATE
    </files>`
    otherwise try opcache_enabled

Viewing 1 replies (of 1 total)
  • The topic ‘index.php creating too many requests to the server’ is closed to new replies.