Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8853759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T13:43:41+00:00 2026-06-14T13:43:41+00:00

I have a Drupal 7 site and I’m struggling to find a solution to

  • 0

I have a Drupal 7 site and I’m struggling to find a solution to the following problem.

I have all my cron tasks are running fine but the search indexing cron. It produces this error in the logs and stops from indexing. It looks like it has something to do with the entity_extract_ids() function in field.multilingual.inc, but I have no clue where to start on this. Here is the error log:

exception 'EntityMalformedException' with message 'Missing bundle property on entity of type node.' in /home/xxxxx/public_html/includes/common.inc:7562 
Stack trace: 
#0 /home/xxxxx/public_html/modules/field/field.multilingual.inc(268): entity_extract_ids('node', Object(stdClass)) 
#1 /home/xxxxx/public_html/modules/field/field.attach.inc(1111): field_language('node', Object(stdClass), NULL, 'en')
#2 /home/xxxxx/public_html/modules/node/node.module(1358): field_attach_prepare_view('node', Array, 'search_index', 'en') 
#3 /home/xxxxx/public_html/modules/node/node.module(1284): node_build_content(false, 'search_index', 'en') 
#4 /home/xxxxx/public_html/modules/node/node.module(2668): node_view(false, 'search_index') 
#5 /home/xxxxx/public_html/modules/node/node.module(2650): _node_index_node(Object(stdClass)) 
#6 [internal function]: node_update_index() 
#7 /home/xxxxx/public_html/includes/module.inc(826): call_user_func_array('node_update_ind...', Array) 
#8 /home/xxxxx/public_html/modules/search/search.module(363): module_invoke('node', 'update_index') 
#9 [internal function]: search_cron()
#10 /home/xxxxx/public_html/sites/all/modules/ultimate_cron/ultimate_cron.module(726): call_user_func('search_cron') 
#11 [internal function]: _ultimate_cron_run_hook('search_cron', Array)
#12 /home/xxxxx/public_html/sites/all/modules/background_process/background_process.module(428): call_user_func_array('_ultimate_cron_...', Array)
#13 [internal function]: background_process_service_start('ultimate_cron%3...') 
#14 /home/xxxxx/public_html/includes/menu.inc(516): call_user_func_array('background_proc...', Array) #15 /home/xxxxx/public_html/index.php(21): menu_execute_active_handler() 
#16 {main}

Any help or insight would be greatly appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T13:43:42+00:00Added an answer on June 14, 2026 at 1:43 pm

    I’ll tell you how I fixed it.

    I got EntityMalformedException: Missing bundle property on entity of type node error in my watchlog (recent log messages) after trying to index search (so after cron run). Before my index was let’s say 48%, after cron run it stayed same.

    I did lots of things, other suggestions didn’t help me, but finally I did this and suggest you too:

    1. Backup your database!!!
    2. Go to phpMyAdmin, to “run sql” section.
    3. Put here “SELECT n.nid FROM node n LEFT JOIN search_dataset d ON d.type = ‘node’ AND d.sid = n.nid WHERE d.sid IS NULL OR d.reindex <> 0 ORDER BY d.reindex ASC, n.nid ASC LIMIT 0,1”
      if you have table prefix, don’t forget to put it here.
    4. As result you’ll get one row with nid, pick it mind.
    5. go to node table and run here “SELECT * FROM node WHERE nid=your-nid” where your-nid is nid from step 3
    6. Try to open your-website/node/your-nid – for me I got “404 error”
    7. Go back to phpMyAdmin and delete this row
    8. Run cron again

    AS for me I did this 7-8 times to delete all “bad” nodes from database and finally get 100% index

    if you don’t have access to phpMyAdmin I guess you can do this:

    Turn on PHP filter module and backup database
    create node type of page for example, to body add code

    <?php
    $result = db_query_range("SELECT n.nid FROM {node} n LEFT JOIN {search_dataset} d ON d.type = 'node' AND d.sid = n.nid WHERE d.sid IS NULL OR d.reindex <> 0 ORDER BY d.reindex ASC, n.nid ASC", 0, 1);
    echo $result;
    ?>
    

    choose “PHP Filter” of course

    Click “Preview”
    You should see node id on the screen. Test it like in step 6 of directions for phpMyAdmin and pick in mind
    Now you can delete it with adding to the body

    <?php 
    $nid = "your-nid";
    db_delete('node')
      ->condition('nid', $nid)
      ->execute();
    ?>
    

    Click Preview again
    Run Cron again

    Code above I didn’t test, so if you’ll use it please post here if it works

    Thank you and happy indexing 😉

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have Drupal 7 site which is working fine. I added a custom PHP
I have an old drupal site that I'd like to upgrade, but I need
I have a Drupal 7 site with the CAPTCHA and ReCAPTCHA modules installed, but
I have a Drupal site on a shared web host, and it's getting a
Right now I have a Drupal site where I'm integrating a custom front-end interface
I have a Drupal 7 site and need to output a small calendar control
I have inherited a Drupal 6 site to maintain. I am new to Drupal
I have a rather complicated deploy setup for our Drupal site that is a
i would like to have a block on my drupal site(latest version) that displays
I would like to have external proofreaders to work directly inside my Drupal site.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.