file upload problems

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Arthur Jacobs

    file upload problems

    Good day,

    I am trying to upload a file to the server.
    This website is for sale! novatrope.com is your first and best source for information about novatrope. Here you will also find topics relating to issues of general interest. We hope you find what you are looking for!

    Here is some more debugging info:Array
    (
    [userfile] =Array
    (
    [name] =Pequot.gif
    [type] =>
    [tmp_name] =>
    [error] =3
    [size] =0
    )

    )

    I am usiing code from the php manual.
    Here is the php info http://chops.novatrope.com/info.php

    <?php
    // In PHP versions earlier than 4.1.0, $HTTP_POST_FILE S should be used instead
    // of $_FILES.

    $uploaddir = '/usr/home/arthur/public_html/game/test/uploads/';
    $uploadfile = $uploaddir . basename($_FILE S['userfile']['name']);

    echo '<pre>';
    if (move_uploaded_ file($_FILES['userfile']['tmp_name'], $uploadfile)) {
    echo "File is valid, and was successfully uploaded.\n";
    } else {
    echo "Possible file upload attack!\n";
    }

    echo 'Here is some more debugging info:';
    print_r($_FILES );

    print "</pre>";

    ?>

    and here is my html

    <!-- The data encoding type, enctype, MUST be specified as below -->
    <form enctype="multip art/form-data" action="getfile 2.php" method="POST">
    <!-- MAX_FILE_SIZE must precede the file input field -->
    <input type="hidden" name="MAX_FILE_ SIZE" value="1000000" />
    <!-- Name of input element determines name in $_FILES array -->
    Send this file: <input name="userfile" type="file" />
    <input type="submit" value="Send File" />
    </form>

    Thanks,
    Arthur Jacobs
    star@sonic.net

  • Hendri Kurniawan

    #2
    Re: file upload problems

    Arthur Jacobs wrote:
    Good day,
    >
    I am trying to upload a file to the server.
    This website is for sale! novatrope.com is your first and best source for information about novatrope. Here you will also find topics relating to issues of general interest. We hope you find what you are looking for!

    Here is some more debugging info:Array
    (
    [userfile] =Array
    (
    [name] =Pequot.gif
    [type] =>
    [tmp_name] =>
    [error] =3
    [size] =0
    )
    >
    )
    >
    I am usiing code from the php manual.
    Here is the php info http://chops.novatrope.com/info.php
    >
    ...........
    >
    Thanks,
    Arthur Jacobs
    star@sonic.net
    >
    When I tried it just now, it went thru fine.

    Hendri Kurniawan

    Comment

    • Arthur Jacobs

      #3
      Re: file upload problems

      Thank you -thank you! Mr. Kurniawan,
      You are correct you put' test.txt' in! I had been trying for a week to
      send a 50k gif and it gave me the error I posted. Do you know how I can
      send a gif.?

      Full of gratitude,
      Arthur Jacobs

      On 2007-01-11 14:22:19 -0800, Hendri Kurniawan <ask-me@email.comsai d:
      Arthur Jacobs wrote:
      >Good day,
      >>
      >I am trying to upload a file to the server.
      >http://chops.novatrope.com/game/test/form2.html
      >Here is some more debugging info:Array
      >(
      > [userfile] =Array
      > (
      > [name] =Pequot.gif
      > [type] =>
      > [tmp_name] =>
      > [error] =3
      > [size] =0
      > )
      >>
      >)
      >>
      >I am usiing code from the php manual.
      >Here is the php info http://chops.novatrope.com/info.php
      >>
      ..........
      >>
      >Thanks,
      >Arthur Jacobs
      >star@sonic.net
      >>
      >
      When I tried it just now, it went thru fine.
      >
      Hendri Kurniawan

      Comment

      • Hendri Kurniawan

        #4
        Re: file upload problems

        Arthur Jacobs wrote:
        Thank you -thank you! Mr. Kurniawan,
        You are correct you put' test.txt' in! I had been trying for a week to
        send a 50k gif and it gave me the error I posted. Do you know how I can
        send a gif.?
        >
        Full of gratitude,
        Arthur Jacobs
        >
        On 2007-01-11 14:22:19 -0800, Hendri Kurniawan <ask-me@email.comsai d:
        >
        >Arthur Jacobs wrote:
        >>Good day,
        >>>
        >>I am trying to upload a file to the server.
        >>http://chops.novatrope.com/game/test/form2.html
        >>Here is some more debugging info:Array
        >>(
        >> [userfile] =Array
        >> (
        >> [name] =Pequot.gif
        >> [type] =>
        >> [tmp_name] =>
        >> [error] =3
        >> [size] =0
        >> )
        >>>
        >>)
        >>>
        >>I am usiing code from the php manual.
        >>Here is the php info http://chops.novatrope.com/info.php
        >>>
        >..........
        >>>
        >>Thanks,
        >>Arthur Jacobs
        >>star@sonic.net
        >>>
        >>
        >When I tried it just now, it went thru fine.
        >>
        >Hendri Kurniawan
        >
        >
        Hi,

        I just re-test your PHP file.
        It only works if the actual file is of 0 bytes.
        Even a test file of 1 char will produce partial-file-upload error.

        Just a hunch, check your max_input_time it should defaulted to 60 (ie. 1
        minutes)
        if you don't set it to anything.

        Other than that I'm not sure wheter it's config error or not.
        But your coding is correct. Maybe other people in th NG can help.

        Hendri Kurniawan

        Comment

        • Arthur Jacobs

          #5
          Re: file upload problems

          Happy days are here again....
          Good Day,

          In case you run into this problem again have the person make sure their
          var/log dir is not full. Mine was overflowing, and that was the whole
          problem (my fault-no excuse). I want to thank you guys and gals for
          your patience and help!

          serene at last,
          ~arthur

          On 2007-01-11 23:16:43 -0800, Hendri Kurniawan <ask-me@email.comsai d:
          Arthur Jacobs wrote:
          >Thank you -thank you! Mr. Kurniawan,
          >You are correct you put' test.txt' in! I had been trying for a week to
          >send a 50k gif and it gave me the error I posted. Do you know how I can
          >send a gif.?
          >>
          >Full of gratitude,
          >Arthur Jacobs
          >>
          >On 2007-01-11 14:22:19 -0800, Hendri Kurniawan <ask-me@email.comsai d:
          >>
          >>Arthur Jacobs wrote:
          >>>Good day,
          >>>>
          >>>I am trying to upload a file to the server.
          >>>http://chops.novatrope.com/game/test/form2.html
          >>>Here is some more debugging info:Array
          >>>(
          >>> [userfile] =Array
          >>> (
          >>> [name] =Pequot.gif
          >>> [type] =>
          >>> [tmp_name] =>
          >>> [error] =3
          >>> [size] =0
          >>> )
          >>>>
          >>>)
          >>>>
          >>>I am usiing code from the php manual.
          >>>Here is the php info http://chops.novatrope.com/info.php
          >>>>
          >>..........
          >>>>
          >>>Thanks,
          >>>Arthur Jacobs
          >>>star@sonic.net
          >>>>
          >>>
          >>When I tried it just now, it went thru fine.
          >>>
          >>Hendri Kurniawan
          >>
          >>
          >
          Hi,
          >
          I just re-test your PHP file.
          It only works if the actual file is of 0 bytes.
          Even a test file of 1 char will produce partial-file-upload error.
          >
          Just a hunch, check your max_input_time it should defaulted to 60 (ie.
          1 minutes)
          if you don't set it to anything.
          >
          Other than that I'm not sure wheter it's config error or not.
          But your coding is correct. Maybe other people in th NG can help.
          >
          Hendri Kurniawan

          Comment

          • Arthur Jacobs

            #6
            Resolved Re: file upload problems

            Happy days are here again....
            Good Day,

            In case you run into this problem again have the person make sure their
            var/log dir is not full. Mine was overflowing, and that was the whole
            problem (my fault-no excuse). I want to thank you guys and gals for
            your patience and help!

            serene at last,
            ~arthur

            On 2007-01-11 23:16:43 -0800, Hendri Kurniawan <ask-me@email.comsai d:
            Arthur Jacobs wrote:
            >Thank you -thank you! Mr. Kurniawan,
            >You are correct you put' test.txt' in! I had been trying for a week to
            >send a 50k gif and it gave me the error I posted. Do you know how I can
            >send a gif.?
            >>
            >Full of gratitude,
            >Arthur Jacobs
            >>
            >On 2007-01-11 14:22:19 -0800, Hendri Kurniawan <ask-me@email.comsai d:
            >>
            >>Arthur Jacobs wrote:
            >>>Good day,
            >>>>
            >>>I am trying to upload a file to the server.
            >>>http://chops.novatrope.com/game/test/form2.html
            >>>Here is some more debugging info:Array
            >>>(
            >>> [userfile] =Array
            >>> (
            >>> [name] =Pequot.gif
            >>> [type] =>
            >>> [tmp_name] =>
            >>> [error] =3
            >>> [size] =0
            >>> )
            >>>>
            >>>)
            >>>>
            >>>I am usiing code from the php manual.
            >>>Here is the php info http://chops.novatrope.com/info.php
            >>>>
            >>..........
            >>>>
            >>>Thanks,
            >>>Arthur Jacobs
            >>>star@sonic.net
            >>>>
            >>>
            >>When I tried it just now, it went thru fine.
            >>>
            >>Hendri Kurniawan
            >>
            >>
            >
            Hi,
            >
            I just re-test your PHP file.
            It only works if the actual file is of 0 bytes.
            Even a test file of 1 char will produce partial-file-upload error.
            >
            Just a hunch, check your max_input_time it should defaulted to 60 (ie.
            1 minutes)
            if you don't set it to anything.
            >
            Other than that I'm not sure wheter it's config error or not.
            But your coding is correct. Maybe other people in th NG can help.
            >
            Hendri Kurniawan

            Comment

            Working...