Page 1 of 1
php_info will show disabled even after being enabled
Posted: Tue Feb 03, 2015 8:27 pm
by ix6tech
When attempting to do testing with PHP Info, and setting php_info to true phpinfo.php will still return as disabled.
Steps to reproduce:
1) Go to the includes folder, edit config.inc.php, and change $cfg['php_info'] to true.
2) Open phpinfo.php
Expected results:
The PHP Info should be rendered when attempting to debug.
Actual results:
The PHP Info will still show disabled.
Re: php_info will show disabled even after being enabled
Posted: Tue Feb 03, 2015 8:41 pm
by ix6tech
Update:
I resolved this issue after adding
else.
Before:
Code: Select all
if ($cfg['php_info'] == false)
message(__FILE__, __LINE__, 'error', '[b]Error[/b][br]phpinfo disabled');
After:
Code: Select all
if ($cfg['php_info'] == false)
message(__FILE__, __LINE__, 'error', '[b]Error[/b][br]phpinfo disabled');
else
Re: php_info will show disabled even after being enabled
Posted: Wed Feb 04, 2015 6:26 pm
by wbartels
There is no bug, when setting:
In the include/config.inc.php file, it will work!
Re: php_info will show disabled even after being enabled
Posted: Wed Feb 04, 2015 6:45 pm
by ix6tech
Willem,
I see what had happened now.
I was updating the local config, and not the dev config.
All is well now. Apologies in advance.
Thanks,
Chris
Re: php_info will show disabled even after being enabled
Posted: Wed Feb 04, 2015 7:15 pm
by wbartels
ix6tech wrote:Willem,
I see what had happened now.
I was updating the local config, and not the dev config.
All is well now. Apologies in advance.
Thanks,
Chris
No problem, I close the topic.