Page 1 of 1

Errors or Config Issue?

Posted: Sat 5. Jun 2004, 18:59
by michael69
My development system is running: Windows NT 5.0 build 2195; Apache/2.0.47 (Win32) mod_ssl/2.0.47 OpenSSL/0.9.7c PHP/4.3.3 mod_jk2/2.0.2php:v4.3.3 Win2K and mySQL 4.0.15-max-nt

There are errors in the event log like:
1) The description for Event ID ( 2000 ) in Source ( c-client ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. The following information is part of the event: , PHP Notice: Undefined variable: vals in ..\include\inc_tmpl\article.editsummary.tmpl.php on line 115.

and

2) The description for Event ID ( 2000 ) in Source ( c-client ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. The following information is part of the event: , PHP Notice: Undefined index: HTTP_REFERER in ..\include\inc_tmpl\article.new.tmpl.php on line 260.

Any suggestions of what is wrong?

Thanks for any help.

Re: Errors or Config Issue?

Posted: Sat 5. Jun 2004, 19:03
by DeXXus
michael69 wrote:Any suggestions of what is wrong?

Thanks for any help.
Those ~appear~ to be PHP error "NOTICES"...

There's a setting in "php.ini" to turn off notices and still receive other error messages:

Code: Select all

;   - Show all errors, except for notices
;
error_reporting=E_ALL & ~E_NOTICE

Posted: Sat 5. Jun 2004, 19:14
by michael69
Thanks