In both 2.3f and 2.3g, I get a "Bad Session" error whenever I try to create a New Folder or Rename something.
I'm running the server under Win 7. The error occurs whether I browse to the server from the same machine or a different one. It happens under both Chrome and Firefox.
I've read other posts in regards to the session cookie, "HFS_SID_". I've tried inserting code in the template for 2.3f to delete that cookie if the AJAX call comes back "bad session":
if (res !== "ok") {
alert("{.!Error.}: " + ">>>" + res + "<<<" );
if (res.substring(0,11) === 'bad session') {
delCookie('HFS_SID_');
location.reload();
I've tried clearing the cookie, closing the browser, closing the server, and trying again with no luck. I can't find any situation where it works.
Other posts say it worked in 2.3e, but I can't find that version to download.
Is this fixable?