Re: Problems with installation of File Uploader. Error message, no dialog showing, upload button does nothing

  •  12-14-2012, 9:13 AM

    Re: Problems with installation of File Uploader. Error message, no dialog showing, upload button does nothing

    Hi anthonygore,

     

    Do you get the same problem with the example page below?

     

    If yes, can you use echo phpinfo() to output all php settings? So we can check the settings for you.

     

    1. <?php require_once "phpuploader/include_phpuploader.php" ?> 
    2. <?php session_start(); ?> 
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
    4. <html xmlns="http://www.w3.org/1999/xhtml"
    5.   <head> 
    6.     <title> 
    7.       example 
    8.     </title> 
    9.   </head> 
    10.   <body> 
    11.  
    12.     <form id="form1" method="POST"
    13.            <?php              
    14.                     $uploader=new PhpUploader(); 
    15.                     $uploader->MaxSizeKB=10240; 
    16.                     $uploader->Name="myuploader"
    17.                     $uploader->Render(); 
    18.             ?>  
    19.  
    20.     </form> 
    21.  
    22.   </body> 
    23. </html> 
     

    Regards,

     

    Ken

View Complete Thread