Hi Llarsen,
This error is not caused by wrong .htaccess file content. I think I have to admit you've found a bug... Luckily it is a small one, but still it has been a bit sloppy of me. For which I of course apologize. I'll put up a fixed archive soon (and SVN), but I guess the following should fix it:
Set the image path variable to "img/" (no starting /) and change the three lines below in the file
/admin/includes/tiny_mce/plugins/tinybrowser/config_tinybrowser.php:
From:
$tinybrowser['path']['image'] = '../../../../..'.$cfg[img_path]; // Image files location
$tinybrowser['path']['media'] = '../../../../..'.$cfg[img_path].'media/'; // Media files location
$tinybrowser['path']['file'] = '../../../../..'.$cfg[img_path].'files/'; // Other files location
To:
$tinybrowser['path']['image'] = '../../../../../'.$cfg[img_path]; // Image files location
$tinybrowser['path']['media'] = '../../../../../'.$cfg[img_path].'media/'; // Media files location
$tinybrowser['path']['file'] = '../../../../../'.$cfg[img_path].'files/'; // Other files location
Which - in case not visible to the eye
- means adding an extra / before the variable.If you could test this and report me whether it works, I would very much appreciate it. If you rather wait for the new archive (which also fixes IE8 compatibility issues), then expect the archive any time this evening.
Thanks!
Xander.