kriscronuk
Forum Replies Created
-
Forum: Plugins
In reply to: [Web Directory Free] Bad performanceNothing is fine. Are you going to fix the bug?
Forum: Plugins
In reply to: [Web Directory Free] Bad performanceWhat 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.
Forum: Plugins
In reply to: [Web Directory Free] Bad performanceNot 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’Forum: Plugins
In reply to: [Web Directory Free] Bad performanceThere is no problem with my server.
Forum: Plugins
In reply to: [Web Directory Free] Bad performanceWhy marked “Resolved”? Your plugin is repeatedly scanning the Posts table on every page. Will you fix this bug?