Prev: PHP SOAP Using SAML
Next: mysql cache query as xml
From: Jeff Weinberger on 7 Jul 2009 17:46 On Jul 7, 2009, at 12:30 PM, Tom Worster wrote: > On 7/7/09 12:17 PM, "Jeff Weinberger" <jeff(a)JeffWeinberger.com> wrote: > >> On Jul 7, 2009, at 8:38 AM, Daniel Brown wrote: >> >>> On Tue, Jul 7, 2009 at 11:03, Jeff >>> Weinberger<jeff(a)jeffweinberger.com> wrote: >>>> >>>> This seemed like it would be the perfect solution...but alas it did >>>> not >>>> work. 22527 seems right, but after changing php.ini to that and >>>> restarting >>>> php and apache, I am still getting "Deprecated..." messages. >>> >>> Dumb question, Jeff: are you sure you're editing the correct >>> php.ini file? >>> >>> -- >>> </Daniel P. Brown> >>> daniel.brown(a)parasane.net || danbrown(a)php.net >>> http://www.parasane.net/ || http://www.pilotpig.net/ >>> Check out our great hosting and dedicated server deals at >>> http://twitter.com/pilotpig >>> >>> -- >>> PHP General Mailing List (http://www.php.net/) >>> To unsubscribe, visit: http://www.php.net/unsub.php >> >> Daniel: >> >> Not a dumb question at all! I check every time (php_info()) to make >> sure the "loaded configuration file" is the one I'm editing. So, as >> far as I can tell, yes. >> >> Should I be looking at something else to be sure? > > i've now had a look at http://www.php.net/manual/en/errorfunc.constants.php > > in your shoes i'd try out 2047 (with is everything up to and including > E_USER_NOTICE) and possibly 6143 (=2047+4096) if you have your own > error > handler. > > if still no luck i can't think of anything else to suggest but work > backwards: > > check the value returned by error_reporting() is the value you set in > php.ini. > > binary decode it to double check. > > if it sill makes no sense, check the php bugs db. and if nothing, > maybe > report it. > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php Tom: thanks - I'll try those and report back, and will keep playing with various combinations until I get it to work or prove it doesn't :) One question - that I for some reason have not found - is there a list of the numerical values of the E_* constants somewhere? Thanks for your help! --Jeff > Real love is a pilgrimage. It happens when there is no strategy, but it is very rare because most people are strategists. -Anita Brookner
From: Daniel Brown on 7 Jul 2009 18:16 On Tue, Jul 7, 2009 at 17:46, Jeff Weinberger<jeff(a)jeffweinberger.com> wrote: > > One question - that I for some reason have not found - is there a list of > the numerical values of the E_* constants somewhere? You bet: http://php.net/manual/en/errorfunc.constants.php -- </Daniel P. Brown> daniel.brown(a)parasane.net || danbrown(a)php.net http://www.parasane.net/ || http://www.pilotpig.net/ Check out our great hosting and dedicated server deals at http://twitter.com/pilotpig
From: =?iso-8859-1?Q?Andre_H=FCbner?= on 8 Jul 2009 03:11
Hello, >> Try >> >> error_reporting(E_ALL ^ E_DEPRECATED); > Thanks for your suggestion - it would work nicely, except that that is > a runtime function that is called within a script. but if it works within script you could do it by auto_prepend_file to stop flooding the log until solution is found... i start packaging 5.3 next days so it is also interesting for me and my "deprecated" users. unfortunately no 5.3 experience until now... Andre |