On Wed, 9 Feb 2005, [ISO-8859-1] Flávio Henrique wrote:
2) I tried to run squid only as root. I can't run as "squid" (my cache_effective_user), because, I cant do "su squid" (I dont know the password).
When we asked you to run as the cache_effective_user we talked about testing the helper alone manually.
In addition root is allowed to su to any user without password.
3) Sorry, but how to 'output to stderr what users.sh is receiving from squid'??
Modify your helper to print messages to stderr. In C this is
fprintf(stder, "...");
in unix Shell it is
echo "..." >&2
in perl it is
print STDERR "..."
and similarily on most other languages. Which language have you used when writing your helper?
Regards Henrik