I found an other problem with my method FTP: the file_path of a project.
In fact the path is a path on the FTP serveur and not on the web serveur.
The function file_ensure_valid_upload_path must verify the path on the FTP serveur and not on the web server.
Search found 7 matches
- 15 Jan 2007, 10:37
- Forum: Help
- Topic: Bug or not ? (mantis 1.06 or 1.1)
- Replies: 5
- Views: 5904
- 15 Jan 2007, 10:21
- Forum: Help
- Topic: Bug or not ? (mantis 1.06 or 1.1)
- Replies: 5
- Views: 5904
- 28 Dec 2006, 17:59
- Forum: Help
- Topic: Chande the defaull project option to "Private"
- Replies: 2
- Views: 4540
- 19 Dec 2006, 09:13
- Forum: Help
- Topic: Bug or not ? (mantis 1.06 or 1.1)
- Replies: 5
- Views: 5904
- 15 Dec 2006, 15:01
- Forum: Help
- Topic: Bug or not ? (mantis 1.06 or 1.1)
- Replies: 5
- Views: 5904
- 15 Dec 2006, 13:48
- Forum: Help
- Topic: Bug or not ? (mantis 1.06 or 1.1)
- Replies: 5
- Views: 5904
- 15 Dec 2006, 11:22
- Forum: Help
- Topic: Bug or not ? (mantis 1.06 or 1.1)
- Replies: 5
- Views: 5904
Bug or not ? (mantis 1.06 or 1.1)
Hello,
I have found a bug I think concerning the file upload with FTP. The code is:
switch ( $t_method ) {
case FTP:
case DISK:
file_ensure_valid_upload_path( $t_file_path );
if ( !file_exists( $t_disk_file_name ) ) {
if ( FTP == $t_method ) {
$conn_id = file_ftp_connect();
file_ftp_put ...
I have found a bug I think concerning the file upload with FTP. The code is:
switch ( $t_method ) {
case FTP:
case DISK:
file_ensure_valid_upload_path( $t_file_path );
if ( !file_exists( $t_disk_file_name ) ) {
if ( FTP == $t_method ) {
$conn_id = file_ftp_connect();
file_ftp_put ...