If you can't use Jupload and Jdownload in version 4.3.8, you can modify the file "webclient/loginok.html", replace the lines 23 - 35 into:
- Code: Select all
if _COOKIE["UID"] ~= nil then
_SESSION_ID = _COOKIE["UID"]
local retval = SessionModule.load(_SESSION_ID)
if retval == false then
_SESSION_ID = SessionModule.new()
_SETCOOKIE = _SETCOOKIE.."Set-Cookie: UID=".._SESSION_ID.."\r\n"
rawset(_COOKIE,"UID",_SESSION_ID)
end
else
_SESSION_ID = SessionModule.new()
_SETCOOKIE = _SETCOOKIE.."Set-Cookie: UID=".._SESSION_ID.."\r\n"
rawset(_COOKIE,"UID",_SESSION_ID)
end