【发布时间】:2016-08-07 01:25:51
【问题描述】:
所以我昨天正在处理这个页面,我遇到了一些错误,但仍在完成所有内容,但是当我停止时,我加载了页面正常。然而今天当我加载页面时它是空白的,并不是完全空白,但它会在文件中的某个点停止加载内容(见下文)。
现在奇怪的是,如果我把它放在 cmets 中它不会改变任何东西,当我放入所有 php 代码时它甚至不会改变任何东西。所以我有点卡住了......
编辑:所以我才意识到我忘了提供链接,尽管在网上查看时它给出了一个完整的空白页面...... http://hmorreels.hol.es/Morreels_App/index.php/charts 可悲的是,虽然这是一个内部 500 错误,所以那里的信息不多:/
也许你们中的一个人看到了吗? 我已经把页面放到网上,我把我的代码放在这里...... 本页面使用 laravel 作为框架,但大部分页面都是简单的 PHP。
<?php
use Illuminate\Support\Facades\DB;
include "config.php";
$init = false;
/* Check if the charts page is given a company ID or not */
/* ===================================================== */
if (isset($company_identifier)) {
/* The page has gotten the company ID, this means we can go forth and do our calculations, show the graphs and stuffs */
/* ================================================================================ ================================== */
$init = true;
}
$raspis = DB::table("raspi_installations")->get();
foreach ($raspis as $raspi) {
$val = $raspi["serial_ID"];
$val = "raspi_" . $val;
$$val = $raspi;
}
$companies = DB::table('companies')->get();
foreach ($companies as $table) {
//die() WORKS UNTIL THIS LINE AFTER THE NEXT ONE IT STOPS WORKING
//===============================================================
$$table['company_identifier'] = DB::table($table['company_identifier'])->get();
}
$engineers = DB::table('users')->get();
$Hydrauliek_Morreels_NV = DB::table('Hydrauliek_Morreels_NV')->get();
$i=0;
?>
<head>
<link rel="stylesheet" href="/Morreels_App/public/styles/css/charts.css">
</head>
<html>
<body>
<?php include "header.php"; ?>
<div id="main_panel">
<div class="flowx" id="panelhead" style="height:300px;">
<div class="col colspan-3-of-3">
<h1>Charts</h1>
<p><?php echo trans('panelheaders.charts'); ?></p>
<br/>
<select name="company" id="company">
<?php foreach($companies as $company) : ?>
<option id="" value="/Morreels_App/index.php/charts/<?php echo $company["id"]; ?>"><?php echo $company["company"]; ?></option>
<?php endforeach; ?>
</select>
<?php foreach($companies as $company) : ?>
<div id="<?php echo $company["company_identifier"]; ?>">
<form action="<?php echo $company["id"]; ?>">
<?php foreach($$company["company_identifier"] as $row):?>
<?php $name = "raspi_" . $row["raspi_ID"]; $current_dxd = $$name; die(print_r($$name)); ?>
<?php foreach ($row as $key => $value): ?>
<?php if($key == "temperature" || $key == "rH" || $key == "oilfilter_1" || $key == "oilfilter_2" || $key == "oilfilter_3"): ?>
<label for="<?php echo $key; ?>"><input type="checkbox" value="<?php echo $value; ?>" name="<?php echo $value; ?>" id="<?php echo $key; ?>"><?php echo $key; ?></label>
<?php endif; ?>
<?php if($key != "temperature" && $key != "rH" && $key != "oilfilter_1" && $key != "oilfilter_2" && $key != "oilfilter_3" && $key != "updated" && $key != "entry_ID"): ?>
<label for="<?php echo $current_dxd[$key]; ?>"><input type="checkbox" value="<?php echo $value; ?>" name="<?php echo $value; ?>" id="<?php echo $current_dxd[$key]; ?>"><?php echo $current_dxd[$key]; ?></label>
<?php endif; ?>
<?php endforeach; ?>
<?php endforeach; ?>
</form>
</div>
<?php endforeach; ?>
</div>
</div>
<div id="content" style="background-color: #ECF2F6">
<?php if($init): ?>
<div class="col colspan-2-of-3 chart">
<h1>
<?php
$id = $company_identifier - 1;
echo $companies[$id]['company'];
?>
</h1>
</div>
<div class="col colspan-1-of-3">
<div id="action_holder">
<p>If you wish to see the graphs in detail and stop the live feed of them, please click here,</p>
<button class="btn btn-default" id="STOP">Stop</button>
</div>
<div id="action_holder2">
<p> <?php echo trans('panelheaders.charts2'); ?></p>
<a style='text-decoration: none;' href='<?php echo $url; ?>'><button class='btn btn-primary'><?php echo trans('basic.reload'); ?> </button></a>
</div>
</div>
<!-- CHART 1: TEMPERATURE -->
<div id="temperature_chart" class="col colspan-3-of-3">
</div>
<div id="rH_chart" class="col colspan-3-of-3">
</div>
<!-- CHART 2: PM CHARTS -->
<div class="chart col colspan-3-of-3">
<div id="pm_chart_holder">
</div>
</div>
<?php endif; ?>
</div>
<script type="text/javascript" src="/Morreels_App/public/chartjs/Chart.js"></script>
<script src="/Morreels_App/public/scripts/js/chartfeed.js"></script>
<script>
</script>
</body>
</html>
【问题讨论】:
-
你能把你的错误日志贴在这里吗?
-
据我所知,我得到了 0 个错误,那么我应该在哪里寻找呢? (服务器上的错误日志文件 = 空,页面上的错误为空)
标签: php laravel debugging webpage