php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #22387 Error Opening [File] in [PHPScript] on Line [linenumber]
Submitted: 2003-02-23 14:33 UTC Modified: 2003-02-24 06:48 UTC
From: tornbydesign at hotmail dot com Assigned:
Status: Not a bug Package: FTP related
PHP Version: 4.2.3 OS: Windows
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
35 + 8 = ?
Subscribe to this entry?

 
 [2003-02-23 14:33 UTC] tornbydesign at hotmail dot com
Hi,
I have a problem with FTP Fileupload. 
if i execute the script i receive this message

'Warning: error opening C:\Images\any.jpg in ftp.php on line 90'

the ENCTYPE in form-tag is "multipart/form-data". Method is Get. I receive the right Path information but it seems that the file couldn 't be opened. File Upload is activated. The MaxFilesize is 20MB. I don't know what it could be.

Ah, one thing: I must replace '\\' through '\' because the path which is returned from the file-element is 'C:\\Images\\any.jpg'

Can you help me???

Thanks
Tornby

Sorry for my bad english

info:
[phpcut] opens the Sourcecode cut and [/phpcut] ends it.

[phpcut]

$connection = ftp_connect(FTP_host);
    $login = ftp_login($connection, FTP_uid, FTP_pwd);
    ftp_pasv($connection,true);

    $iPos = 0;
    $FTPError = "";
    
    while ($iPos < 10)
    {
      If (!empty($HTTP_GET_VARS['file'.$iPos]))
      {
        $SourceFile = str_replace('\\\\','\\',$HTTP_GET_VARS['file'.$iPos]);
        $DestinationFile = $destination.Substr($SourceFile,strrpos($SourceFile,'\\')+1,strlen($SourceFile)-strrpos($SourceFile,'\\')-1);
        if (! ftp_put($connection,$DestinationFile,$SourceFile,FTP_BINARY)) $FTPError .= "Fehler beim hochladen von '$SourceFile'<br>";
      }
      $iPos++;
    }

    ftp_quit($connection);

[/phpcut]

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-02-23 17:27 UTC] sniper@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip


And if that doesn't work either, give us a complete,
self-contained but short example script which uses 
some public ftp site.

 [2003-02-24 06:39 UTC] tornbydesign at hotmail dot com
the script exists on a server by a big provider. this provider must have the newest version of php.
 [2003-02-24 06:48 UTC] sniper@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions. 

Thank you for your interest in PHP.

Please report bugs only when you are able to try solutions.

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 07:01:28 2024 UTC