1. Pete Eberlein's Web Utilities Issue
- Posted by "C. K. Lester" <cklester at yahoo.com> Jan 13, 2003
- 495 views
When I run webserver.exu, it starts up fine and a shell window opens (I'm= =20 using KDE) with a blinking cursor. I open up a Konquerer browser and enter "http://localhost:8080/index.html= " and=20 get the following: --start An error occured while loading http://localhost:8080/index.html: The process for the http://localhost protocol died unexpectedly. --end The shell window created by webserver.exu also closes and disappears afte= r=20 trying the above URL. I'm guessing that webserver.exu crashes, but I get no ex.err message! Tha= t=20 doesn't really help me out, seein' as how I'm a BSD newbie 'n' all. :) Somebody want to throw(ck,"a clue")? Thanks! -ck
2. Re: Pete Eberlein's Web Utilities Issue
- Posted by jbrown1050 at hotpop.com Jan 13, 2003
- 472 views
On Sun, Jan 12, 2003 at 09:41:06PM -0600, C. K. Lester wrote: > > When I run webserver.exu, it starts up fine and a shell window opens (I'm > using KDE) with a blinking cursor. > > I open up a Konquerer browser and enter "http://localhost:8080/index.html" and > > get the following: > > --start > An error occured while loading http://localhost:8080/index.html: > > > The process for the http://localhost protocol died unexpectedly. > --end > > The shell window created by webserver.exu also closes and disappears after > trying the above URL. > > I'm guessing that webserver.exu crashes, but I get no ex.err message! That > doesn't really help me out, seein' as how I'm a BSD newbie 'n' all. :) > > Somebody want to throw(ck,"a clue")? > > Thanks! > > -ck Clue 1: based on what we learned, change all 'open_dll("")' to 'open_dll("libc.so")' That should fix a big potential bug. Clue 2: in the working dir of webserver.exu, try this 'touch ex.err;chmod 0555 ex.err' That should bypass any problems w/ the write permissions of the file/dir. Clue 3: ... jbrown > > ==^^=============================================================== > This email was sent to: jbrown1050 at hotpop.com > > > TOPICA - Start your own email discussion group. FREE! -- /"\ ASCII ribbon \ / campain against X HTML e-mail and /*\ news and unneeded MIME
3. Re: Pete Eberlein's Web Utilities Issue
- Posted by gertie at visionsix.com Jan 13, 2003
- 466 views
On 12 Jan 2003, at 22:50, jbrown1050 at hotpop.com wrote: > > On Sun, Jan 12, 2003 at 09:41:06PM -0600, C. K. Lester wrote: > > > > When I run webserver.exu, it starts up fine and a shell window opens (I'm > > using KDE) with a blinking cursor. > > > > I open up a Konquerer browser and enter "http://localhost:8080/index.html" > > and > > get the following: > > > > --start > > An error occured while loading http://localhost:8080/index.html: > > > > > > The process for the http://localhost protocol died unexpectedly. > > --end > > > > The shell window created by webserver.exu also closes and disappears after > > trying the above URL. > > > > I'm guessing that webserver.exu crashes, but I get no ex.err message! That > > doesn't really help me out, seein' as how I'm a BSD newbie 'n' all. :) > > > > Somebody want to throw(ck,"a clue")? > > > > Thanks! > > > > -ck > > Clue 1: based on what we learned, change all 'open_dll("")' to > 'open_dll("libc.so")' That should fix a big potential bug. > > Clue 2: in the working dir of webserver.exu, try this 'touch ex.err;chmod 0555 > ex.err' That should bypass any problems w/ the write permissions of the > file/dir. > > Clue 3: ... Leave the ex.err there once you do chmod. Deleting the file deletes the permissions. But i dunno *nix, so i could be wrong. Kat
4. Re: Pete Eberlein's Web Utilities Issue
- Posted by acran at readout.fsnet.co.uk Jan 13, 2003
- 486 views
At 10:50 PM 1/12/03 -0500, you wrote: <snip> >Clue 2: in the working dir of webserver.exu, try this 'touch ex.err;chmod 0555 ex.err' >That should bypass any problems w/ the write permissions of the file/dir. Make that: touch ex.err ; chmod 0666 ex.err A perm of 0555 actually removes all write access which is probably not what you want. Regards, Andy Cranston.