Difference between revisions of "Error message display"
From TMM Wiki
Jump to navigationJump to searchTmmStephen (talk | contribs) |
TMMStephenY (talk | contribs) m |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
| show_extras_section = true | | show_extras_section = true | ||
}} | }} | ||
− | + | {{NATS3 Manual | |
+ | | show_extras_section = true | ||
+ | }} | ||
Nats allows you as the owner to display your own error messages should an error occur on any of the NATS pages. | Nats allows you as the owner to display your own error messages should an error occur on any of the NATS pages. | ||
− | To do so, create the file custom_errors.php in your nats directory. This file can contain whatever message you wish to display on an error page. | + | To do so, create the file custom_errors.php in your /nats/ directory. This file can contain whatever message you wish to display on an error page. |
<pre> | <pre> | ||
custom_errors.php: | custom_errors.php: | ||
− | <? echo "An error has | + | <? echo "An error has occurred on this page, Sorry"; ?> |
</pre> | </pre> | ||
Line 16: | Line 18: | ||
− | < | + | <p style = "font-size: 32px;">A Problem has been Encountered</p> |
− | An error has | + | An error has occurred on this page, Sorry<br /> |
− | + | Available variables for this page are:<br /><br /> | |
+ | $errstr -> The error that has occurred<br /> | ||
+ | $errfile -> The file where the error occurred<br /> | ||
+ | $errline -> The line number where the error occurred<br /> | ||
− | + | [[Category:NATS4 Extras]] | |
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 11:19, 6 June 2011
NATS 3
|
---|
Nats allows you as the owner to display your own error messages should an error occur on any of the NATS pages.
To do so, create the file custom_errors.php in your /nats/ directory. This file can contain whatever message you wish to display on an error page.
custom_errors.php: <? echo "An error has occurred on this page, Sorry"; ?>
This will output the following:
A Problem has been Encountered
An error has occurred on this page, Sorry
Available variables for this page are:
$errstr -> The error that has occurred
$errfile -> The file where the error occurred
$errline -> The line number where the error occurred