We had just come across this problem with a particular website we are developing and believe that we know of the main cause as we have never received this error before and try to test most limits on development.

The Problem Code:
Code:
<?php
  $orderItem = $_SESSION["orderItem"];
  $orderPrice = $_SESSION["orderPrice"];
?>
The Fixed Code:
Code:
<?php
...