• Dear all,

    [My site uses the] Riven theme.

     Yesterday I updated WP at latest version 6.6.2 but now I have troubles

     with backend editor. I’d want to restabilish the previous layout block

     editors (visual composer) to avoid the problem.

     How can I do? Can you help me pls?

    Furthermore, I found this error in my site: Fatal error: Uncaught Error: Call to undefined function wp_kses() in /web/htdocs/www.oraxapp.it/home/wp-includes/functions.php:6073

    What can I do? I am not able to see blog page of my site anymore 🙁

     Waiting for your kind reply

     Thanks

     regards

     Maika Messalli

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator t-p

    (@t-p)

    This may be a plugin or theme conflict. Access your server via SFTP or FTP, or a file manager in your hosting account’s control panel (consult your hosting provider’s documentation for specifics on these), navigate to /wp-content/themes/plugins/ and rename or delete the directory of your currently active theme/plugin. That will force your site to use the default theme (Twenty Twenty-one, etc.).

    – If the above steps do no resolve the issue, try Manually upgrading. When all else fails, download a fresh copy of the WordPress (top right on this page) to your computer, and use that to copy up. Access your server via SFTP or FTP, or a file manager in your hosting account’s control panel (consult your hosting provider’s documentation for specifics on these), and delete then replace the wp-admin and wp-includes folders on your server (NOTE: do not delete the wp-content directory or your wp-config.php file). Read the Manual Update directions first.

    BACKUP: If you haven’t already done, always backup everything (including your database) before doing any actions, just in case something really goes wrong. You can never have enough backups! See https://wordpress.org/support/article/wordpress-backups/

    Thread Starter maika1981

    (@maika1981)

    Dear, many thanks for your help! 🙂

    I followed your tips but I didn’t solve the problem. I replace Riven theme with Twenty Twenty one them and I saw the blog page is visible withe the new theme, so I realized that the problem is cause by the Riven theme. Then I downloaded 6.6.2 Wp (the latest) and 5.9.0 Wp version (the one I had before) to try both versions: I went in my file manager panel (from Aruba), rename the actual wp-admin and wp-includes folders in “wp-admin-OLD” and “wp-includes-OLD” and then upload wp-admin and wp-includes folders of the 6.6.2 first and then (after removing them) of the 5.9.0.

    Blog page is still not visible and backend editor has still a wrong visualization, I mean a different from previous Riven style backend editor 🙁

    I really don’t know what to do.

    I tried also to deactivate plugins but no changes, so I activate them again.

    I don’t know why just a page (blog page) is not visible while the other pages are visible.

    Furthermore, why the new version of WP (6.6.2) made conflicts with Riven theme?

    I really appreciate your help and any advice.

    Many thanks

    Maika

    Moderator t-p

    (@t-p)

    Your page opens up fine for. Little slow, but it does opens fine.

    Try:
    – Flushing any caching plugins you might be running, as well as server and/or browser caches. Not just your browser, but any op cache or content network cache as well such as Cloudflare. That will solve many weird JavaScript issues.
    – Flushing Managed host caches. Managed WP hosting often has special caches. If your host has a “Purge Varnish” or “Flush Memcache” tool, try that. You can ask your provider to flush memcache and Varnish for you if necessary.

    Thread Starter maika1981

    (@maika1981)

    Dear, I followed your tips. I removed cache from chrome, safari, from WP editor clicking on “performance” and then on “purge all caches” and also from W3 Total Cache plugin clicking on “Empty all caches”. Anyhow, I’m not able to see this page: https://www.oraxapp.it/blog/

    Can you see it?

    Is it possible that there is an error on server related just with this page?

    Waiting for your kind reply

    thanks

    Maika

    Thread Starter maika1981

    (@maika1981)

    Furthermore, I have found in my file manager of hosting, then wp-admin–> includes–> post.php and I found this text:

    @param bool $update Whether the post already exists.

    • @param array|null $post_data Optional. The array of post data to process.
    • Defaults to the $_POST superglobal.
    • @return array|WP_Error Array of post data on success, WP_Error on failure.
      */
      function _wp_translate_postdata( $update = false, $post_data = null ) { if ( empty( $post_data ) ) {
      $post_data = &$_POST;
      } if ( $update ) {
      $post_data[‘ID’] = (int) $post_data[‘post_ID’];
      } $ptype = get_post_type_object( $post_data[‘post_type’] ); if ( $update && ! current_user_can( ‘edit_post’, $post_data[‘ID’] ) ) {
      if ( ‘page’ === $post_data[‘post_type’] ) {
      return new WP_Error( ‘edit_others_pages’, ( ‘Sorry, you are not allowed to edit pages as this user.’ ) ); } else { return new WP_Error( ‘edit_others_posts’, ( ‘Sorry, you are not allowed to edit posts as this user.’ ) );
      }
      } elseif ( ! $update && ! current_user_can( $ptype->cap->create_posts ) ) {
      if ( ‘page’ === $post_data[‘post_type’] ) {
      return new WP_Error( ‘edit_others_pages’, ( ‘Sorry, you are not allowed to create pages as this user.’ ) ); } else { return new WP_Error( ‘edit_others_posts’, ( ‘Sorry, you are not allowed to create posts as this user.’ ) );
      }
      }

    Can this error message be responsible of noti visible blog page?

    Moderator t-p

    (@t-p)

    Now I see your site throwing Critical Error.

    review this tutorial https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-critical-error-in-wordpress/

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

The topic ‘problems after WP updating’ is closed to new replies.