Re: Click Button to Upload and Nothing :(

  •  08-30-2011, 7:54 AM

    Re: Click Button to Upload and Nothing :(

    Hi gravy216,
     
    Please create a page by the code below and test on your site, does it work?
     
    Did you got any javascript errors? Is your site online? If so, can post the test page url? So we can check it too.
     
    <?php require_once "phpuploader/include_phpuploader.php" ?>
    <?php session_start(); ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>demo</title>
    </head>
    <body>
        <div>
     
            <?php
                $uploader=new PhpUploader();
                $uploader->MultipleFilesUpload=false;
                $uploader->InsertText="Upload File (Max 10M)";
                $uploader->MaxSizeKB=1024000;    
                $uploader->AllowedFileExtensions="jpeg,jpg,gif,png,zip";
                $uploader->Render();
            ?>    
            <script type='text/javascript'>
        function CuteWebUI_AjaxUploader_OnTaskComplete(task)
        {
            alert(task.FileName + " is uploaded!");
        }

        </script>        
        </div>
    </body>
    </html>
     
    Regards,
     
    Ken
View Complete Thread