Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>When youget a blank screen it usually mean you've done something to receive a PHP error.</p> <p>To see what that error is, check the php error log. I suspect that you've exceeded the maximuim allowed memory limit.</p> <pre><code>php_value memory_limit 256M php_value display_errors 1 php_flag log_errors on php_value error_log /some/path/on/the/box/you/have/acess/to.log </code></pre> <p>Below are the hard coded PHP ways to enable the settings, above this line are .htaccess directives you can set that will kick in for your whole app.</p> <p>To make sure error reporting is turned on and you're displaying errors you can do..</p> <pre><code>ini_set('display_errors', 'On'); error_reporting(E_ALL); </code></pre> <p>To find out where your error log is make a test script to tell you.</p> <pre><code>die(ini_get('error_log')); </code></pre> <p>Make sure log_errors ini setting is enabled too in your php.ini file.</p> <p>If it is indeed that you're exceeding the max allowed memory limit you can increase it by doing</p> <pre><code>ini_set(“memory_limit”,”256M”); // 256 megabytes </code></pre> <p>I recommend updating this in your php.ini file and restarting apache for the changes to kick in.</p> <p>If your script is dealing with large amounts of data and it can take a while to run then you might also exceed the max_execution_time ini setting.</p> <p>To see what it's currently set at, you can do</p> <pre><code>die(ini_get('max_execution_time')); </code></pre> <p>There is a nice PHP helper funciton to set this for you <a href="http://php.net/manual/en/function.set-time-limit.php" rel="nofollow noreferrer">set_time_limit</a></p> <pre><code>set_time_limit(300); // Input in seconds, this is 5 minutes. </code></pre> <p>Hope this helps you get somewhere. Your best bet is looking at your error log though.</p> <p>Good luck.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload