Prøv evt. at kigge her
http://jumploader.com/forum/viewtopic.php?t=116&highlight=session.The problem is exactly where I expected - user agent header value. Your engine session validation mechanism is not only cookie based, but user agent too. So, you have to set UploaderConfig.userAgent proper value upon applet initialization, so, you have to:
1. set applet parameter:
Code:
<param name="ac_fireAppletInitialized" value="true"/>
2. inject user agent value using java script:
Code:
function appletInitialized( applet ) {
applet.getUploaderConfig().setUserAgent( navigator.userAgent );
}