Below you can read about in a php.ini snippet (php.ini-dist should be
contained in your distribution).
If you have more questions about those ini directives -> ask mailto:php-general@;lists.php.net
According to your patch: The mail server deletes some attachments
so give another name or better set up a http link or inline it if it is small
enough.
marcus
log_errors_max_len = 1024
; Do not log repeated messages. Repeated errors must occur in same file on same
; line until ignore_repeated_source is set true.
ignore_repeated_errors = Off
; Ignore source of message when ignoring repeated messages. When this setting
; is On you will not log errors with repeated messages from different files or
; sourcelines.
ignore_repeated_source = Off
; If this parameter is set to Off, then memory leaks will not be shown (on
; stdout or in the log). This has only effect in a debug compile, and if
; error reporting includes E_WARNING in the allowed list
report_memleaks = On
; Store the last error/warning message in $php_errormsg (boolean).
track_errors = Off
; Disable the inclusion of HTML tags in error messages.
;html_errors = Off
; If html_errors is set On PHP produces clickable error messages that direct
; to a page describing the error or function causing the error in detail.
; You can download a copy of the PHP manual from http://www.php.net/docs.php
; and change docref_root to the base URL of your local copy including the
; leading '/'. You must also specify the file extension being used including
; the dot.
;docref_root = /phpmanual/
;docref_ext = .html
; String to output before an error message.
;error_prepend_string = "<font color=ff0000>"
; String to output after an error message.
;error_append_string = "</font>"
At 20:36 14.11.2002, John Bradford wrote:
Hi, Firstly, please accept my appologies if this is the wrong list to send a patch to.PHP error messages in web pages are often made difficult to read by the surrounding HTML, and it occurred to me that style-sheet aware browsers could render errors in a more attention-getting way. Non style-sheet aware browsers should just ignore the extra code. The following patchset defines: fancy_html_errors and displays errors in a large box in the middle of the screen, in a capable browser, E.G. Konqueror. One problem is that all errors will overlap, so only the last one is visible, so maybe this output should be in addition to, not instead of the usual error reporting? The attached patch is against PHP 4.2.3. John. -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php