Title: SEOreviewtools's Replies | WordPress.org

---

# SEOreviewtools

  [  ](https://wordpress.org/support/users/seoreviewtools/)

 *   [Profile](https://wordpress.org/support/users/seoreviewtools/)
 *   [Topics Started](https://wordpress.org/support/users/seoreviewtools/topics/)
 *   [Replies Created](https://wordpress.org/support/users/seoreviewtools/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/seoreviewtools/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/seoreviewtools/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/seoreviewtools/engagements/)
 *   [Favorites](https://wordpress.org/support/users/seoreviewtools/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Keyword Research Tool] Great plugin but hasn’t been updated!](https://wordpress.org/support/topic/great-plugin-but-hasnt-been-updated/)
 *  Plugin Author [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/great-plugin-but-hasnt-been-updated/#post-17459514)
 * It was just updated!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] LiteSpeed nonce issue](https://wordpress.org/support/topic/litespeed-nonce-issue/)
 *  Thread Starter [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [3 years ago](https://wordpress.org/support/topic/litespeed-nonce-issue/#post-17050098)
 * So far, so good. I’ve also remove the pages / tools that where effected from 
   the exclude list and everything seems to work as expected.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] LiteSpeed nonce issue](https://wordpress.org/support/topic/litespeed-nonce-issue/)
 *  Thread Starter [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [3 years ago](https://wordpress.org/support/topic/litespeed-nonce-issue/#post-17046639)
 * Yes, all looks good for now.
 * Any suggestions on how to configure object cache.. or just leave it disabled?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] LiteSpeed nonce issue](https://wordpress.org/support/topic/litespeed-nonce-issue/)
 *  Thread Starter [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [3 years ago](https://wordpress.org/support/topic/litespeed-nonce-issue/#post-17043884)
 * Disabled object cache a couple of hours ago and will report back to you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] LiteSpeed nonce issue](https://wordpress.org/support/topic/litespeed-nonce-issue/)
 *  Thread Starter [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [3 years ago](https://wordpress.org/support/topic/litespeed-nonce-issue/#post-17042456)
 * Excluding these pages from cashing isn’t working either. The nonce issue keeps
   popping up…
 * Any updates? Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] LiteSpeed nonce issue](https://wordpress.org/support/topic/litespeed-nonce-issue/)
 *  Thread Starter [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [3 years ago](https://wordpress.org/support/topic/litespeed-nonce-issue/#post-17040309)
 * This is the report number **TEBDTVWF**
 * I’ve excluded all important tools for now from caching.
 * This tool however uses the same configuration: [https://www.seoreviewtools.com/free-headline-generator/](https://www.seoreviewtools.com/free-headline-generator/)
   and suffers from the same caching issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] LiteSpeed nonce issue](https://wordpress.org/support/topic/litespeed-nonce-issue/)
 *  Thread Starter [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [3 years ago](https://wordpress.org/support/topic/litespeed-nonce-issue/#post-17035398)
 * Additionally it seems to happen much more frequently in Opera compared to other
   browsers.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] LiteSpeed nonce issue](https://wordpress.org/support/topic/litespeed-nonce-issue/)
 *  Thread Starter [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [3 years ago](https://wordpress.org/support/topic/litespeed-nonce-issue/#post-17035383)
 * Hi, it’s not a plugin, but it’s custom code.
 *     ```wp-block-code
       // this is how the nonce is created 
   
       function ajax_login_init(){
   
         do_action( 'litespeed_nonce', 'ajax-nonce');
         $ajax_nonce = wp_create_nonce('ajax-nonce');
         ....
        }
   
        add_action('init', 'ajax_login_init');
   
        // and this is how the nonce is verified (same file)
   
       function fetchUrl() {
   
   
       	$nonce = $_REQUEST['nonce'];
       	if ( ! wp_verify_nonce( $nonce, 'ajax-nonce' ) ) {
       		die( 'Nonce value cannot be verified.' ); 
       	}	
   
           die();
       }
       add_action('wp_ajax_fetchUrl', 'fetchUrl');
       add_action('wp_ajax_nopriv_fetchUrl', 'fetchUrl');
       ```
   
 * And the function is called by this JavaScript.
 *     ```wp-block-code
       function fetchUrl(dataInput){
   
       jQuery.ajaxSetup({
           data : {
       	action : 'fetchUrl', 
       	nonce: ajax_login_object.login_nonce, 
       	...
       	},
       });
       ```
   
    -  This reply was modified 3 years ago by [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/).
    -  This reply was modified 3 years ago by [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Keyword Research Tool] Keyword data](https://wordpress.org/support/topic/keyword-data/)
 *  Plugin Author [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [6 years ago](https://wordpress.org/support/topic/keyword-data/#post-13401738)
 * Hi gatani, sorry missed your question.. I’ll add India with the next update!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Keyword Research Tool] Embed into a Post](https://wordpress.org/support/topic/embed-into-a-post/)
 *  Plugin Author [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/embed-into-a-post/#post-11402698)
 * Hi Dounsa, good question.
 * The Keyword Research Tool is designed to run as an internal keyword tool and 
   for that reason it is not build as a public embeddable tool.
 * Cheers,
 * Jasja ter Horst
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [500 server error caused by Contextual Related Posts & Wordfence Security](https://wordpress.org/support/topic/500-server-error-caused-by-contextual-related-posts-wordfence-security/)
 *  Thread Starter [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/500-server-error-caused-by-contextual-related-posts-wordfence-security/#post-11044791)
 * Hi miroslavv,
 * I’m using my own custom theme (didn’t do any updates to the functions file, before
   the problem).
 * And have a stable local version running with the 2 plugins.
 * But my server is running on PHP version: 7.0.33
    Also did a manual full WP core
   update
 * Any suggestions in what direction to look?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [500 server error caused by Contextual Related Posts & Wordfence Security](https://wordpress.org/support/topic/500-server-error-caused-by-contextual-related-posts-wordfence-security/)
 *  Thread Starter [SEOreviewtools](https://wordpress.org/support/users/seoreviewtools/)
 * (@seoreviewtools)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/500-server-error-caused-by-contextual-related-posts-wordfence-security/#post-11044713)
 * Hi Steven,
 * They both are individually causing the front and admin area to generate 500 errors.

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