Jump to content

File uploading, says it works but doesnt


mike12255

Recommended Posts

Im trying to use a file upload script i found here:

http://www.phptoys.com/e107_plugins/content/content.php?content.39

 

and everything says it works but the file deosnt upload and i get the following in the error log:

[20-Jan-2011 20:02:42] PHP Fatal error:  Call to a member function Get() on a non-object in /home/mikeh/public_html/test/uploader.php on line 33

[20-Jan-2011 20:03:48] PHP Fatal error:  Call to a member function Get() on a non-object in /home/mikeh/public_html/test/uploader.php on line 33

 

here is some info copied from my hostgator cpanel:

 

Home Directory: /home/mikeh

Operating System: Linux CentOS

below is the entire source code:

<?php
/*************************************************
* Micro Upload
*
* Version: 0.1
* Date: 2006-10-27
*
* Usage:
* Set the uploadLocation variable to the directory
* where you want to store the uploaded files.
* Use the version which is relevenat to your server OS.
*
****************************************************/

//Windows way
//$uploadLocation = "/home/mikeh/public_html/test";
//Unix, Linux way
$uploadLocation = "/home/mikeh/public_html/test/";

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html>
<head>
   <title>MicroPing domain status checker</title>
   <link href="style/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <div id="main">
      <div id="caption">UPLOAD FILE</div>
      <div id="icon"> </div>
      <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="fileForm" id="fileForm" enctype="multipart/form-data">
        File to upload:<center>
        <table>
          <tr><td><input name="upfile" type="file" size="36"></td></tr>
          <tr><td align="center"><br/><input class="text" type="submit" name="submitBtn" value="Upload"></td></tr>
        </table></center>  
      </form>
<?php    
    if (isset($_POST['submitBtn'])){

?>
      <div id="caption">RESULT</div>
      <div id="icon2"> </div>
      <div id="result">
        <table width="100%">
<?php

$target_path = $uploadLocation . basename( $_FILES['upfile']['name']);
//die($target_path);

if(move_uploaded_file($_FILES['upfile']['tmp_name'], $target_path)) {
    echo "The file: ".  basename( $_FILES['upfile']['name']).
    " has been uploaded!";
} else{
    echo "There was an error uploading the file, please try again!";
}

?>
        </table>
     </div>
<?php            
    }
?>
    <div>
</body> 

 

Edit: can be seen/tested at: http://cnotes.ca/test/microUpload.php

Link to comment
Share on other sites

The code and the URL to your site that you posted doesn't match the code and the filename mentioned in the error message. It will be a little hard to actually help you without the actual code/file that the error message indicates the problem is occurring in.

 

I always miss the little things.. turns out that error log was from a previous test i tried. This works fine my ftp client just was not updating properly thanks for the input everyone.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.