Search code examples
phpmysqlweb-servicesweb-applicationsphpfox

Blank configuration page


I want to install phpfox, but after two steps, I see a blank page and not configuration page.

What can I do?


Solution

  • 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.

    1. Check your error_log file
      • On the index.php add ini_set('error_log', '/path/to/log'); to specify log file
    2. Turn on displaying of errors display_errors
      • On the index.php add ini_set('display_errors', true);
    3. Echo your way placing echo __LINE__ . "<br />"; to see how far you get into the script.