WPIntell

Source evidence

high cpu usage

Comments – wpDiscuz · support · 2026-01-19T04:46:00+00:00

complaintsentiment
mediumseverity
0.62relevance
4replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

6 / 30 rows with source links

20.0% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

24 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
aaronwongxm resolved
After upgrading to wpdiscuz 7.6.43, we noticed a spike in CPU utilisation. This was because of a significant increase in AJAX requests. In 7.6.43, every page visit there’s an ajax call for “wpdnonce” where the response is a wpdiscuz cookie, this would explain the increase in ajax calls and the corresponding increase in cpu utilisation since ajax goes straight to the origin lightsail server I reverted the plugin version on staging site to 7.6.38 which was the version prior to the update. Upon checking, we can see the difference is that no AJAX calls are made by wpdiscuz upon page loads, confirming that the plugin update was responsible for the change in behaviour, increase in AJAX calls, and subsequent increase in CPU utilisation. Hi, We’ll check and get back to you ASAP. Please follow the steps below: Update the wpDiscuz plugin to the latest version ( v7.6.45 ). Add the hook code to your active theme’s functions.php file: add_filter('wpdiscuz_validate_nonce_for_guests', '__return_false'); Instruction: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/ Clear all caches and check again. If possible, I would like to avoid modifying any PHP code on the instance as it will increase the management efforts and may complicate troubleshooting in the future. Could i check if you have plans to enable this option within the settings menu in a next version? Hi @aaronwongxm , No need any PHP modifications. Adding a new line in functions.php of child theme is common practice, you’re adding, you don’t do any modification that could be overwritten with updates. As an alternative you can do a hook configuration with a code snippet. You can use Code Snippets plugin to put this code in that: add_filter('wpdiscuz_validate_nonce_for_guests', '__return_false'); I’m sorry but we’re not planning to add such setting option in the near future versions. This reply was modified 4 months ago by gVectors Team . This reply was modified 4 months ago by gVectors Team .

Comments

4 shown
gVectors Support 2026-01-19T11:12:00+00:00

Hi, We’ll check and get back to you ASAP.

gVectors Support 2026-01-20T08:54:00+00:00

Please follow the steps below: Update the wpDiscuz plugin to the latest version ( v7.6.45 ). Add the hook code to your active theme’s functions.php file: add_filter('wpdiscuz_validate_nonce_for_guests', '__return_false'); Instruction: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/ Clear all caches and check again.

aaronwongxm 2026-01-22T22:43:00+00:00

If possible, I would like to avoid modifying any PHP code on the instance as it will increase the management efforts and may complicate troubleshooting in the future. Could i check if you have plans to enable this option within the settings menu in a next version?

gVectors Team 2026-01-23T07:44:00+00:00

Hi @aaronwongxm , No need any PHP modifications. Adding a new line in functions.php of child theme is common practice, you’re adding, you don’t do any modification that could be overwritten with updates. As an alternative you can do a hook configuration with a code snippet. You can use Code Snippets plugin to put this code in that: add_filter('wpdiscuz_validate_nonce_for_guests', '__return_false'); I’m sorry but we’re not planning to add such setting option in the near future versions. This reply was modified 4 months ago by gVectors Team . This reply was modified 4 months ago by gVectors Team .