Please Help with Qdrupal nodes revisions bug
Hi,
I was working with Qdrupal, I updated a Qdrupal node with the qdrupal editing node form and tried to test the Revision fields (create new revision and description). Now after saving the node I got a require_once() error for that node php file that Drupal now can't find. Everytime I try to access that Qdrupal node either for viewing or editing, Drupal returns the same "can't find the node file" error because it tries to look for it at a wrong path that its created for each access attempt following this format:
/sites/default/files/qdrupal/0/nodes/3.php
/sites/default/files/qdrupal/01/nodes/3.php
/sites/default/files/qdrupal/012/nodes/3.php
... and so on
Does anyone now how to revert this change and being able to access the qdrupal node from Drupal as before ? I guess I have to disable the revisions thing someway on that node but for the moment I'm out of clues, if someone has some useful information about this it would be very appreciated-
Thanks

Ok, I figured it out how to change things back to normal. I went to the node_revisions table in the drupal database, there I deleted the records corresponding to the revisions made of my qdrupal node, just leaving the original revision ( the original version of the node). Then I went to the node table and there I changed back the vid field to match the nid number in the record corresponding to my qdrupal node. Now I can access in view and editing mode from the site the qdrupal node again. Any additional insight would be welcome.