When uploading to live (goDaddy) i get a message at the bottom of the page "Headers already sent" with the Stack info. I do not have Echo in my controller.
IT happens across multiple controllers
I have reduced my View file to two sections and then tried stepping through removing sections of code and have got the error to disappear by removing two list items
This does have the error
<?php
use yii\bootstrap\ActiveForm;
use yii\captcha\Captcha;
use yii\helpers\Html;
/* @var $this yii\web\View */
$this->title = Yii::t('app', Yii::$app->name);
$this->registerCssFile("themes/assets/css/main.css");
?>
<div class="site-index">
<div class="body-content">
<div id="page-wrapper">
<section id="zero" class="jumbotron">
<div class="inner">
<img class="img-responsive center-block" src="uploads/logo_Mtex.png" alt="Mtex Plumbing and Heating">
<p class="text-muted">Your Home for Domestic and Light Commercial plumbing and Heating <br> Mobile: 07876442995</p>
<p><a class="btn btn-lg btn-primary" href='site/quote'>Request a Quote</a></p>
</div>
</section>
<!-- Two -->
<section id="one" class="wrapperplain">
<div class="inner">
<ul class="features">
<li>
<span class="icon major solid fa-tint"></span>
<h4>Plumbing</h4>
<p>Taps, Fixtures and fittings.</p>
</li>
<li>
<span class="icon solid fa-exclamation-triangle"></span>
<h4>Emergency</h4>
<p>Leak or no heating in winter, No Problem. Call now</p>
</li>
<li>
<span class="icon major solid fa-tint"></span>
<h4>Plumbing</h4>
<p>Taps, Fixtures and fittings.</p>
</li>
<li>
<span class="icon solid fa-exclamation-triangle"></span>
<h4>Emergency</h4>
<p>Leak or no heating in winter, No Problem. Call now</p>
</li>
</ul>
</div>
</section>
</div>
</div>
</div>
this does not
<?php
use yii\bootstrap\ActiveForm;
use yii\captcha\Captcha;
use yii\helpers\Html;
/* @var $this yii\web\View */
$this->title = Yii::t('app', Yii::$app->name);
$this->registerCssFile("themes/assets/css/main.css");
?>
<div class="site-index">
<div class="body-content">
<div id="page-wrapper">
<section id="zero" class="jumbotron">
<div class="inner">
<img class="img-responsive center-block" src="uploads/logo_Mtex.png" alt="Mtex Plumbing and Heating">
<p class="text-muted">Your Home for Domestic and Light Commercial plumbing and Heating <br> Mobile: 07876442995</p>
<p><a class="btn btn-lg btn-primary" href='site/quote'>Request a Quote</a></p>
</div>
</section>
<!-- Two -->
<section id="one" class="wrapperplain">
<div class="inner">
<ul class="features">
<li>
<span class="icon major solid fa-tint"></span>
<h4>Plumbing</h4>
<p>Taps, Fixtures and fittings.</p>
</li>
<li>
<span class="icon solid fa-exclamation-triangle"></span>
<h4>Emergency</h4>
<p>Leak or no heating in winter, No Problem. Call now</p>
</li>
</ul>
</div>
</section>
</div>
</div>
</div>