Failed Transfer (Could not Start Transfer)

Need help with FileZilla Client? Something does not work as expected? In this forum you may find an answer.

Moderator: Project members

Message
Author
bheeter
500 Command not understood
Posts: 4
Joined: 2013-02-04 15:13
First name: Brad
Last name: Heeter

Failed Transfer (Could not Start Transfer)

#1 Post by bheeter » 2013-02-04 15:20

I have been trying to upload my files and everything uploads successfully (index files ect..) but when it comes to a PDF file it has been failing as of late. I get a message that says "Could not start transfer." But it looks like it is in the remote site folder. The pdf is supposed to be a dowloadable brochure and when i try to see if it works onine i get a message that says "The file is damaged and could not be repaired"

What is happening here? I have been uploading the same stuff for a long time now and never had this problem. Could someone please help?

User avatar
boco
Contributor
Posts: 26914
Joined: 2006-05-01 03:28
Location: Germany

Re: Failed Transfer (Could not Start Transfer)

#2 Post by boco » 2013-02-04 15:31

You need to provide a complete log of the upload session which may reveal a potential issue. Unfortunately, an isolated error message is of no help.
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

bheeter
500 Command not understood
Posts: 4
Joined: 2013-02-04 15:13
First name: Brad
Last name: Heeter

Re: Failed Transfer (Could not Start Transfer)

#3 Post by bheeter » 2013-02-04 15:41

Here is the log....

Status: Resolving address of 44mls.com
Status: Connecting to 97.74.215.185:21...
Status: Connection established, waiting for welcome message...
Response: 220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
Response: 220-You are user number 7 of 500 allowed.
Response: 220-Local time is now 08:38. Server port: 21.
Response: 220-This is a private system - No anonymous login
Response: 220 You will be disconnected after 3 minutes of inactivity.
Command: USER wward9818
Response: 331 User wward9818 OK. Password required
Command: PASS **********
Response: 230-User wward9818 has group access to: 450
Response: 230 OK. Current directory is /
Status: Server does not support non-ASCII characters.
Status: Connected
Status: Starting upload of C:\Users\bheeter\Desktop\IDB.pdf
Command: CWD /waters
Response: 250 OK. Current directory is /waters
Command: TYPE I
Response: 200 TYPE is now 8-bit binary
Command: PASV
Response: 227 Entering Passive Mode (97,74,215,185,196,237)
Command: STOR IDB.pdf
Response: 150 Accepted data connection
Response: 226 Transfer complete.
Status: File transfer successful, transferred 1,523,364 bytes in 50 seconds
Status: Retrieving directory listing...
Command: PASV
Response: 226-File successfully transferred
Response: 227 Entering Passive Mode (97,74,215,185,195,219)
Error: Connection timed out
Error: Failed to retrieve directory listing

User avatar
botg
Site Admin
Posts: 35509
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: Failed Transfer (Could not Start Transfer)

#4 Post by botg » 2013-02-04 22:50

Command: PASV
Response: 226-File successfully transferred
Response: 227 Entering Passive Mode (97,74,215,185,195,219)
That's bogus. The server starts a multi-line response, but doesn't finish it ever. Please contact your server administrator so that he can fix the broken server.

User avatar
boco
Contributor
Posts: 26914
Joined: 2006-05-01 03:28
Location: Germany

Re: Failed Transfer (Could not Start Transfer)

#5 Post by boco » 2013-02-04 23:17

Code: Select all

Command: TYPE I
Response: 200 TYPE is now 8-bit binary
Command: PASV
Response: 227 Entering Passive Mode (97,74,215,185,196,237)
Command: STOR IDB.pdf
Response: 150 Accepted data connection
Response: 226 Transfer complete.
Status: File transfer successful, transferred 1,523,364 bytes in 50 seconds
However, the PDF seems to be having transferred correctly, with the correct Data Type (Binary). Unless the server did something to the file after (check its size), it should work.
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

bheeter
500 Command not understood
Posts: 4
Joined: 2013-02-04 15:13
First name: Brad
Last name: Heeter

Re: Failed Transfer (Could not Start Transfer)

#6 Post by bheeter » 2013-02-05 13:25

How exactly does the server ruin the transfer? I would like as much info so i can report back to my IT manager and he can work on the problem.

Thanks for the help!

User avatar
boco
Contributor
Posts: 26914
Joined: 2006-05-01 03:28
Location: Germany

Re: Failed Transfer (Could not Start Transfer)

#7 Post by boco » 2013-02-05 14:19

When FTP servers send multi-line responses, there is a strict syntax it must obey (like with pretty much every FTP command and response).

All lines of the multi-line response, except the last, use a dash separator. The last uses a space as ''closing tag''. Example:

Code: Select all

226-First line
226-Second line
226-Third line
226 Last line
If your log is complete, and you didn't mix up multiple simultaneous connections, then the server started a multi-line response but never finished it. FileZilla expects further lines, then the server sends a different response. This violates and disturbs the challenge-response sequence and causes FileZilla to error out.

But as you can see from the log snippet I code-quoted above, the transfer of the PDF was successful. So, is the file on the server in one piece (size must be the same since it is binary)?
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

bheeter
500 Command not understood
Posts: 4
Joined: 2013-02-04 15:13
First name: Brad
Last name: Heeter

Re: Failed Transfer (Could not Start Transfer)

#8 Post by bheeter » 2013-02-05 15:06

We have been dealing with server issues. I am now able to download the complete PDF. Thanks for all the help

User avatar
botg
Site Admin
Posts: 35509
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: Failed Transfer (Could not Start Transfer)

#9 Post by botg » 2013-02-05 22:36

All lines of the multi-line response, except the last, use a dash separator. The last uses a space as ''closing tag''. Example:
That's not correct. It usually is that way, but not required that the following lines contain a dash. Multi-line continues regardless of in-between content until the first line that starts with original code followed by a space.

Example:

123-FOO
456 BAR
123 BAZ

The above is a valid multi-line response. Note that there's no dash in the second line.

User avatar
boco
Contributor
Posts: 26914
Joined: 2006-05-01 03:28
Location: Germany

Re: Failed Transfer (Could not Start Transfer)

#10 Post by boco » 2013-02-06 22:15

I referred to that specific response, not in-between content.
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

SK@TBC
500 Command not understood
Posts: 1
Joined: 2013-10-28 22:44
First name: Scott
Last name: Kearsing

Re: Failed Transfer (Could not Start Transfer)

#11 Post by SK@TBC » 2013-10-28 22:49

I am also trying to upload some file, which worked perfectly last week, but is not this week. Below is the test result from the config wizard.

Connecting to probe.filezilla-project.org
Response: 220 FZ router and firewall tester ready
USER FileZilla
Response: 331 Give any password.
PASS 3.7.3
Response: 230 logged on.
Checking for correct external IP address
IP 64.128.16.218 ge-bci-bg-cbi
Response: 200 OK
PREP 16030
Response: 200 Using port 16030, data token 701980763
PORT 64,128,16,218,62,158
Connection lost
Connection closed

I'm not tech savvy, so i have no idea what that means. Any help would be greatly appreciated.

User avatar
boco
Contributor
Posts: 26914
Joined: 2006-05-01 03:28
Location: Germany

Re: Failed Transfer (Could not Start Transfer)

#12 Post by boco » 2013-11-02 08:44

Post a log from the actual session.
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

Newport
500 Command not understood
Posts: 2
Joined: 2013-11-19 20:37
First name: Paul
Last name: B

Re: Failed Transfer (Could not Start Transfer)

#13 Post by Newport » 2013-11-19 20:44

Hi , I'm a newbie to FTP and struggling a little bit. I done a little bit of research and tried a few things but still no luck.

I've managed to upload most of the files to the server but it's not uploading all the files (12 failed transfers)

Any help or advice is greatly appreciated.

Here is a copy of my log

Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\04.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\04a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\05.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\04a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\05.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\05a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\06.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\05a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\06.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\06a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\07.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\06a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\07.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\07a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\08.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\07a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\08.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\08a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\09.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\08a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\09.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\09a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\10.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\09a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\10.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\10a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\11.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\10a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\11.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\11a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\12.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\11a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\12.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\12a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\13.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\12a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\13.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\13a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\14.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\13a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\14.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\14a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\15.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\14a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\15.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\15a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\16.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\15a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\16.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\16a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\17.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\16a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\17.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\17a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\18.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\17a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\18.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\18a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\19.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\18a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\19.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\19a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\20.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\19a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\20.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\20a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\21.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\20a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\21.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\21a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\22.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\21a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\22.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\22a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\23.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\22a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\23.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\23a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\24.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\23a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\24.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\24a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\25.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\24a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\25.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\25a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\26.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\25a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\26.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\26a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\27.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\26a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\27.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\27a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\28.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\27a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\28.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\28a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\29.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\28a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\29.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\29a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\30.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\29a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\30.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\30a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\31.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\30a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\31.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\31a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\32.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\31a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\32.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\32a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\33.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\32a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\33.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\33a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\34.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\33a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\34.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\34a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\35.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\34a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\35.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\35a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\36.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\35a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\36.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\36a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\40.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\36a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\40.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\40a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\41.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\40a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\41.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\41a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\42.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\41a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\42.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\42a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\43.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\42a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\43.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\43a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\44.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\43a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\44.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\44a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\45.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\44a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\45.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\45a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\46.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\45a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\46.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\46a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\47.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\46a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\47.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\47a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\48.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\47a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\48.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\48a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\49.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\48a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\49.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\49a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\50.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\49a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\50.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\50a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\51.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\50a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\51.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\51a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\53.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\51a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\53.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\53a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\54.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\53a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\54.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\54a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\55.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\54a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\55.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\55a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\56.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\55a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\56.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\56a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\57.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\56a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\57.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\57a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\58.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\57a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\58.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\58a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\59.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\58a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\59.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\59a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\60.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\59a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\60.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\60a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\61.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\60a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\61.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\61a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\62.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\61a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\62.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\62a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\63.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\62a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\63.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\63a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\64.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\63a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\64.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\64a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\65.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\64a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\65.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\65a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\66.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\65a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\66.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\66a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\67.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\66a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\67.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\67a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\68.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\67a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\68.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\68a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\69.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\68a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\69.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\69a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\70.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\69a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\70.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\70a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\71.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\70a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\71.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\71a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\72.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\71a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\72.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\72a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\73.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\72a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\73.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\73a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\74.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\73a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\74.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\74a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\75.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\74a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\75.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\75a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\76.jpg
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\75a.jpg
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\76.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\76a.jpg
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\css\ddsmoothmenu.css
Command: CWD /htdocs/css
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\images\gallery\_vti_cnf\76a.jpg
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\css\slimbox2.css
Response: 250 CWD command successful
Command: PWD
Response: 257 "/htdocs/css" is current directory.
Status: Retrieving directory listing...
Command: PASV
Command: CWD /htdocs/css
Response: 227 Entering Passive Mode (194,117,143,89,147,59).
Command: LIST
Response: 250 CWD command successful
Command: PWD
Response: 257 "/htdocs/css" is current directory.
Status: Retrieving directory listing...
Response: 150 Opening ASCII mode data connection for file list
Response: 226 Transfer complete.
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\css\ddsmoothmenu.css
Status: File transfer successful, transferred 207 bytes in 1 second
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\css\_vti_cnf\slimbox2.css
Command: CWD /htdocs/css/_vti_cnf
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\css\slimbox2.css
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_zisp_\email.txt
Command: CWD /htdocs/_zisp_
Response: 250 CWD command successful
Command: PWD
Response: 250 CWD command successful
Command: PWD
Response: 257 "/htdocs/css/_vti_cnf" is current directory.
Status: Retrieving directory listing...
Command: PASV
Response: 257 "/htdocs/_zisp_" is current directory.
Status: Retrieving directory listing...
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,231,120).
Command: LIST
Response: 227 Entering Passive Mode (194,117,143,89,205,199).
Command: LIST
Response: 150 Opening ASCII mode data connection for file list
Response: 150 Opening ASCII mode data connection for file list
Response: 226 Transfer complete.
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\css\_vti_cnf\slimbox2.css
Status: File transfer successful, transferred 69 bytes in 1 second
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\botinfs.cnf
Command: CWD /htdocs/_vti_pvt
Response: 226 Transfer complete.
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\_zisp_\email.txt
Status: File transfer successful, transferred 66 bytes in 1 second
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\bots.cnf
Response: 250 CWD command successful
Command: PWD
Response: 257 "/htdocs/_vti_pvt" is current directory.
Status: Retrieving directory listing...
Command: PASV
Command: CWD /htdocs/_vti_pvt
Response: 227 Entering Passive Mode (194,117,143,89,150,170).
Command: LIST
Response: 250 CWD command successful
Command: PWD
Response: 257 "/htdocs/_vti_pvt" is current directory.
Status: Retrieving directory listing...
Response: 150 Opening ASCII mode data connection for file list
Response: 226 Transfer complete.
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\botinfs.cnf
Status: File transfer successful, transferred 951 bytes in 1 second
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\deptodoc.btr
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\bots.cnf
Status: File transfer skipped
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\deptodoc.btr
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\doctodep.btr
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\fpdbw.ico
Command: PASV
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\doctodep.btr
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\linkinfo.btr
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\linkinfo.btr
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\service.cnf
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\service.cnf
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\service.lck
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\service.lck
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\services.cnf
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\services.cnf
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\contact.html
Command: CWD /htdocs/_vti_cnf
Response: 227 Entering Passive Mode (194,117,143,89,191,142).
Command: STOR fpdbw.ico
Response: 250 CWD command successful
Command: PWD
Response: 550 fpdbw.ico: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery.html
Response: 257 "/htdocs/_vti_cnf" is current directory.
Status: Retrieving directory listing...
Command: PASV
Command: CWD /htdocs/_vti_cnf
Response: 227 Entering Passive Mode (194,117,143,89,197,87).
Command: LIST
Response: 250 CWD command successful
Command: PWD
Response: 257 "/htdocs/_vti_cnf" is current directory.
Status: Retrieving directory listing...
Response: 150 Opening ASCII mode data connection for file list
Response: 226 Transfer complete.
Command: TYPE A
Command: TYPE A
Response: 200 Type set to A
Command: PASV
Response: 200 Type set to A
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,185,193).
Command: STOR contact.html
Response: 227 Entering Passive Mode (194,117,143,89,148,51).
Command: STOR gallery.html
Response: 550 contact.html: Permission denied
Error: Critical file transfer error
Response: 550 gallery.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery2.html
Command: PASV
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery3.html
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,166,100).
Command: STOR gallery3.html
Response: 227 Entering Passive Mode (194,117,143,89,210,220).
Command: STOR gallery2.html
Response: 550 gallery3.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery4.html
Command: PASV
Response: 550 gallery2.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery5.html
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,200,53).
Command: STOR gallery5.html
Response: 227 Entering Passive Mode (194,117,143,89,189,208).
Command: STOR gallery4.html
Response: 550 gallery4.html: Permission denied
Error: Critical file transfer error
Response: 550 gallery5.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery6.html
Command: PASV
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\index.html
Status: Skipping upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\index.html
Status: File transfer skipped
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\mail.php
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,157,179).
Command: STOR gallery6.html
Response: 227 Entering Passive Mode (194,117,143,89,160,218).
Command: STOR mail.php
Response: 550 gallery6.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\robots.txt
Command: PASV
Response: 550 mail.php: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\services.html
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,143,48).
Command: STOR robots.txt
Response: 227 Entering Passive Mode (194,117,143,89,129,3).
Command: STOR services.html
Response: 550 robots.txt: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\templatemo_style.css
Command: PASV
Response: 550 services.html: Permission denied
Error: Critical file transfer error
Status: Creating directory '/htdocs/_private'...
Command: CWD /htdocs
Response: 227 Entering Passive Mode (194,117,143,89,139,2).
Command: STOR templatemo_style.css
Response: 550 templatemo_style.css: Permission denied
Error: Critical file transfer error
Response: 250 CWD command successful
Command: MKD _private
Response: 550 _private: File exists
Status: Retrieving directory listing...
Command: TYPE I
Response: 200 Type set to I
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,195,119).
Command: LIST
Response: 150 Opening ASCII mode data connection for file list
Response: 226 Transfer complete.
Status: Directory listing successful
Status: Disconnected from server
Status: Disconnected from server
Status: Resolving address of ftp.webspace.virginmedia.com
Status: Resolving address of ftp.webspace.virginmedia.com
Status: Connecting to 194.117.143.89:21...
Status: Connecting to 194.117.143.89:21...
Status: Connection established, waiting for welcome message...
Status: Connection established, waiting for welcome message...
Response: 220-Welcome to the Virgin Media PWP FTP servers.
Response:
Response: The local time is Tue Nov 19 20:23:34 2013
Response:
Response: Upload your website files in this directory.
Response:
Response: You can change up a directory [cd ..] and access your logfiles.
Response: To access your statistics you need to login via selfcare first at
Response: http://selfcare.virginmedia.com and view them via a browser.
Response:
Response: Any problems with the service should be reported via the helpsite at
Response: http://help.virginmedia.com or in the virginmedia.support.pwp newsgroup.
Response: 220 ProFTPD 1.3.0rc2 Server (Virgin Media PWP) [172.23.166.53]
Command: USER sggalore@virginmedia.com
Response: 331 Password required for sggalore@virginmedia.com.
Command: PASS **********
Response: 230 User sggalore@virginmedia.com logged in.
Status: Server does not support non-ASCII characters.
Status: Connected
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\fpdbw.ico
Command: CWD /htdocs/_vti_pvt
Response: 220-Welcome to the Virgin Media PWP FTP servers.
Response:
Response: The local time is Tue Nov 19 20:23:34 2013
Response:
Response: Upload your website files in this directory.
Response:
Response: You can change up a directory [cd ..] and access your logfiles.
Response: To access your statistics you need to login via selfcare first at
Response: http://selfcare.virginmedia.com and view them via a browser.
Response:
Response: Any problems with the service should be reported via the helpsite at
Response: http://help.virginmedia.com or in the virginmedia.support.pwp newsgroup.
Response: 220 ProFTPD 1.3.0rc2 Server (Virgin Media PWP) [172.23.166.52]
Command: USER sggalore@virginmedia.com
Response: 250 CWD command successful
Command: TYPE I
Response: 331 Password required for sggalore@virginmedia.com.
Command: PASS **********
Response: 200 Type set to I
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,153,125).
Command: STOR fpdbw.ico
Response: 550 fpdbw.ico: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery.html
Command: CWD /htdocs/_vti_cnf
Response: 250 CWD command successful
Command: TYPE A
Response: 230 User sggalore@virginmedia.com logged in.
Status: Server does not support non-ASCII characters.
Status: Connected
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\contact.html
Command: CWD /htdocs/_vti_cnf
Response: 200 Type set to A
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,202,162).
Command: STOR gallery.html
Response: 250 CWD command successful
Command: TYPE A
Response: 200 Type set to A
Command: PASV
Response: 550 gallery.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery3.html
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,169,148).
Command: STOR contact.html
Response: 227 Entering Passive Mode (194,117,143,89,149,206).
Command: STOR gallery3.html
Response: 550 contact.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery2.html
Command: PASV
Response: 550 gallery3.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery4.html
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,198,172).
Command: STOR gallery4.html
Response: 227 Entering Passive Mode (194,117,143,89,214,92).
Command: STOR gallery2.html
Response: 550 gallery2.html: Permission denied
Error: Critical file transfer error
Response: 550 gallery4.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery5.html
Command: PASV
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery6.html
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,147,228).
Command: STOR gallery6.html
Response: 227 Entering Passive Mode (194,117,143,89,145,238).
Command: STOR gallery5.html
Response: 550 gallery5.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\mail.php
Command: PASV
Response: 550 gallery6.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\robots.txt
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,192,142).
Command: STOR mail.php
Response: 227 Entering Passive Mode (194,117,143,89,204,61).
Command: STOR robots.txt
Response: 550 mail.php: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\services.html
Command: PASV
Response: 550 robots.txt: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\templatemo_style.css
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,169,90).
Command: STOR services.html
Response: 227 Entering Passive Mode (194,117,143,89,147,105).
Command: STOR templatemo_style.css
Response: 550 templatemo_style.css: Permission denied
Error: Critical file transfer error
Response: 550 services.html: Permission denied
Error: Critical file transfer error
Status: Disconnected from server
Status: Disconnected from server
Response: 421 No Transfer Timeout (300 seconds): closing control connection.
Error: Connection closed by server
Status: Resolving address of ftp.webspace.virginmedia.com
Status: Resolving address of ftp.webspace.virginmedia.com
Status: Connecting to 194.117.143.89:21...
Status: Connecting to 194.117.143.89:21...
Status: Connection established, waiting for welcome message...
Status: Connection established, waiting for welcome message...
Response: 220-Welcome to the Virgin Media PWP FTP servers.
Response:
Response: The local time is Tue Nov 19 20:25:47 2013
Response:
Response: Upload your website files in this directory.
Response:
Response: You can change up a directory [cd ..] and access your logfiles.
Response: To access your statistics you need to login via selfcare first at
Response: http://selfcare.virginmedia.com and view them via a browser.
Response:
Response: Any problems with the service should be reported via the helpsite at
Response: http://help.virginmedia.com or in the virginmedia.support.pwp newsgroup.
Response: 220 ProFTPD 1.3.0rc2 Server (Virgin Media PWP) [172.23.166.52]
Command: USER sggalore@virginmedia.com
Response: 220-Welcome to the Virgin Media PWP FTP servers.
Response:
Response: The local time is Tue Nov 19 20:25:47 2013
Response:
Response: Upload your website files in this directory.
Response:
Response: You can change up a directory [cd ..] and access your logfiles.
Response: To access your statistics you need to login via selfcare first at
Response: http://selfcare.virginmedia.com and view them via a browser.
Response:
Response: Any problems with the service should be reported via the helpsite at
Response: http://help.virginmedia.com or in the virginmedia.support.pwp newsgroup.
Response: 220 ProFTPD 1.3.0rc2 Server (Virgin Media PWP) [172.23.166.53]
Command: USER sggalore@virginmedia.com
Response: 331 Password required for sggalore@virginmedia.com.
Command: PASS **********
Response: 331 Password required for sggalore@virginmedia.com.
Command: PASS **********
Response: 230 User sggalore@virginmedia.com logged in.
Status: Server does not support non-ASCII characters.
Status: Connected
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\fpdbw.ico
Command: CWD /htdocs/_vti_pvt
Response: 250 CWD command successful
Command: TYPE I
Response: 230 User sggalore@virginmedia.com logged in.
Status: Server does not support non-ASCII characters.
Status: Connected
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery.html
Command: CWD /htdocs/_vti_cnf
Response: 200 Type set to I
Command: PASV
Response: 250 CWD command successful
Command: TYPE A
Response: 227 Entering Passive Mode (194,117,143,89,187,113).
Command: STOR fpdbw.ico
Response: 200 Type set to A
Command: PASV
Response: 550 fpdbw.ico: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\contact.html
Command: CWD /htdocs/_vti_cnf
Response: 227 Entering Passive Mode (194,117,143,89,170,233).
Command: STOR gallery.html
Response: 550 gallery.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery3.html
Command: PASV
Response: 250 CWD command successful
Command: TYPE A
Response: 200 Type set to A
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,168,165).
Command: STOR gallery3.html
Response: 227 Entering Passive Mode (194,117,143,89,236,242).
Command: STOR contact.html
Response: 550 gallery3.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery2.html
Command: PASV
Response: 550 contact.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery4.html
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,234,39).
Command: STOR gallery4.html
Response: 227 Entering Passive Mode (194,117,143,89,163,249).
Command: STOR gallery2.html
Response: 550 gallery2.html: Permission denied
Error: Critical file transfer error
Response: 550 gallery4.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery5.html
Command: PASV
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery6.html
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,225,69).
Command: STOR gallery5.html
Response: 227 Entering Passive Mode (194,117,143,89,164,204).
Command: STOR gallery6.html
Response: 550 gallery5.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\mail.php
Command: PASV
Response: 550 gallery6.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\robots.txt
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,228,45).
Command: STOR mail.php
Response: 227 Entering Passive Mode (194,117,143,89,190,189).
Command: STOR robots.txt
Response: 550 mail.php: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\templatemo_style.css
Command: PASV
Response: 550 robots.txt: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\services.html
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,173,233).
Command: STOR templatemo_style.css
Response: 227 Entering Passive Mode (194,117,143,89,164,216).
Command: STOR services.html
Response: 550 templatemo_style.css: Permission denied
Error: Critical file transfer error
Response: 550 services.html: Permission denied
Error: Critical file transfer error
Status: Disconnected from server
Status: Disconnected from server
Status: Resolving address of ftp.webspace.virginmedia.com
Status: Resolving address of ftp.webspace.virginmedia.com
Status: Connecting to 194.117.143.89:21...
Status: Connection established, waiting for welcome message...
Status: Connecting to 194.117.143.89:21...
Status: Connection established, waiting for welcome message...
Response: 220-Welcome to the Virgin Media PWP FTP servers.
Response:
Response: The local time is Tue Nov 19 20:41:10 2013
Response:
Response: Upload your website files in this directory.
Response:
Response: You can change up a directory [cd ..] and access your logfiles.
Response: To access your statistics you need to login via selfcare first at
Response: http://selfcare.virginmedia.com and view them via a browser.
Response:
Response: 220-Welcome to the Virgin Media PWP FTP servers.
Response:
Response: The local time is Tue Nov 19 20:41:10 2013
Response:
Response: Upload your website files in this directory.
Response:
Response: You can change up a directory [cd ..] and access your logfiles.
Response: To access your statistics you need to login via selfcare first at
Response: http://selfcare.virginmedia.com and view them via a browser.
Response:
Response: Any problems with the service should be reported via the helpsite at
Response: Any problems with the service should be reported via the helpsite at
Response: http://help.virginmedia.com or in the virginmedia.support.pwp newsgroup.
Response: 220 ProFTPD 1.3.0rc2 Server (Virgin Media PWP) [172.23.166.53]
Command: USER sggalore@virginmedia.com
Response: http://help.virginmedia.com or in the virginmedia.support.pwp newsgroup.
Response: 220 ProFTPD 1.3.0rc2 Server (Virgin Media PWP) [172.23.166.52]
Command: USER sggalore@virginmedia.com
Response: 331 Password required for sggalore@virginmedia.com.
Command: PASS **********
Response: 331 Password required for sggalore@virginmedia.com.
Command: PASS **********
Response: 230 User sggalore@virginmedia.com logged in.
Status: Server does not support non-ASCII characters.
Status: Connected
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery.html
Command: CWD /htdocs/_vti_cnf
Response: 230 User sggalore@virginmedia.com logged in.
Status: Server does not support non-ASCII characters.
Status: Connected
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_pvt\fpdbw.ico
Command: CWD /htdocs/_vti_pvt
Response: 250 CWD command successful
Command: TYPE A
Response: 250 CWD command successful
Command: TYPE I
Response: 200 Type set to A
Command: PASV
Response: 200 Type set to I
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,194,215).
Command: STOR gallery.html
Response: 227 Entering Passive Mode (194,117,143,89,207,240).
Command: STOR fpdbw.ico
Response: 550 gallery.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery3.html
Command: PASV
Response: 550 fpdbw.ico: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\contact.html
Command: CWD /htdocs/_vti_cnf
Response: 227 Entering Passive Mode (194,117,143,89,154,197).
Command: STOR gallery3.html
Response: 250 CWD command successful
Command: TYPE A
Response: 550 gallery3.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery2.html
Command: PASV
Response: 200 Type set to A
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,176,206).
Command: STOR gallery2.html
Response: 227 Entering Passive Mode (194,117,143,89,207,126).
Command: STOR contact.html
Response: 550 gallery2.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery4.html
Command: PASV
Response: 550 contact.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery5.html
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,166,216).
Command: STOR gallery4.html
Response: 227 Entering Passive Mode (194,117,143,89,201,78).
Command: STOR gallery5.html
Response: 550 gallery4.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\gallery6.html
Command: PASV
Response: 550 gallery5.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\mail.php
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,199,29).
Command: STOR gallery6.html
Response: 227 Entering Passive Mode (194,117,143,89,213,1).
Command: STOR mail.php
Response: 550 gallery6.html: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\robots.txt
Command: PASV
Response: 550 mail.php: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\templatemo_style.css
Command: PASV
Response: 227 Entering Passive Mode (194,117,143,89,142,131).
Command: STOR robots.txt
Response: 227 Entering Passive Mode (194,117,143,89,156,227).
Command: STOR templatemo_style.css
Response: 550 templatemo_style.css: Permission denied
Error: Critical file transfer error
Status: Starting upload of C:\Users\Paul\Desktop\Sgg\_vti_cnf\services.html
Command: PASV
Response: 550 robots.txt: Permission denied
Error: Critical file transfer error
Response: 227 Entering Passive Mode (194,117,143,89,140,232).
Command: STOR services.html
Response: 550 services.html: Permission denied
Error: Critical file transfer error

User avatar
boco
Contributor
Posts: 26914
Joined: 2006-05-01 03:28
Location: Germany

Re: Failed Transfer (Could not Start Transfer)

#14 Post by boco » 2013-11-19 20:50

You get 550 Permission denied errors, that means you don't have permission to upload these files. Note we do not know why, thus you need to contact your hosting support, they are in charge of the server and should be able to fix the permission issue.
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

Newport
500 Command not understood
Posts: 2
Joined: 2013-11-19 20:37
First name: Paul
Last name: B

Re: Failed Transfer (Could not Start Transfer)

#15 Post by Newport » 2013-11-19 21:06

Thanks very much for your help.

Post Reply