2016-10-24 2 views
0

Я пытаюсь сделать некоторые действия с фабрикатором. За несколько дней до того, как я попытался установить его, используя официальную ссылку для установки: Official installation link Но после этой ссылки я получал сообщение «path» не задавал проблем и даже следующих решений, доступных в Интернете, я не мог решить эту проблему. Так попробовал another link. За день до вчерашнего дня я был в состоянии использовать все доступные функции в из UI phabricator, но после перезагрузки я застрял с UI и получать ниже заданный текст при попытке получить доступ к серверу:Графический редактор Phabricator не отображается ... сталкивается с каким-то сценарием и/или сервером.

 
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

Hi @AniketKulkarni Я делал это как часть моей работы R & D ... Я смог сделать это после настройки с нуля ... но по этой проблеме я не смог проверить, могут ли предлагаемые решения исправить это. Если вы можете исправить это, или ниже предлагаемые решения устраняют проблему, пожалуйста, обновите то же самое здесь, чтобы другие пользователи могли воспользоваться. –

ответ

0

Установить PHP. Это необходимо.

+0

Я проверил env, установленные библиотеки php. По-прежнему возникает ошибка –

+0

Что-то в вашей среде настроено неправильно. Вы используете общий хост, случайно? Чтобы быть ясным, это не проблема с Phabricator, а в том, как ваш сервер настроен на выполнение PHP. –

Смежные вопросы