I’m using vault v1.5/1.6 and find that on first load the browser progress bar in IE8 never complete. Uploading a second document resolves the issue. Has anyone else experience this problem? You can replicate the issue using the vault demo on the DHTMLX web site.
I am having the same problem, basically I am using the dhtmlXVaultObject to upload files. It stucks on first go in IE8 and then we call clear then it works fine. Any update or fix??
Is there admin or dhtmlx tech ever reading these threads? I am having same problem. This script is horribly documented and appears broken. WHen I try uplaods the “busy” progress bar never terminates or moves.
<?php
include 'database.php';
/** make sure you have database comnnection if you plan to connect it on database.. sample at the top 'database.php' **/
$id = $_GET['sessionId'];
$id = trim($id);
session_name($id);
session_start();
$inputName = $_GET['userfile'];
$fileName = $_FILES[$inputName]['name'];
$fileName=$user_id.'_'.$gg_date.'-'.$fileName;
$tempLoc = $_FILES[$inputName]['tmp_name'];
$filetype=$_FILES[$inputName]['type'];
echo $_FILES[$inputName]['error'];
$target_path = 'c:\\wamp\www\\CURVE_JUNE_30_2013\\content\\';
/** you have to place the exact target path like sample above and you will not face problem **/
/** the content folder at the last \\content\\ is the storage for the files **/
$target_path = $target_path . basename($fileName);
if(move_uploaded_file($tempLoc,$target_path))
{
$_SESSION['value'] = -1;
}
$sql="INSERT INTO file_gallery_temp SET // for storing data into mysql -- disregard it if you are not using mysql ndatabase
filetype='$filetype',
filename='$fileName'";
$ok=@mysql_query($sql);
if(!$ok){
die("database error storing file:".mysql_error());
}
?>