
Matthew Knowlton - 2015-03-13 13:36:56 -
In reply to message 1 from andrea
Hello Andrea,
Thank you for your message.
I know of a few possible causes to your problem:
If you are not getting html showing up, one possible cause of your problems might be server configurations.
You could try adding:
header('Content-type: text/html; charset=utf-8');
ini_set('session.use_only_cookies', false);
ini_set('session.use_cookies', false);
ini_set('session.use_trans_sid', false);
ini_set('session.cache_limiter', null);
to the begining of console.example1.php.
If, on the other hand you can get the html form then but it dosen't run php on the console your problem is probably a missnamed file handle I had in console.example1.php which is fixed on the repository now.
The last option I know of is that jquery might not be getting included right on the page or the browser has a problem displaying ob_flushed content before the script ends.
I hope this helps.
Let me know if you expirence futher problems.
Matthew