I made some changes to a client site, and then uploaded the changed files via filezilla. The site isn't working anymore :-( I checked the source code of the files on the server to make sure they were updated, and I see that some of the files have a lot of whitespace removed. ie, multiple statements on one line. actual php code is commented out because the single-line comment just keeps going on. In my local file, it looks like this:
//here is a comment
$xyz = 123;
But the file on the server looks like this:
//here is a comment $xyz = 123;
and I'm guessing that's why it's broken!
I tried re-uploading over and over, and nothing doing. Really stuck here, no clue what is going on. Any ideas, thanks.