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.
- <?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>
- example
- </title>
- </head>
- <body>
- <?php
- $uploader=new PhpUploader();
- $uploader->Name="myuploader";
- $uploader->MultipleFilesUpload=true;
- $uploader->Render();
- ?>
- </body>
- </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