Re: [ot] Chmods for phpNuke...

2001-10-29 Thread martin f krafft
* Damon Muller <[EMAIL PROTECTED]> [2001.10.27 00:30:44+1000]: > > > > PHP Nuke requires me to change all files to 666 (chmod -R 666 *) and to > > > > 777 all direcotories in order to use the file manager... Can this be > > > > done > > > > in a sinle operation? chmod -R a=rwX . will change all

Re: [ot] Chmods for phpNuke...

2001-10-26 Thread Damon Muller
PostNuke (www.postnuke.com) might be a better option. It's built on PHPNuke, but seems to be a bit more security conscious. HTH, damon Quoth Alexander Wallace, > Well, that's scary... Anyone knows of more secure alternatives? > > On Thu, 25 Oct 2001, Damon Muller wrote: > > > Quoth Alexander

Re: [ot] Chmods for phpNuke...

2001-10-25 Thread Alexander Wallace
Well, that's scary... Anyone knows of more secure alternatives? On Thu, 25 Oct 2001, Damon Muller wrote: > Quoth Alexander Wallace, > > This is more of a linux question... Is there a way to change recursivly > > the mode to directories only? > > > > PHP Nuke requires me to change all files to 6

Re: [ot] Chmods for phpNuke...

2001-10-25 Thread Damon Muller
Quoth Alexander Wallace, > This is more of a linux question... Is there a way to change recursivly > the mode to directories only? > > PHP Nuke requires me to change all files to 666 (chmod -R 666 *) and to > 777 all direcotories in order to use the file manager... Can this be done > in a sinle o

Re: [ot] Chmods for phpNuke...

2001-10-24 Thread Blars Blarson
In article <[EMAIL PROTECTED]> [EMAIL PROTECTED] writes: >This is more of a linux question... Is there a way to change recursivly >the mode to directories only? find . -type d -print0 | xargs -0 chmod a=rwx -- Blars Blarson [EMAIL PROTECTED]

Re: [ot] Chmods for phpNuke...

2001-10-24 Thread Alexander Wallace
Thanks, but the one with the find should work right? On Wed, 24 Oct 2001, Nathan E Norman wrote: > On Wed, Oct 24, 2001 at 02:42:09PM -0500, Nathan E Norman wrote: > > $ chmod a+rwx /basedir > > $ chmod -R a+rwX /basedir > > If I could type I'd be dangerous. The first command is not needed. >

Re: [ot] Chmods for phpNuke...

2001-10-24 Thread Alexander Wallace
Thanks! That's what i needed! On Wed, 24 Oct 2001, Nathan E Norman wrote: > On Wed, Oct 24, 2001 at 08:46:00AM -0500, Alexander Wallace wrote: > > This is more of a linux question... Is there a way to change recursivly > > the mode to directories only? > > > > PHP Nuke requires me to change all

Re: [ot] Chmods for phpNuke...

2001-10-24 Thread Nathan E Norman
On Wed, Oct 24, 2001 at 02:42:09PM -0500, Nathan E Norman wrote: > $ chmod a+rwx /basedir > $ chmod -R a+rwX /basedir If I could type I'd be dangerous. The first command is not needed. Cheers, -- Nathan Norman - Staff Engineer | A good plan today is better Micromuse Ltd. | than

Re: [ot] Chmods for phpNuke...

2001-10-24 Thread Nathan E Norman
On Wed, Oct 24, 2001 at 08:46:00AM -0500, Alexander Wallace wrote: > This is more of a linux question... Is there a way to change recursivly > the mode to directories only? > > PHP Nuke requires me to change all files to 666 (chmod -R 666 *) and to > 777 all direcotories in order to use the file m

[ot] Chmods for phpNuke...

2001-10-24 Thread Alexander Wallace
This is more of a linux question... Is there a way to change recursivly the mode to directories only? PHP Nuke requires me to change all files to 666 (chmod -R 666 *) and to 777 all direcotories in order to use the file manager... Can this be done in a sinle operation? Thanks!