UserX
UserX

Reputation: 1229

Netbeans 7.2 FTP is incredibly slow

I just created a new project that connects to a remote website to edit the files. It's been 10 minutes and it still hasn't finished downloading.

The site is no bigger than 30mb and I have a decent internet connection.

Anyone else experiencing this?

Upvotes: 6

Views: 1680

Answers (2)

PosTi85
PosTi85

Reputation: 1

Yes, for me too.

I've just uploaded a project with Netbeans and it took 4:47 minutes. I've done the same with FileZilla and it took 1:48 minutes.

I think it's because it dones many other operations. For example, uploading the same file:

Netbeans:

  ...
RNFR forms.php
RNTO forms.php.old
Rename successful.
RNFR forms.php.new
RNTO forms.php
Rename successful.
DELE formus.php.old
File delete OK.
  ...

Filezilla:

  ...
Command: put "P:\Projects\...\forms.php" "forms.php"
State:   Successfully transfered, transfered 4.096 bytes in 1 seconds
  ...

They should let us configuring this behavior.

Upvotes: 0

Tomas Mysik
Tomas Mysik

Reputation: 11

Verify what NetBeans is doing exactly (in IDE log, in the Output window). Also try to switch Passive/Active mode on/off.

Upvotes: 1

Related Questions