From ddjolley at gmail.com Mon May 7 05:01:31 2007 From: ddjolley at gmail.com (Doug Jolley) Date: Mon, 7 May 2007 05:01:31 -0700 Subject: [OCLUG-devel] CSS - Relative Positioning Message-ID: Can anyone please tell me why, in the snippit of code that follows, my div element shows up positioned about 16px from the top? It's as if there were a top margin of 16px like there would have been on each side if I hadn't inserted the 'margin: 0' style in the body tag. Most importantly, I'm trying to figure out how to get the div element flush with the top. Thanks for any input. Here's the snippit: Test 1

My dog has fleas.

... doug -------------- next part -------------- An HTML attachment was scrubbed... URL: http://localhost.localdomain/pipermail/oclug-devel/attachments/20070507/64104b73/attachment.html From list3 at truswan.com Wed May 9 07:04:29 2007 From: list3 at truswan.com (list3 at truswan.com) Date: Wed, 9 May 2007 07:04:29 -0700 (PDT) Subject: [OCLUG-devel] I need a consultant for a php compile Message-ID: <1345.213.13.107.131.1178719469.squirrel@mail.truswan.com> I need a special compile of php and I'm inexperienced enough that I would like an old hand at this to do it. I need a stand-alone instance of php for command line use only. The object should have a different name from the php instances already on a production machine to insure against interference. The main reason for the compile is that it will run a listener for socket connections which will include some encrypted fields. Thus it needs to be with sockets and encryption (for 3DES symmetrical) but without any Apache possibilities. And thus the usual make-install won't do unless it is altered not to install under the usual name in the usual location. Will pay for somebodies time, of course. Will provide access for the duration in a VPN. Reply to email would be nice. Tx, Paul W From x at xman.org Wed May 9 08:35:40 2007 From: x at xman.org (Christopher Smith) Date: Wed, 09 May 2007 08:35:40 -0700 Subject: [OCLUG-devel] I need a consultant for a php compile In-Reply-To: <1345.213.13.107.131.1178719469.squirrel@mail.truswan.com> References: <1345.213.13.107.131.1178719469.squirrel@mail.truswan.com> Message-ID: <4641EA4C.8070602@xman.org> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 list3 at truswan.com wrote: > I need a special compile of php and I'm inexperienced enough that I would > like an old hand at this to do it. I need a stand-alone instance of php > for command line use only. The object should have a different name from > the php instances already on a production machine to insure against > interference. The main reason for the compile is that it will run a > listener for socket connections which will include some encrypted fields. > Thus it needs to be with sockets and encryption (for 3DES symmetrical) but > without any Apache possibilities. And thus the usual make-install won't do > unless it is altered not to install under the usual name in the usual > location. > > Will pay for somebodies time, of course. Will provide access for the > duration in a VPN. > > Reply to email would be nice. So, I'm not sure what you are asking for makes sense. The php executable itself isn't compiled in with any Apache bindings that I'm aware of. Most distributions give you a way to install php without installing mod_php (which is an Apache module for php). Either way, generally you'd want to secure the php *script* (as opposed to the php executable itself) that is doing this binding with sockets and encryption. Just make it non-executable for whatever user is running your apache (typically user "nobody") and you are pretty much done. No recompiles necessary. - --Chris -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGQepMOagjPOywMBARAt1rAKDNylMrXTHrZ6nxvcrmEBpfBx9XAwCcDUkW SRQkmfhRfdR5g/abrHvE4hg= =ZLYK -----END PGP SIGNATURE----- From list3 at truswan.com Wed May 9 11:33:58 2007 From: list3 at truswan.com (list3 at truswan.com) Date: Wed, 9 May 2007 11:33:58 -0700 (PDT) Subject: [OCLUG-devel] I need a consultant for a php compile Message-ID: <51019.213.13.106.1.1178735638.squirrel@mail.truswan.com> Christopher Smith wrote: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 list3 at truswan.com wrote: > > I need a special compile of php and I'm inexperienced enough that I would > > like an old hand at this to do it. I need a stand-alone instance of php > > for command line use only. The object should have a different name from > > the php instances already on a production machine to insure against > > interference. The main reason for the compile is that it will run a > > listener for socket connections which will include some encrypted fields. > > Thus it needs to be with sockets and encryption (for 3DES symmetrical) but > > without any Apache possibilities. And thus the usual make-install won't do > > unless it is altered not to install under the usual name in the usual > > location. > > > > Will pay for somebodies time, of course. Will provide access for the > > duration in a VPN. > > > > Reply to email would be nice. So, I'm not sure what you are asking for makes sense. The php executable itself isn't compiled in with any Apache bindings that I'm aware of. Most distributions give you a way to install php without installing mod_php (which is an Apache module for php). Either way, generally you'd want to secure the php *script* (as opposed to the php executable itself) that is doing this binding with sockets and encryption. Just make it non-executable for whatever user is running your apache (typically user "nobody") and you are pretty much done. No recompiles necessary. As far as I can tell from reading, it is necessary to compile php with sockets in order for it to use sockets at all. That's the source of my need to compile the thing. I have never done that and I'm nervous about compiling it on a production machine that already has some command line php scripts running. The encryption has nothing to do with "securing" the executable, I just mentioned it because some of the data I need to handle will need to be encrypted. Paul W From gremlinz273 at hotmail.com Fri May 11 03:51:21 2007 From: gremlinz273 at hotmail.com (Eric Grun) Date: Fri, 11 May 2007 10:51:21 +0000 Subject: [OCLUG-devel] CSS - Relative Positioning In-Reply-To: Message-ID: The

tag is causing your problems, it places a line break before the opening

tag. Remove it, and the page should display as you intended. Note, some browsers will place a break before and after the

element. Consider using a tag instead, this should give you a more consistent appearance across browsers. Like so: Test 1
My dog has fleas.
-Eric A. Grun >From: "Doug Jolley" >To: oclug-devel at oclug.org >Subject: [OCLUG-devel] CSS - Relative Positioning >Date: Mon, 7 May 2007 05:01:31 -0700 > >Can anyone please tell me why, in the snippit of code that follows, my div >element shows up positioned about 16px from the top? It's as if there were >a top margin of 16px like there would have been on each side if I hadn't >inserted the 'margin: 0' style in the body tag. Most importantly, I'm >trying to figure out how to get the div element flush with the top. Thanks >for any input. Here's the snippit: > >http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> > > > Test 1 > > >
>

My dog has fleas.

>
> > > > ... doug >_______________________________________________ >OCLUG-devel mailing list -- OCLUG-devel at oclug.org >http://mailman.oclug.org/mailman/listinfo/oclug-devel _________________________________________________________________ Like the way Microsoft Office Outlook works? You?ll love Windows Live Hotmail. http://imagine-windowslive.com/hotmail/?locale=en-us&ocid=TXT_TAGHM_migration_HM_mini_outlook_0507