• 9/5/96. Version 1.2 of WebCaMILE has an extraneous debugging statement which causes CaMILE to fail on the Apache WWW server with a misconfiguration error. Simply comment out line 193 of the *.process file. It currently reads:
    print "Done writing discussion files!\n";
    

    Change it to say:

    # print "Done writing discussion files!\n";
    
  • 9/5/96 If you are not using user authentication to set user names, a simple fix is to ask the user to identify themselves on the Compose page. You can make this change by inserting, at line 220 in the *.compose script:
            if (!defined($USR_NAME))
            {
                    print qq(<h2>User</h2>\n);
                    print qq(<input type="text" size=40 name="USR_NAME">\n);
            }
    

    (For some reason, user names are coming back with a "#" at the end of them, but this at least works.)