Not able to edit drupal node

Not applicable

Whene I tried to edit a drupal node it shows invalid function name.

276-editissue1.png

277-editissue2.png

Could you please help in this.

0 3 345
3 REPLIES 3

Not applicable

Hi @chetan chouhan

There seems to be problem in your drupal instance ( error is generic ) , If you already not tried clearing registry, Can you please do the below.

Please login to the server and clear caches.

# Navigate to document root cd /var/www/html drush rr drush cc all

If you still see issues after clearing caches, Please share the Devportal url and access to it.

Not applicable

There is a known issue with SmartDocs interacting with Drupal 7.36 which will be fixed in the next release. In the meantime, running the following SQL should take care of the problem:

UPDATE node_type
SET disabled = 0, custom = 1
WHERE type IN (
  SELECT DISTINCT n.type
  FROM node n
  INNER JOIN smartdata s ON n.nid = s.nid
);

DELETE FROM cache WHERE cid LIKE 'node_types:%';

Issue has been fixed. You can Edit Smart Docs nodes without any errors.