Further to my post http://drupal.org/node/30901
I have been working on the problem with various people for 48hrs without success to no avail however I have just completed some echo test in around the node_save function in the node.module.
When the echo is here on line 428 the echo comes back on screen
return $node;
}
/**
* Save a node object into the database.
*/
echo "SUBMIT ISSUE";
function node_save($node) {
// Fetch fields to save to node table:
$fields = node_invoke_nodeapi($node, 'fields');
However when here on 431 or below it does not comeback.
return $node;
}
/**
* Save a node object into the database.
*/
echo "SUBMIT ISSUE";
function node_save($node) {
// Fetch fields to save to node table:
$fields = node_invoke_nodeapi($node, 'fields');
echo "SUBMIT ISSUE";
All other modules still work and submit....I have tried various cvs snapshots of the story and node modules to no avail. 4.61 4.62 and 4.63 patches have all been applied and until saturday night/sunday morning everything had been working fine for weeks.
No error messages appear in the Drupal Log and the info does submit to the database asfar as the "Cache table" but no further(no node id).
No changes have been made to config apart from installation of two modules, that required no patching to anthing they have both now been removed but to still no avail.