Hey people,
I did some digging. The error message is in the index.php file, and is under an area which is trying to do something with the language. Can anyone understand this code piece that I'm cutting and pasting?? Do you see what's going on in here? Help?
if (!isset($_SESSION) && (isset($move)) )
// geez ... a session time out! RUN!
{
if (isset($_REQUEST))
{
safe_die('You cannot start this script directly');
}
require_once(dirname(__FILE__).'/classes/core/language.php');
$baselang = GetBaseLanguageFromSurveyID($surveyid);
$clang = new limesurvey_lang($baselang);
//A nice exit
sendcacheheaders();
doHeader();
echo templatereplace(file_get_contents("$standardtemplaterootdir/default/startpage.pstpl"));
echo "<center><br />\n"
."\t<font color='RED'><strong>".$clang->gT("ERROR")."</strong></font><br />\n"
."\t".$clang->gT("We are sorry but your session has expired.")."<br />".$clang->gT("Either you have been inactive for too long, you have cookies disabled for your browser, or there were problems with your connection.")."<br />\n"
."\t".sprintf($clang->gT("Please contact %s ( %s ) for further assistance."),$siteadminname,$siteadminemail)."\n"
."</center><br />\n";
echo templatereplace(file_get_contents("$standardtemplaterootdir/default/endpage.pstpl"));
doFooter();
exit;
};