That error message looks like it comes from this c code:
if ((msgFile = fopen("spooles.out", "a")) == NULL) {
fprintf(stderr, "\n fatal error in spooles.c"
"\n unable to open file spooles.out\n");
}
so it suggests some general file opening problem. Have you checked that the working directory exists, the application has write permission, the disk isn't full, the file isn't open in another application (perhaps another instance of CCX still running?), etc.?
Comments
That error message looks like it comes from this c code: so it suggests some general file opening problem. Have you checked that the working directory exists, the application has write permission, the disk isn't full, the file isn't open in another application (perhaps another instance of CCX still running?), etc.?