I tried uploading files to my server

my.php (normal local file)

<?php
$box_title= "SEARCH ME"
?>

After uploading via FileZilla FTP Client (remote server file)

// SOMETIMES ABOVE FILE BECOMES
<?php$box_title= "SEARCH ME"?>

// OR SOMETIMES LIKE THIS
<?php

$box_title= "SEARCH ME"

?>

I suspect this is a server related issue, but not sure. Can anyone explain this problem with solution

Thanks

link|improve this question

2  
Is it being transfered in ASCII or Binary mode? – Jonathan Kehayias Dec 14 '09 at 21:02
which ftp software is running on the server? – streetparade Dec 14 '09 at 21:08
I use auto mode. and its happening on a specific shared host. elsewhere i am able to upload files properly. – Ish Kumar Dec 14 '09 at 21:08
I already mentioned "FileZilla FTP Client" – Ish Kumar Dec 14 '09 at 21:09
did you also tryed an other FTP Client software? – streetparade Dec 14 '09 at 21:09
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

An above comment already suggested looking at ASCII/binary mode. It's a weird property of FTP that files can be treated as ASCII text (in which case the FTP transmission will automatically change the encoding of line endings to fit the one used by the target machine) or binary (in which case they'll be transferred without any changes).

The mutilation you quoted in your question is probably not half as bad as it looks; some editors actually do not display UNIX-style line ending encoding (which is what FTP in ASCII mode probably put into your files) even though it's there.

The different encodings for line endings are a constant source of grief in portable computing stuff... in this case the best thing I can recommend is for you to try out if it works the way you do it now, and if it doesn't, try forcing your FTP client's transfer mode to a different setting.

link|improve this answer
I tried with "Binary mode" and it worked. So should i keep it as binary mode for future files (image/file) uploading? – Ish Kumar Dec 14 '09 at 21:17
1  
It's pretty much up to you. If the resulting files work fine, by all means stick with binary mode. Sometimes you get confusing results with binary mode if the server expects a different line ending encoding than your files have, but you probably don't need to worry about that until it happens. – Jan Krüger Dec 14 '09 at 23:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.