vote up 0 vote down star

I'm basically a junior developer. I know HTML/CSS/PHP/Python/MYSQL at different levels of knowledge, but I more or less know my stuff. I'm working on Mac OS X 10.5.5.

So I was recently passed a project to convert a Flash-based site into Javascript/CSS. I basically finished the front end, and now I'm working on the backend. The entire backend, including the database, are in .pl files (yes I know, I know).

Now even though I don't know Perl, it is obvious where the code breaks out into HTML, and I want to edit these parts to made it produce standard-compliant XHTML/CSS. Now as I am always cautious about working with new hosters, I figured for my first time trying to edit this file I would edit something non volatile; I changed a h1 header to say:

ContactS

instead of

Contacts

Which shouldn't be harmful in any way possible. I did this in either Textmate or Dreamweaver (don't remember which) and saved it, uploaded it back, and it worked as expected. Now this site was created with Adobe Go Live (predecessor to Dreamweaver) and this program creates its own custom header (which is basically useless for the web) so I did another non-volatile change to it (changed Adobe Go Live 6 to Adobe Go Live 7). Backend went down completely. Restoring backups did nothing. Reversing the change did nothing.

Now a week later, the backup started magically working. I obviously attributed all of this to server-side problems, but I figured I would make a full backup and try again. Only this time, I merely opened the file in Textmate, saved it "as is", and reuploaded back. Backend went down completely again.

Long story short, the hoster put all the blame on me saying that he ran my files through a dos2unix converter and it then worked.

I double checked encodings and permissions; I don't get why both Textmate and Dreamweaver would get it wrong. I'm not exactly sure if my hoster is telling the truth to me either. Do you have any suggestions about how I should go about this?

flag
Are you FTPing stuff up and what with? – Donnelle Dec 1 '08 at 20:20
I had a programmer have the same problem with a shell script. Edited with Notepad FTP'd to an AIX box with KSH and the script didn't work. Change the line terminators and the script worked. Some "real" editors will convert for you and some FTP will also convert for you. what are you using for FTP? – jim Dec 1 '08 at 20:32

closed as exact duplicate by brian d foy Dec 3 '08 at 4:06

2 Answers

vote up 0 vote down

You edit perl files with an HTML editor? Is that a WYSIWYG editor? Perhaps some unseen changes happen under the hood, which you may find when you use a real text editor.

link|flag
vote up 2 vote down

Sounds like your running into the Mac<->PC FTP problem. I have a designer who uses Mac and when I had a Windows development environment (I'm now Linux), I had to run his files through a filter as well or I'd run into the same problem.

Your FTP program (or however your uploading the file) is probably set to Binary mode to transfer text files, try switching it to ASCII, I believe that's the fix for this issue, and your host won't have to translate your files.

How to Transfer Text Files Between Linux, Macintosh, and Microsoft Windows Operating Systems

dos2unix manual

link|flag
I tried this on Linux as well; no go. I also tried to set transfer to ASCII, no go. I also tried to run the file in question into the dos2unix utility, no go as well. – unknown (yahoo) Dec 1 '08 at 22:02
I've had similar problems when some of the line endings were changed and others not, as it seems to confuse dos2unix. Gotta love 30+-year old legacy problems like this. – Max Lybbert Dec 3 '08 at 2:07

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