PHP Classes

PHP Eb Console

Recommend this page to a friend!

      PHP Web Console  >  All threads  >  PHP Eb Console  >  (Un) Subscribe thread alerts  
Subject:PHP Eb Console
Summary:How it works?
Messages:5
Author:andrea
Date:2015-03-13 06:33:13
 

 


  1. PHP Eb Console   Reply   Report abuse  
Picture of andrea andrea - 2015-03-13 06:33:13
Hello, I installed your scripts on a directory on my server, but accessing console.example1.php nothing appears.
In what I'm wrong?

Regards
Andrea

  2. Re: PHP Eb Console   Reply   Report abuse  
Picture of Jackson Knowlton Jackson Knowlton - 2015-03-13 13:16:29 - In reply to message 1 from andrea
It worked for me...

  3. Re: PHP Eb Console   Reply   Report abuse  
Picture of Matthew Knowlton 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


  4. Re: PHP Eb Console   Reply   Report abuse  
Picture of andrea andrea - 2015-03-13 15:10:49 - In reply to message 3 from Matthew Knowlton
Thank you Matthew,

I think that my problem is PHP version on the server I'm using 5.3.3, session_status() funcion is missing.

Thank you for your courtesy
Andrea

  5. Re: PHP Eb Console   Reply   Report abuse  
Picture of Matthew Knowlton Matthew Knowlton - 2015-03-13 16:23:47 - In reply to message 4 from andrea
If you were to replace the
if(session_status() != 2)session_start();
calls with
@(session_start());
it should work on your server without producing errors.

Also, I'm replacing the short array syntax from the class repository as it is not nessecary for operation.