This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

SEO Yeost Posting Problems

Home Forums Product Support Forums Ajax Search Pro for WordPress Support SEO Yeost Posting Problems

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #11612
    aircompsalesaircompsales
    Participant

    With the latest update of your plugin I cannot save now to SEO Yeost. When I disable your plugin SEO yoest works again. I am running on 4.9.8 version of your plugin and WordPress 4.7.1. Please let me know what can be done to fix this. SEO Yoast is the top SEO plugin and really surprised that there is a compatibility problems with your last update.

    #11619
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    It’s a known issue, affecting a small portion of installations. It is caused by the ajax search pro indexing function, where a certain core blog switching statement is not acting as expected.

    To resolve this, one minor modification is needed to one of the files. In case you can’t do it, let me know, and I will log-in via FTP and do it for you.

    1. open up the wp-content\plugins\ajax-search-pro\includes\classes\etc\indextable.class.php file
    2. Scroll to lines 77-79, which is:
    [php]
    if ( is_multisite() ) {
    switch_to_blog( $this->args[‘blog_id’] );
    }
    [/php]
    3. Change thos lines to this:
    [php]
    if ( is_multisite() && !empty($this->args[‘blog_id’]) &&
    $this->args[‘blog_id’] != get_current_blog_id() ) {
    switch_to_blog( $this->args[‘blog_id’] );
    }
    [/php]
    4. Save the file, and it’s done.

    I’m fixing this for the upcoming release of course, so you won’t have to worry about it anymore.

    #11628
    aircompsalesaircompsales
    Participant

    Works great now thanks!

    #11630
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘SEO Yeost Posting Problems’ is closed to new replies.