I'm still trying to install bugzilla by running the checksetup.pl on
windows. According to the instructions, I edit the code to accommodate
windows:
my $webservergid = 'Administrator'; # getgrnam($my_webservergroup); #
# chown needs to be called with a valid uid, not 0. $< returns the
# caller's uid. Maybe there should be a $bugzillauid, and call with
that
# userid.
chown $<, $webservergid, glob('*');
This statement is dying! How do I change ownership of a file using chown on
windows?
Thanks,
Siegfried