ZoneMinder는 제어판 대신 코드를 표시합니다.

ZoneMinder는 제어판 대신 코드를 표시합니다.

오늘 설치했어요구역 관리자(바라보다GitHub그리고홈페이지) 몇 가지 지침을 따르십시오(보셔야 할 경우 알려주세요). 그런데 웹사이트를 열려고 하면 패널이 열리지 않습니다. 대신 일부 PHP 코드를 엽니다. 이 문제를 해결하는 방법을 알려주실 수 있나요?

<?php
//
// ZoneMinder main web interface file, $Date$, $Revision$
// Copyright (C) 2001-2008 Philip Coombes 
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
//

error_reporting( E_ALL );

$debug = false; 
if ( $debug )

답변1

php.ini를 해석하려면 웹 서버(웹 서버에서 파일을 가져오는 중이겠죠?)가 필요합니다. 아마도 PHP가 설치되어 있지 않을 것입니다.

예를 들어, 웹 서버가 Debian 계열 시스템에서 Apache를 사용하는 경우 libapache2-mod-php 패키지를 설치해야 할 수도 있습니다. nginx를 사용하는 경우 fastcgi 등을 통해 구성해야 합니다.

정확한 단계는 운영 체제, 배포판, 웹 서버에 따라 다릅니다.

관련 정보