1.

Solve : Differences between Linux and Windows Server?

Answer»

I have been studying a web site that uses ASP.NET and so it resides on a WINDOWS Server but it also uses some JScript so it is worth studying.  Anyway, I am moving it to a Linux server and I have noticed some DIFFERENCES in the way it handles files.  First of all, the Windows Server is not case sensitive.  But I also noticed something else.  It seems that the Windows Server can have file names with spaces in them like this:  "Creative%20Design%20vert_S" where the "%20" is a space.  But, when I try to upload this directory to the Linux server using FileZilla it does not seem to work.  And then when I try to CREATE the directory, I get an error "Forbidden command argument".  So is using %20 in a direcory name illegal in Linux?
you've been busy.

http://discussions.virtualdr.com/showthread.php?t=251603

http://forums.randi.org/showthread.php?p=8059837

Anyway, I would guess the problem is that %20 is a URL escape code and that FTP doesn't accept filenames as URLs. it accepts them as filenames. Also, according to the FTP protocol, it would appear that if there are spaces in a name you are to put periods as placeholders when specifying that name.


Another alternative would be to use mput and or mget, instead.

As to your server, you'll need to install the Mono/ASP.NET plugin for Apache. If your lucky it will work. If you aren't, it won't.



Discussion

No Comment Found