Search found 7 matches

by Cakeman
15 Jan 2007, 10:37
Forum: Help
Topic: Bug or not ? (mantis 1.06 or 1.1)
Replies: 5
Views: 5904

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.
by Cakeman
15 Jan 2007, 10:21
Forum: Help
Topic: Bug or not ? (mantis 1.06 or 1.1)
Replies: 5
Views: 5904

up ?
by Cakeman
28 Dec 2006, 17:59
Forum: Help
Topic: Chande the defaull project option to "Private"
Replies: 2
Views: 4540

Up

I am interested in it too :)
by Cakeman
19 Dec 2006, 09:13
Forum: Help
Topic: Bug or not ? (mantis 1.06 or 1.1)
Replies: 5
Views: 5904

May I have an answer ?

Because I see the bug I report about it is deleted :)

(sorry the bug was reported twice)
by Cakeman
15 Dec 2006, 15:01
Forum: Help
Topic: Bug or not ? (mantis 1.06 or 1.1)
Replies: 5
Views: 5904

In the FTP method, $g_absolute_path_default_upload_folder seems to represent the path on the ftp serveur and not on the web server
by Cakeman
15 Dec 2006, 13:48
Forum: Help
Topic: Bug or not ? (mantis 1.06 or 1.1)
Replies: 5
Views: 5904

Another problem:
file_ftp_get ( $ftp, $v_diskfile, $v_diskfile );
It can not work in my case. FTP server is not the same than web serveur


I change this
$ftp = file_ftp_connect();
file_ftp_get ( $ftp, $v_diskfile, $v_diskfile );
file_ftp_disconnect( $ftp );
readfile( $v_filename );


into ...
by Cakeman
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 ...