????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.15.195.46 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/icad.astacus.se/productionzon/ |
Upload File : |
<?php session_start(); if($_GET['action'] == "logon"){ require_once("../SSO/AstacusSSO.php"); $sso = new AstacusSSO(); $status = $sso->login($_POST['username'], $_POST['password']); if($status == FALSE){ header("Location: http://icad.astacus.se/?page=loggain"); }else{ if($_SESSION['ASTACUS_SSO_INFO'][3] == "6"){ header("Location: http://icad.astacus.se/productionzon/"); }else{ header("Location: http://icad.astacus.se/customerzon/"); } } } if( (($_SESSION['ASTACUS_SSO_INFO'])=='' )){ header('location: http://icad.astacus.se/?page=loggain'); } include("language.php"); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>iCAD - CAD services via Internet</title> <script type="text/javascript" src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js"></script> <script type="text/javascript"> /* showClock() function extracts the current time hours, minutes and seconds and then displays them in the div with showText id from the BODY section */ function showClockSWE() { var clock=new Date(); var hours=clock.getHours(); var minutes=clock.getMinutes(); var hours2=(Math.abs(clock.getHours() - 0)) % 24; var minutes2=(Math.abs(clock.getMinutes() - 0)) % 60; var seconds=clock.getSeconds(); // for a nice disply we'll add a zero before the numbers between 0 and 9 if (hours2<10){ hours2="0" + hours2; } if (hours<10){ hours="0" + hours; } if (minutes<10){ minutes="0" + minutes; } if (minutes2<10){ minutes2="0" + minutes2; } if (seconds<10){ seconds="0" + seconds; } document.getElementById('showTextIND').innerHTML=hours+":"+minutes+":"+seconds; document.getElementById('showTextSWE').innerHTML=hours2+":"+minutes2+":"+seconds; t=setTimeout('showClockSWE()',500); /* setTimeout() JavaScript method is used to call showClock() every 1000 milliseconds (that means exactly 1 second) */ } </script> <link href="../main.css" rel="stylesheet" type="text/css"> </head> <body marginheight="0" topmargin="0" marginwidth="0" leftmargin="0" rightmargin="0"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td height="112" valign="top" background="../images/bottom_small.jpg"><table width="1000" height="65" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="65"> <table width="820" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="140"><img src="../images/icadloggo.gif" width="94" height="39"></td> <td width="680"><table border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="342" class="whitelink"><a href="../?page=loggain" class="whitelink">WELCOME, <?php echo($_SESSION['ASTACUS_SSO_INFO'][1]. " (".$_SESSION['ASTACUS_SSO_INFO'][2]);?>)</a></td> <td width="19"><a href="../?page=icad" class="whitelink"> </a></td> <td width="38"> </td> <td width="9"> </td> <td width="115"> </td> <td width="140"><div align="right"><a href="../?page=loggaut" class="whitelink">SIGN OUT </a></div></td> <td width="4"><span class="text"></span></td> <td width="13"><span class="text"></span></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> <?php $page = $_GET['page']; if($page == "project"){ include("project.php"); }else if($page == "logg"){ include("logg.php"); }else if($page == "upload"){ include("upload.php"); }else if($page == "download"){ include("downloadfiles.php"); }else if($page == "settings"){ include("installningar.php"); }else if($page == "shared"){ include("shared.php"); }else if($page == "files"){ include("files.php"); }else if($page == "sharedupload"){ include("sharedupload.php"); }else if($page == "filesshared"){ include("sharedfiles.php"); }else if($page == "shareddownload"){ include("shareddownload.php"); }else{ include("start.php"); } ?> <p> </p> </body> </html>