尝试配置客户端,但登录不上,提示服务器操作失败,请问怎么排查?

2022-06-15 10:54:18
华山蝶
  • 访问次数: 8
  • 注册日期: 2022-06-14
  • 最后登录: 2022-08-24
  • 我的积分: 74
  • 门派等级: 无门派

诊断网络日志如下:


2022-06-15 10:42:15.47 [INFO] 开始诊断网络问题,服务器地址:http://xxxx.com:11443/,用户名:admin,客户端版本:5.6.0。

log time: 2022-06-15 10:42:15.46
build time: 2022-05-26 08:11
platform: electron
os: win
arch: x64

2022-06-15 10:42:12.46 [ERROR] [HTTP_STATUS_ERROR] 服务器操作失败。
<?php
/* Set the error reporting. */
error_reporting(E_ALL);

/* Start output buffer. */
ob_start();

/* Set front as default mode. */
$runMode = 'front';

/* Check is api mode. */
if(preg_match('/token=[a-z0-9]{32}/i', $_SERVER["QUERY_STRING"])) $runMode = 'api';

/* Check is xuanxuan client mode. */
if(!empty($_SERVER['HTTP_USER_AGENT']) && strpos($_SERVER['HTTP_USER_AGENT'], 'easysoft/xuan.im') !== false) $runMode = 'xuanxuan';

define('RUN_MODE', $runMode);

/* Load the framework. */
$routerFile = (RUN_MODE == 'api') ? '../framework/router.class.php' : '../framework/xuanxuan.class.php';
i n c l u d e $routerFile;

i n c l u d e '../framework/control.class.php';
i n c l u d e '../framework/model.class.php';
i n c l u d e '../framework/helper.class.php';

/* Log the time and define the run mode. */
$startTime = getTime();

/* Clear cookies for api requests. */
if(RUN_MODE == 'api') unset($_COOKIE);

/* Run the app. */
if(RUN_MODE == 'api') $app = router::createApp('xxb', dirname(dirname(__FILE__)));
if(RUN_MODE != 'api') $app = router::createApp('xxb', dirname(dirname(__FILE__)), 'xuanxuan');

/* Load common model. */
$common = $app->loadCommon();

/* Api mode need check entry and set default params. */
if(RUN_MODE == 'api')
{
    $common->checkEntry();
    $config->requestType   = 'GET';
    $config->default->view = 'json';
}

/* Parse request. */
$result = $app->parseRequest();
if(RUN_MODE != 'api' && !$result) die;

/* Check privilege of api. */
if(RUN_MODE == 'api') $common->checkPriv();

/* Load module. */
$app->loadModule();

/* Process api response. */
if(RUN_MODE == 'api')
{
    $output = json_decode(ob_get_clean());
    $data   = new stdClass();
    $data->status = isset($output->status) ? $output->status : $output->result;
    if(isset($output->message)) $data->message = $output->message;
    if(isset($output->data))    $data->data    = json_decode($output->data);
    $output = json_encode($data);

    unset($_SESSION['entryCode']);
    unset($_SESSION['validEntry']);
}

/* Flush the buffer. */
echo helper::removeUTF8Bom(ob_get_clean());


-------------------
Fetch from http://glgsoft.com:11443/serverInfo
    Request:
        Method: POST
        Headers: {"Content-Type":"application/x-www-form-urlencoded; charset=UTF-8"}
    Response:
        Type: basic
        Status: 502
        OK: 
        Redirected: 
        StatusText: Bad Gateway
        Body: <?php
/* Set the error reporting. */
error_reporting(E_ALL);

/* Start output buffer. */
ob_start();

/* Set front as default mode. */
$runMode = 'front';

/* Check is api mode. */
if(preg_match('/token=[a-z0-9]{32}/i', $_SERVER["QUERY_STRING"])) $runMode = 'api';

/* Check is xuanxuan client mode. */
if(!empty($_SERVER['HTTP_USER_AGENT']) && strpos($_SERVER['HTTP_USER_AGENT'], 'easysoft/xuan.im') !== false) $runMode = 'xuanxuan';

define('RUN_MODE', $runMode);

/* Load the framework. */
$routerFile = (RUN_MODE == 'api') ? '../framework/router.class.php' : '../framework/xuanxuan.class.php';
i n c l u d e $routerFile;

i n c l u d e '../framework/control.class.php';
i n c l u d e '../framework/model.class.php';
i n c l u d e '../framework/helper.class.php';

/* Log the time and define the run mode. */
$startTime = getTime();

/* Clear cookies for api requests. */
if(RUN_MODE == 'api') unset($_COOKIE);

/* Run the app. */
if(RUN_MODE == 'api') $app = router::createApp('xxb', dirname(dirname(__FILE__)));
if(RUN_MODE != 'api') $app = router::createApp('xxb', dirname(dirname(__FILE__)), 'xuanxuan');

/* Load common model. */
$common = $app->loadCommon();

/* Api mode need check entry and set default params. */
if(RUN_MODE == 'api')
{
    $common->checkEntry();
    $config->requestType   = 'GET';
    $config->default->view = 'json';
}

/* Parse request. */
$result = $app->parseRequest();
if(RUN_MODE != 'api' && !$result) die;

/* Check privilege of api. */
if(RUN_MODE == 'api') $common->checkPriv();

/* Load module. */
$app->loadModule();

/* Process api response. */
if(RUN_MODE == 'api')
{
    $output = json_decode(ob_get_clean());
    $data   = new stdClass();
    $data->status = isset($output->status) ? $output->status : $output->result;
    if(isset($output->message)) $data->message = $output->message;
    if(isset($output->data))    $data->data    = json_decode($output->data);
    $output = json_encode($data);

    unset($_SESSION['entryCode']);
    unset($_SESSION['validEntry']);
}

/* Flush the buffer. */
echo helper::removeUTF8Bom(ob_get_clean());



2022-06-15 10:42:15.47 [ERROR] 诊断完成,发现 1 个错误,0 个需要注意的问题。
沙发
2022-06-15 18:08:11
马超
  • 访问次数: 1669
  • 注册日期: 2018-06-20
  • 最后登录: 2024-03-28
  • 我的积分: 6116
  • 门派等级: 玄清 等级6 金仙
从报错上来看可能x.php文件中没有被解析,可以在httpd.conf配置文件中增加允许访问x.php
  <Files "x.php">
    SetHandler application/x-httpd-php
  </Files>
如果还有其他疑问, 可以加一下左上角的商务联系方式,商务邀请进群后沟通。
1/1 1