Hi guys,
I bought your script a long time back for my site (www.epicradio.net).
I remember having a few problems at the time but I figured them out, got it installed and working...
Since then I've re-worked the site and I need to get it going again.. I'm trying but getting a lot of issues...
See the following link for a screenshot of the errors I'm having (the error up the top is constantly there and the one in the popup box happens just after trying to upload a file once it gets to 100%..
http://i.imgur.com/yjL5h8X.jpg
Also here's the code in my file...
<?php require_once "phpuploader/include_phpuploader.php" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form id="form1" method="POST" action="upload.php">
<?php
//Step 2: Create Uploader object.
$uploader=new PhpUploader();
//Step 3: Set a unique name to Uploader
$uploader->Name="myuploader";
//Step 4: Render Uploader
$uploader->Render();
?>
</form>
<?php
//Gets the GUID of the file based on uploader name
$fileguid=@$_POST["myuploader"];
if($fileguid)
{
//get the uploaded file based on GUID
$mvcfile=$uploader->GetUploadedFile($fileguid);
if($mvcfile)
{
//Gets the name of the file.
echo($mvcfile->FileName);
//Gets the temp file path.
echo($mvcfile->FilePath);
//Gets the size of the file.
echo($mvcfile->FileSize);
//Copys the uploaded file to a new location.
$mvcfile->CopyTo("/uploads");
//Moves the uploaded file to a new location.
$mvcfile->MoveTo("/uploads");
//Deletes this instance.
$mvcfile->Delete();
}
}
?>
</body>
</html>
I'd appreciate some help on getting this up and running again!!
Thanks in advance,
Dave Brady
Epic Radio Director