2016-10-24 6 views
0

phabricator를 사용하여 일부 작업을 수행하려고합니다. 며칠 전에 공식 설치 링크를 사용하여 설정하려고 시도했습니다. Official installation link 그러나이 링크를 따라 가면서 '경로'에 문제가 설정되지 않았고 온라인에서도 사용할 수있는 솔루션을 사용해도 문제를 해결할 수 없었습니다. 그래서 시도한 another link입니다. 어제 내가 파브리 케이 터의 UI에서 사용할 수있는 모든 기능을 사용할 수 있었지만 다시 시작한 후 나는 그것의 UI와 붙어하고 서버에 액세스하는 동안 아래의 텍스트를 제공하기 전에 하루 :이 내용이Phabricator GUI가 표시되지 않습니다 ... 일부 스크립트 및/또는 서버 문제가 있습니다.

 
setException($ex);PhabricatorStartup::endOutputCapture();$sink->writeResponse($response); } catch (Exception $response_exception) { // If we hit a rendering exception, ignore it and throw the original // exception. It is generally more interesting and more likely to be // the root cause. throw $ex; } } } catch (Exception $ex) { PhabricatorStartup::didEncounterFatalException('Core Exception', $ex, false); } function phabricator_startup() { // Load the PhabricatorStartup class itself. $t_startup = microtime(true); $root = dirname(dirname(__FILE__)); require_once $root.'/support/PhabricatorStartup.php'; // If the preamble script exists, load it. $t_preamble = microtime(true); $preamble_path = $root.'/support/preamble.php'; if (file_exists($preamble_path)) { require_once $preamble_path; } $t_hook = microtime(true); PhabricatorStartup::didStartup($t_startup); PhabricatorStartup::recordStartupPhase('startup.init', $t_startup); PhabricatorStartup::recordStartupPhase('preamble', $t_preamble); PhabricatorStartup::recordStartupPhase('hook', $t_hook); } 

입니다 파일의 :

 
&ltVirtualHost *:80> 
    # The ServerName directive sets the request scheme, hostname and port that 
    # the server uses to identify itself. This is used when creating 
    # redirection URLs. In the context of virtual hosts, the ServerName 
    # specifies what hostname must appear in the request's Host: header to 
    # match this virtual host. For the default virtual host (this file) this 
    # value is not decisive as it is used as a last resort host regardless. 
    # However, you must set it for any further virtual host explicitly. 
    #ServerName www.example.com 

    ServerAdmin myhost.co.in 
    DocumentRoot /var/www/phabricator/webroot 

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn, 
    # error, crit, alert, emerg. 
    # It is also possible to configure the loglevel for particular 
    # modules, e.g. 
    #LogLevel info ssl:warn 

    ErrorLog ${APACHE_LOG_DIR}/error.log 
    CustomLog ${APACHE_LOG_DIR}/access.log combined 

    # For most configuration files from conf-available/, which are 
    # enabled or disabled at a global level, it is possible to 
    # include a line for only one particular virtual host. For example the 
    # following line enables the CGI configuration for this host only 
    # after it has been globally disabled with "a2disconf". 
    #Include conf-available/serve-cgi-bin.conf 
    RewriteEngine on 
    RewriteRule ^/rsrc/(.*)  -      [L,QSA] 
    RewriteRule ^/favicon.ico -      [L,QSA] 
    RewriteRule ^(.*)$   /index.php?__path__=$1 [B,L,QSA] 
    &ltDirectory "/var/www/phabricator/webroot"> 
     Require all granted 
    </Directory> 
</VirtualHost> 
+0

사용한 가이드가 잘못되어 지원되지 않습니다. –

+0

해결하셨습니까? 나는 또한 같은 오류가 발생합니다. 해결책을 제시하십시오. –

+0

안녕하세요 @AniketKulkarni 저는 처음부터 설정 한 후에 할 수 있었지만 ...이 문제와 관련하여 제안 된 솔루션이 문제를 해결할 수 있는지 확인할 수 없었습니다. 문제를 해결할 수 있거나 제안 된 솔루션으로 문제를 해결할 수있는 경우 여기에서 동일하게 업데이트하여 다른 사용자에게 도움이 될 수 있습니다. –

답변

0

PHP를 설치하십시오. 이것은 필수 항목입니다.

+0

PHP 라이브러리가 설치된 env를 확인했습니다. 여전히 동일한 오류가 발생합니다 –

+0

사용자 환경의 일부가 올바르게 구성되지 않았습니다. 우연히 공유 호스트를 사용하고 있습니까? 분명한 것은 Phabricator의 문제가 아니라 PHP를 실행하도록 서버가 구성되어있는 방법입니다. –