Forum OpenACS Development: Re: Evaluation Package - Windows

Collapse
Posted by Nima Mazloumi on
You need to change acs-content-repository/tcl/content-revision-procs.tcl
line 195:
set tmp_filename [ns_mktemp /tmp/XXXXXX]
Apparently the developer assumed a *nix system. This will always break in Windows.
Try changing it to
set tmp_filename [ns_tmpnam]
and see what happens.
Collapse
Posted by Ashish Talati on
Thanks Nima.

I will try that option as well. But temporarily I was able to fix the issue by create /tmp Directory onto my root folder ( in my case D:\ ). So far I was able to add applet via Manage Applet. I will do further testing on it.

Thanks again Nima & Maurizio