Re: Different size of files
PHP files are by default transfered using 'text' (or ASCII) mode. In this case the size usually change. Note that as long as the file is plain-text (what PHP is) no information is lost, it is just a change in format. Anyway if you want to avoid this, force 'binary' mode on copy confirmation dialog. You may check 'use same settings next time' to force the setting forever. However for some file types the conversion is necessary as some unix application require that the files are converted. I believe that PHP can handle both formats on both platforms.