View previous topic :: View next topic |
Author |
Message |
Cryoma Member of the Year
Reputation: 198
Joined: 14 Jan 2009 Posts: 1819
|
Posted: Sat Sep 29, 2012 1:25 am Post subject: [PHP] What is "0"? |
|
|
I've tried running/installing a few scripts (the joomla installer for example) in the past/present that simply printed the number 0 and nothing else on the page.
What on earth does this mean?
Thanks. |
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8585 Location: 127.0.0.1
|
Posted: Sat Sep 29, 2012 8:43 am Post subject: |
|
|
Sounds like a php error is occurring in the background. Try setting your error/warning settings in php to announce everything and see if you can get it to spit out some more information. _________________
- Retired. |
|
Back to top |
|
 |
Arma103 How do I cheat?
Reputation: 0
Joined: 25 Sep 2020 Posts: 6
|
Posted: Fri Sep 25, 2020 5:33 am Post subject: Re:[PHP] What is "0"? |
|
|
You should add these lines to your present code
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
to display errors. |
|
Back to top |
|
 |
|