[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] python in cgi scripts won't work, cgi wrap error



On Wed, 14 Nov 2001, Dave Thomas wrote:
> 
> SO I put them in .cgi extensions, I get cgi wrap errors
> 
> somebody said I must modify cgi wrap so I 'own' the script
> 
> I can chmod it to 755 as root, but to no avail

That's mode, not owner, ;) Cgiwrap will NOT execute things that are owned
by root, you much make the file owned by a user, the site admin user is ok

chown webdude.site1 somefile.py

(Insert username.site<number>, yes, with the .)

That will make cgiwrap happy ...

python is a different matter, but i suppose it will work that way...

gsh