HTTP Error 500 (Internal Server Error):

Forum for questions and support relating to the 1.25.x releases only.
Locked
dsellinger
Posts: 1
Joined: Fri Aug 31, 2012 6:45 pm

HTTP Error 500 (Internal Server Error):

Post by dsellinger »

Install of zomeminder, with these instructions. http://www.zoneminder.com/wiki/index.ph ... e_easy_way

I visit servername, "It works!"
Add /zm and
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.

Apache error logs shows this.
[Fri Aug 31 11:42:15 2012] [error] [client 10.0.1.40] PHP Fatal error: Call to undefined function Fatal() in /usr/share/zoneminder/index.php on line 71

Code: Select all

66 define( "ZM_BASE_PATH", dirname( $_SERVER['REQUEST_URI'] ) );
67 define( "ZM_SKIN_PATH", "skins/$skin" );
68
69 $skinBase = array(); // To allow for inheritance of skins
70 if ( !file_exists( ZM_SKIN_PATH ) )
71     Fatal( "Invalid skin '$skin'" );
72 require_once( ZM_SKIN_PATH.'/includes/init.php' );
73 $skinBase[] = $skin;
Any ideas?
Locked