Problem fileupload

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Marcel Molenaar

    Problem fileupload

    I have a strange problem with a very simple fileupload script. It works
    fine, file is uploaded to test20.php but when i click the browsers back
    button and choose other file to upload only a blank page shows up after
    clicking submit.

    test10.php

    <form action="test20. php" method="post" enctype="multip art/form-data"
    id="form1">
    <input type="file" name="upload" />
    <input type="submit" name="Submit" value="Submit" />
    </form>

    test20.php

    <?php
    echo $_FILES['upload']['name'];
    ?>

    Platform is Windows 2003 Server Web Edition Service Pack 1 and PHP version
    is 5.2.0 running as ISAPI. The site is a https environment.

    Strange thing is that i have exactly the same files on another server (linux
    and PHP 4.4.6) at www.mediaquest.nl/test10.php and there it is running fine.

    Anybody any idea??? Thanks in advance!!!

    Marcel



  • shimmyshack

    #2
    Re: Problem fileupload

    On May 3, 3:52 pm, "Marcel Molenaar" <afraidofs...@s pam.nlwrote:
    I have a strange problem with a very simple fileupload script. It works
    fine, file is uploaded to test20.php but when i click the browsers back
    button and choose other file to upload only a blank page shows up after
    clicking submit.
    >
    test10.php
    >
    <form action="test20. php" method="post" enctype="multip art/form-data"
    id="form1">
    <input type="file" name="upload" />
    <input type="submit" name="Submit" value="Submit" />
    </form>
    >
    test20.php
    >
    <?php
    echo $_FILES['upload']['name'];
    ?>
    >
    Platform is Windows 2003 Server Web Edition Service Pack 1 and PHP version
    is 5.2.0 running as ISAPI. The site is a https environment.
    >
    Strange thing is that i have exactly the same files on another server (linux
    and PHP 4.4.6) atwww.mediaques t.nl/test10.phpand there it is running fine.
    >
    Anybody any idea??? Thanks in advance!!!
    >
    Marcel
    by blank page do you mean no response body, or an error, and what are
    the headers sent by the server for the blank page, use fiddlertool to
    find out
    is there any php in test10.php? if( $_POST ) and so on?

    Comment

    • Marcel Molenaar

      #3
      Re: Problem fileupload


      "Marcel Molenaar" <afraidofspam@s pam.nlwrote in message
      news:e2c50$4639 f72b$d969db07$9 674@cache20.mul tikabel.net...
      >I have a strange problem with a very simple fileupload script. It works
      >fine, file is uploaded to test20.php but when i click the browsers back
      >button and choose other file to upload only a blank page shows up after
      >clicking submit.
      >
      test10.php
      >
      <form action="test20. php" method="post" enctype="multip art/form-data"
      id="form1">
      <input type="file" name="upload" />
      <input type="submit" name="Submit" value="Submit" />
      </form>
      >
      test20.php
      >
      <?php
      echo $_FILES['upload']['name'];
      ?>
      >
      Platform is Windows 2003 Server Web Edition Service Pack 1 and PHP version
      is 5.2.0 running as ISAPI. The site is a https environment.
      >
      Strange thing is that i have exactly the same files on another server
      (linux and PHP 4.4.6) at www.mediaquest.nl/test10.php and there it is
      running fine.
      >
      Anybody any idea??? Thanks in advance!!!
      >
      Marcel
      >
      >
      >
      Now here is the solution:

      The solution is to set the SSLAlwaysNegoCl ientCert Metabase Property to TRUE
      in the IIS metadatabase xml file located at C:\WINDOWS\syst em32\inetsrv ->
      MetaBase.xml


      Comment

      Working...