Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorWouWou
    • CommentTimeJun 20th 2009 edited
     
    Hello,

    I got constantly errors on my gallery webpages > f.e. see http://www.publik-antwerp.be/ploggerb3/publik_antwerp/11_04_2009
    Everything seems to work fine ...

    What can I do to disable the debugging function?

    thanks
    •  
      CommentAuthorsidtheduck
    • CommentTimeJun 20th 2009
     
    WouWou,

    You can disable these by opening plog-globals.php and entering the following code at the top below the session code:
    error_reporting(E_ERROR);
    or
    error_reporting(E_ALL & ~E_NOTICE);
    Both of these settings will suppress the notice errors (but still show any fatal errors or warnings).

    Please note that we have tried hard to clean up these notices for the next release as well, so it should not matter what your error_reporting level is set at.