Forum Replies Created

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

    (@kriscronuk)

    Nothing is fine. Are you going to fix the bug?

    Thread Starter kriscronuk

    (@kriscronuk)

    What do you mean most of the plugins??? Your plugin is the only plugin that does these stupid things. First you blamed the server and now refuses to admit a bug in your plugin. BTW thanks for your tip on wordpress doc but I am a developer myself so I know what I am talking about.

    Thread Starter kriscronuk

    (@kriscronuk)

    Not true. My client has hundreds of pages, imagine the negative impact on server performance with these slow LIKe queries. You don’t need these for every requested page. It is a bug.

    SELECT ID AS id, post_name AS slug
    FROM wp_posts
    WHERE (post_content LIKE ‘%[webdirectory]%’)
    AND post_status = ‘publish’
    AND post_type = ‘page’

    SELECT ID AS id, post_name AS slug
    FROM wp_posts
    WHERE (post_content LIKE ‘%[webdirectory %’)
    AND post_status = ‘publish’
    AND post_type = ‘page’

    SELECT ID AS id
    FROM wp_posts
    WHERE (post_content LIKE ‘%[webdirectory-listing-page]%’
    OR post_content LIKE ‘%[webdirectory-listing]%’)
    AND post_status = ‘publish’
    AND post_type = ‘page’

    SELECT ID AS id
    FROM wp_posts
    WHERE (post_content LIKE ‘%[webdirectory-listing-page %’
    OR post_content LIKE ‘%[webdirectory-listing %’)
    AND post_status = ‘publish’
    AND post_type = ‘page’

    Thread Starter kriscronuk

    (@kriscronuk)

    There is no problem with my server.

    Thread Starter kriscronuk

    (@kriscronuk)

    Why marked “Resolved”? Your plugin is repeatedly scanning the Posts table on every page. Will you fix this bug?

Viewing 5 replies - 1 through 5 (of 5 total)