• Resolved burhi

    (@gevv)


    Hello,

    pages problem a lot of queries consumes memory, cpu and server down

    1: Add New Page — a lot of queries, cpu, memory

    2: Delete Permanently Pages — a lot of queries, cpu, memory

    3: Edit pages — a lot of queries, cpu, memory

    I can not use page 🙁 Have the problem solving ?

    (no problem when adding post)

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter burhi

    (@gevv)

    5 different sites were tested wordpress 3.1.3 new page creating pages excessive forces server

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Have you tried turning off all your plugins?

    Thread Starter burhi

    (@gevv)

    yes tried turning off all my plugins I passed the twentyten theme problem is not resolved

    Does the sub-page is too much trouble ?

    sample

    http://site.com/download-page/download-sub-page/download-xxx

    There are 350 pages in this way

    Thread Starter burhi

    (@gevv)

    I think the problem Permalinks

    page and permalinks problem 🙂

    http://t31os.wordpress.com/2010/02/18/dont-trash-delete/

    http://wajwaj.com/wordpress-permalinks-and-performance.html

    ————————————–

    http://wordpress.org/support/topic/website-works-very-slow?replies=9

    @thinqbali telling the truth

    I found out the reason,that is because my site has too many pages, about 1270 pages. when wordpress does init work, It calls a method named main(),you can find this method in “wp-includes/class.php” line 488. In this method it calls another method that causes the site so slow, that is “$this->parse_request($query_args);” line 490. this method does some url analysis work. I don’t know exactlly the analysis rules, but the numbers of analysis result is about 14200, and this really wastes a lot of time.

    Here is just a small part of the analysis result data, just for your information:
    [ngg_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?ngg_tag=$matches[1]&feed=$matches[2]
    [ngg_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?ngg_tag=$matches[1]&feed=$matches[2]
    [ngg_tag/([^/]+)/page/?([0-9]{1,})/?$] => index.php?ngg_tag=$matches[1]&paged=$matches[2]
    [ngg_tag/([^/]+)/?$] => index.php?ngg_tag=$matches[1]
    [robots\.txt$] => index.php?robots=1
    [.*wp-atom.php$] => index.php?feed=atom
    [.*wp-rdf.php$] => index.php?feed=rdf
    [.*wp-rss.php$] => index.php?feed=rss
    [.*wp-rss2.php$] => index.php?feed=rss2
    [.*wp-feed.php$] => index.php?feed=feed
    [.*wp-commentsrss2.php$] => index.php?feed=rss2&withcomments=1
    [bali-blog/attachment/([^/]+)/?$] => index.php?attachment=$matches[1]
    [bali-blog/attachment/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
    [bali-blog/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
    [bali-blog/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
    [bali-blog/attachment/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
    [(bali-blog)/trackback/?$] => index.php?pagename=$matches[1]&tb=1
    [(bali-blog)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?pagename=$matches[1]&feed=$matches[2]
    [(bali-blog)/(feed|rdf|rss|rss2|atom)/?$] => index.php?pagename=$matches[1]&feed=$matches[2]
    [(bali-blog)/page/?([0-9]{1,})/?$] => index.php?pagename=$matches[1]&paged=$matches[2]
    [(bali-blog)/comment-page-([0-9]{1,})/?$] => index.php?pagename=$matches[1]&cpage=$matches[2]
    [(bali-blog)(/[0-9]+)?/?$] => index.php?pagename=$matches[1]&page=$matches[2]
    [canggu-accomodation-search-results/attachment/([^/]+)/?$] => index.php?attachment=$matches[1]
    [canggu-accomodation-search-results/attachment/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
    [canggu-accomodation-search-results/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
    [canggu-accomodation-search-results/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
    [canggu-accomodation-search-results/attachment/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
    [(canggu-accomodation-search-results)/trackback/?$] => index.php?pagename=$matches[1]&tb=1
    [(canggu-accomodation-search-results)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?pagename=$matches[1]&feed=$matches[2]
    [(canggu-accomodation-search-results)/(feed|rdf|rss|rss2|atom)/?$] => index.php?pagename=$matches[1]&feed=$matches[2]
    [(canggu-accomodation-search-results)/page/?([0-9]{1,})/?$] => index.php?pagename=$matches[1]&paged=$matches[2]
    [(canggu-accomodation-search-results)/comment-page-([0-9]{1,})/?$] => index.php?pagename=$matches[1]&cpage=$matches[2]
    [(canggu-accomodation-search-results)(/[0-9]+)?/?$] => index.php?pagename=$matches[1]&page=$matches[2]

    It seems with the growing of our pages, the analysis data will also became more and more, my site will become slower and slower, I don’t know what shall I do now, anybody has any ideas please feel free to tell me,

    Thread Starter burhi

    (@gevv)

    Hello,

    I partially solved the problem with “no parrent” of all pages

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘pages problem a lot of queries’ is closed to new replies.