In article <NDBBKHAINBDFGBJFHDJDKEPHHHAA.brucev@cyberlink.com>, "Bruce Vander Werf" <brucev@cyberlink.com> writes:
Anyway, I'm a Linux rookie, but I did figure out how to SSH into my site through my web provider, then I used the following shell commands:
rm accept ln dist accept
This seemed to do the trick, but did I do it right?
That should be all you need to do.
Any ideas how the file may have become unlinked in the first place?
The most common cause in my experience is when someone edits the dist or accept file with emacs or some other editor that doesn't pay attention to hardlinks by default. Emacs's natural behavior is to make a backup of the file you're editing by renaming it to filename~, then creating a new file in its place. Vi, pico and some other editors make backup files by copying rather than renaming, which avoids this particular problem.