After I save an edited node, I get a "Page Not Found" error that seems linked to taxonomy_similar.
For instance, when I edit this node:
http://lifetwo.com/production/node/5927/edit
... and save the edit, I get a "Page Not Found" page with this URL:
http://lifetwo.com/production//production/taxonomy_similar/node/5927
note the duplicated path and //. I suspect the cause of the problem is that I have the live version of Drupal in a subdirectory (/production). My settings.php reads:
$base_url = 'http://lifetwo.com/production';
I've had this configuration for months and taxonomy_similar is the only problematic module. It sounds like when taxonomy_similar swings into action after a post is saved, it's concatenating the URL improperly. But now we're at the limit of what I can do w/ PHP!
I installed the latest (non CVS) version of taxonomy_similar yesterday, but that did not change the problem.
Comments
Comment #1
morbus iffAt the moment, I'm not maintaining this module due to lack of usage. However, if I were to guess, I'd say that if you modified the module to change this line:
$_REQUEST['destination'] = url('taxonomy_similar/node/'.$node->nid);to just$_REQUEST['destination'] = 'taxonomy_similar/node/'.$node->nid;it may have some useful effect.Comment #2
morbus iffComment #3
(not verified) commented