Re: [Discuss] php dev's code with warnings and notices

2014-07-27 Thread Eric Chadbourne
On 07/26/2014 08:11 PM, ma...@mohawksoft.com wrote: A properly configured and developed web site with no warning would probably only serve static web pages. Really? I've written code that produces no warnings or notices and I don't consider myself particularly exceptional at programming. I've

Re: [Discuss] php dev's code with warnings and notices

2014-07-27 Thread Daniel Barrett
Another reason to track down log messages is performance. I've seen PHP code that inadvertently logged a message on each iteration of a loop. When we removed the message, the web site performance *doubled* (i.e., page render time dropped by half). -- Dan Barrett dbarr...@blazemonger.com

Re: [Discuss] php dev's code with warnings and notices

2014-07-27 Thread Eric Chadbourne
On 07/27/2014 12:22 PM, Daniel Barrett wrote: Another reason to track down log messages is performance. I've seen PHP code that inadvertently logged a message on each iteration of a loop. When we removed the message, the web site performance *doubled* (i.e., page render time dropped by half).

Re: [Discuss] Verizon getting out of being regulated

2014-07-27 Thread Rich Braun
MBR m...@arlsoft.com asked: Where does ATT provide landline service? They don't seem to be in Arlington. In San Francisco just like in Cambridge/Boston area, Comcast rules for broadband. But there are three other companies with broadband offerings: ATT DSL (uverse), Astound.Net (aka RCN

Re: [Discuss] php dev's code with warnings and notices

2014-07-27 Thread Rich Braun
Eric Chadbourne asked: The code they have submitted works, but it has a bunch of warnings and notices in the logs. I personally think this is sloppy coding. My question is, how strong a stand should I take on this issue? I have the senior role but I am also the new guy. I've recruited a

Re: [Discuss] php dev's code with warnings and notices

2014-07-27 Thread Tom Metro
Eric Chadbourne wrote: The code they have...has a bunch of warnings and notices in the logs. I personally think this is sloppy coding. My question is, how strong a stand should I take on this issue? Part of this is going to depend on how practical it is to achieve no warnings in PHP code. I

Re: [Discuss] Seeking information on binaries called entities and fixup

2014-07-27 Thread John Abreau
Do they work on the old server but not on the new server? Or do they fail on the old server as well? If they work on the old server, then you can run them on some sample input and compare the input with the output to see what is being changed. If it's just mapping html entities, it should be easy

Re: [Discuss] php dev's code with warnings and notices

2014-07-27 Thread Peter (peabo) Olson
On July 27, 2014 at 2:26 PM Rich Braun ri...@pioneer.ci.net wrote: Eric Chadbourne asked: The code they have submitted works, but it has a bunch of warnings and notices in the logs. I personally think this is sloppy coding. My question is, how strong a stand should I take on this issue?