So, this has undoubtedly been figured out before, but I'm an incredible post whore. So here we go. I noticed that a couple of things don't work properly on Windows - the HTTP server and blog tool. Here's a temporary fix to get them working for Windows: Open blog.arc and change line 8 from (= postdir* "arc/posts/" maxid* 0 posts* (table)) to (= postdir* "arc\\posts\\" maxid* 0 posts* (table)) Then open srv.arc and change line 9 from (= arcdir* "arc/" logdir* "arc/logs/" quitsrv* nil breaksrv* nil) to (= arcdir* "arc\\" logdir* "arc\\logs\\" quitsrv* nil breaksrv* nil) All that needs to be done is '/' to '\\'. There are similar things in prompt.arc and strings.arc. I think it's a safe bet that they create problems as well. |