I want to install phpfox
, but after two steps, I see a blank page and not configuration page.
What can I do?
This is usually due to an error which is being hidden. A few things to check... Most of this is defined in your php.ini file which you can modify to change it globally. You will have to restart apache.
error_log
file
ini_set('error_log', '/path/to/log');
to specify log filedisplay_errors
ini_set('display_errors', true);
echo __LINE__ . "<br />";
to see how far you get into the script.