Re: Bought this a while ago, having huge problems with re-install...

  •  02-17-2013, 12:25 PM

    Re: Bought this a while ago, having huge problems with re-install...

    Hi EpicRadio,

     

    1. About the session error, please try the example page below, does it still get this error?

     

    I used <?php session_start(); ?> in it, I think this code will fix your session error. 

    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.         <?php                  
    12.                     $uploader=new PhpUploader();  
    13.                     $uploader->Name="myuploader";  
    14.                     $uploader->MultipleFilesUpload=true;  
    15.                     $uploader->Render();  
    16.             ?>   
    17.   </body>  
    18. </html>  
     

    2. About the pop up error, try set the TempDirectory for the uploader control, does it work? Ensure that your site has the write/read permission of the folder you set for.

     

    $uploader->TempDirectory="D:/xx/xx/mytemp/"; 

     

    If it does not work, please use echo phoinfo(); to output all php settings, so we can check it.

     

    Regards,

     

    Ken 

View Complete Thread