Hi,

i got "Page not found" on saving the metadata to the descript.ion file. The URL looks like this:
http://localhost/intranet//intranet/node/63

(intranet comes twice in the url, but on the webserver it is only once)

Is that with you too?

Comments

Nicolas Georget’s picture

Your drupal root is not on the root server right ?
If not, have a look in the settings.php file in drupal-folder/sites/default/
Then, on line 126 and uncomment line 144:

/**
 * Base URL (optional).
 */
[...]
$base_url = 'http://localhost/intranet';

Should be fine and fixed.

edgar.giese’s picture

Sorry, but that doesn't fix it.

Nicolas Georget’s picture

Status: Active » Patch (to be ported)
StatusFileSize
new510 bytes

Ok. found the trick. Considering you use the rc13 version.
Open in a text editor the file filebrowser.module. Then go to line 399. The issue comes from this line:

'query' => 'destination=' . urlencode(request_uri())

that you must change to:

'query' => 'destination=' . urlencode(drupal_get_path_alias($_GET['q']))

And sure it fix your form. Test it to be sure.
I attached a patch for Yoran.

edgar.giese’s picture

Thank you, it works...

Yoran’s picture

Status: Patch (to be ported) » Fixed

@Nicolas
J'ai commité un fix, mais j'utilise plutot la fonction faire pour cela (que je ne connaissais pas à l'époque) : drupal_get_destination()

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.