Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fatal Error?

Status
Not open for further replies.

Nidan1117

Technical User
Mar 26, 2004
23
US
Im building a website with three different php sites (they are in different directories) The url i have for one php site is:
Im trying to put a subdomain like:
I have the subdomain setup, but when i type the subdomain i get this error:

Fatal error: Call to undefined function: message_die() in /home/nidan2/public_html/cod/db/db.php on line 88


Please help :-(
 
phpnuke is what im using to build the sites, all of them are the same version number
 
message_die() must be a user-defined function. It doesn't show up in the PHP manual.

I'd guess that the default script for that site includes another PHP script that defines the function, but the include file cannot be found.

This should generate an error, but there are lots of ways to supress that error.

Want the best answers? Ask the best questions!

TANSTAAFL!!
 
This should generate an error, but there are lots of ways to supress that error.

How?
 
There's lots of ways to keep PHP from reporting errors.

Using the "@" error-supression operator.

Tweaking error-reporting settings through the use of the error_reporting() function.

Various settings of error_reporing and display_errors in php.ini, httpd.conf, .htaccess files, and injudicious use of ini_set()

Want the best answers? Ask the best questions!

TANSTAAFL!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top