Clicking on File upload button does nothing

  •  02-22-2013, 1:45 AM

    Clicking on File upload button does nothing

    I'm new to PHP File Uploader and have downloaded the trial to try it out. copied  all files in the archive to a folder called PHPfileuploader.

     

    clicking on the included demo.htm brings up the menu. selecting any of the demos displays the File Upload button and does nothing else.  is there something I'm missing?

     

    Demo menu is here --  http://bandit-radio.com/phpfileuploader/demo.htm    

    Simple file upload here -- http://bandit-radio.com/phpfileuploader/form-simple-upload.php

     

    I changed part of the file form-simple-upload.php to this

                 <?php
                      $uploader=new PhpUploader();
                      
                      $uploader->MultipleFilesUpload=false;
                      $uploader->InsertText="Upload File (Max 10M)";
                      
                      $uploader->MaxSizeKB=1024000;      
                      $uploader->AllowedFileExtensions="jpeg,jpg,gif,png,zip";
                      $uploader->TempDirectory="tmp";
                      
                      //Where'd the files go?
                      $uploader->SaveDirectory="savefiles";
                      
                      $uploader->Render();
                ?>


    created a folder 'tmp'          in http://bandit-radio.com/phpfileuploader/

    created a folder 'savesfiles' in http://bandit-radio.com/phpfileuploader/ 

     I'm running apache server with PHP 5.2.17  using godaddy for a hosting provider

     

    Do I need to modify the PHP5.ini file?  Does the .htaccess file need to be modified?

     

     

    thank you for your time for getting me back on track

     

    Daryl

    djberry (at) hiwaay (dot) net

     

     

     

     

     

View Complete Thread