Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

Nothing is seen. The page is empty and white.

Also known as the White Page Of Death or White Screen Of Death. This happens when error reporting is turned off and a fatal error (often syntax error) occurred.

If you have error logging enabled, you will find the concrete error message in your error log. This will usually be in a file called "php_errors.log", either in a central location (e.g. /var/log/apache2 on many Linux environments) or in the directory of the script itself (sometimes used in a shared hosting environment).

Sometimes it might be more straightforward to temporarily enable the display of errors. The white page will then display the error message. Take care because these errors are visible to everybody visiting the website.

This can be easily done by adding at the top of the script the following PHP code:

ini_set('display_errors', 1); error_reporting(~0);

The code will turn on the display of errors and set reporting to the highest level.

Since the ini_set() is executed at runtime it has no effects on parsing/syntax errors. Those errors will appear in the log. If you want to display them in the output as well (e.g. in a browser) you have to set the display_startup_errors directive to true. Do this either in the php.ini or in a .htaccess or by any other method that affects the configuration before runtime.

You can use the same methods to set the log_errors and error_log directives to choose your own log file location.

Looking in the log or using the display, you will get a much better error message and the line of code where your script comes to halt.

Related questions:

Related errors:

Nothing is seen. The page is empty and white.

Also known as the White Page Of Death or White Screen Of Death. This happens when error reporting is turned off and a fatal error (often syntax error) occurred.

If you have error logging enabled, you will find the concrete error message in your error log. This will usually be in a file called "php_errors.log", either in a central location (e.g. /var/log/apache2 on many Linux environments) or in the directory of the script itself (sometimes used in a shared hosting environment).

Sometimes it might be more straightforward to temporarily enable the display of errors. The white page will then display the error message. Take care because these errors are visible to everybody visiting the website.

This can be easily done by adding at the top of the script the following PHP code:

ini_set('display_errors', 1); error_reporting(~0);

The code will turn on the display of errors and set reporting to the highest level.

Since the ini_set() is executed at runtime it has no effects on parsing/syntax errors. Those errors will appear in the log. If you want to display them in the output as well (e.g. in a browser) you have to set the display_startup_errors directive to true. Do this either in the php.ini or in a .htaccess or by any other method that affects the configuration before runtime.

You can use the same methods to set the log_errors and error_log directives to choose your own log file location.

Looking in the log or using the display, you will get a much better error message and the line of code where your script comes to halt.

Related questions:

Related errors:

Nothing is seen. The page is empty and white.

Also known as the White Page Of Death or White Screen Of Death. This happens when error reporting is turned off and a fatal error (often syntax error) occurred.

If you have error logging enabled, you will find the concrete error message in your error log. This will usually be in a file called "php_errors.log", either in a central location (e.g. /var/log/apache2 on many Linux environments) or in the directory of the script itself (sometimes used in a shared hosting environment).

Sometimes it might be more straightforward to temporarily enable the display of errors. The white page will then display the error message. Take care because these errors are visible to everybody visiting the website.

This can be easily done by adding at the top of the script the following PHP code:

ini_set('display_errors', 1); error_reporting(~0);

The code will turn on the display of errors and set reporting to the highest level.

Since the ini_set() is executed at runtime it has no effects on parsing/syntax errors. Those errors will appear in the log. If you want to display them in the output as well (e.g. in a browser) you have to set the display_startup_errors directive to true. Do this either in the php.ini or in a .htaccess or by any other method that affects the configuration before runtime.

You can use the same methods to set the log_errors and error_log directives to choose your own log file location.

Looking in the log or using the display, you will get a much better error message and the line of code where your script comes to halt.

Related questions:

Related errors:

added 104 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865

Nothing is seen. The page is empty and white.

Also known as the White Page Of Death or White Screen Of Death. This happens when error reporting is turned off and a fatal error (often syntax error) occurred.

If you have error logging enabled, you will find the concrete error message in your error log. This will usually be in a file called "php_errors.log", either in a central location (e.g. /var/log/apache2 on many Linux environments) or in the directory of the script itself (sometimes used in a shared hosting environment).

Sometimes it might be more straightforward to temporarily enable the display of errors. The white page will then display the error message. Take care because these errors are visible to everybody visiting the website.

This can be easily done by adding at the top of the script the following PHP code:

ini_set('display_errors', 1); error_reporting(~0);

The code will turn on the display of errors and set reporting to the highest level.

Since the ini_set() is executed at runtime it has no effects on parsing/syntax errors. Those errors will appear in the log. If you want to display them in the output as well (e.g. in a browser) you have to set the display_startup_errors directive to true. Do this either in the php.ini or in a .htaccess or by any other method that affects the configuration before runtime.

You can use the same methods to set the log_errors and error_log directives to choose your own log file location.

Looking in the log or using the display, you will get a much better error message and the line of code where your script comes to halt.

Related questions:

Related errors:

Nothing is seen. The page is empty and white.

Also known as the White Page Of Death or White Screen Of Death. This happens when error reporting is turned off and a fatal error (often syntax error) occurred.

If you have error logging enabled, you will find the concrete error message in your error log. This will usually be in a file called "php_errors.log", either in a central location (e.g. /var/log/apache2 on many Linux environments) or in the directory of the script itself (sometimes used in a shared hosting environment).

Sometimes it might be more straightforward to temporarily enable the display of errors. The white page will then display the error message. Take care because these errors are visible to everybody visiting the website.

This can be easily done by adding at the top of the script the following PHP code:

ini_set('display_errors', 1); error_reporting(~0);

The code will turn on the display of errors and set reporting to the highest level.

Since the ini_set() is executed at runtime it has no effects on parsing/syntax errors. Those errors will appear in the log. If you want to display them in the output as well (e.g. in a browser) you have to set the display_startup_errors directive to true. Do this either in the php.ini or in a .htaccess or by any other method that affects the configuration before runtime.

You can use the same methods to set the log_errors and error_log directives to choose your own log file location.

Looking in the log or using the display, you will get a much better error message and the line of code where your script comes to halt.

Related questions:

Related errors:

Nothing is seen. The page is empty and white.

Also known as the White Page Of Death or White Screen Of Death. This happens when error reporting is turned off and a fatal error (often syntax error) occurred.

If you have error logging enabled, you will find the concrete error message in your error log. This will usually be in a file called "php_errors.log", either in a central location (e.g. /var/log/apache2 on many Linux environments) or in the directory of the script itself (sometimes used in a shared hosting environment).

Sometimes it might be more straightforward to temporarily enable the display of errors. The white page will then display the error message. Take care because these errors are visible to everybody visiting the website.

This can be easily done by adding at the top of the script the following PHP code:

ini_set('display_errors', 1); error_reporting(~0);

The code will turn on the display of errors and set reporting to the highest level.

Since the ini_set() is executed at runtime it has no effects on parsing/syntax errors. Those errors will appear in the log. If you want to display them in the output as well (e.g. in a browser) you have to set the display_startup_errors directive to true. Do this either in the php.ini or in a .htaccess or by any other method that affects the configuration before runtime.

You can use the same methods to set the log_errors and error_log directives to choose your own log file location.

Looking in the log or using the display, you will get a much better error message and the line of code where your script comes to halt.

Related questions:

Related errors:

more on how to find (or configure) log files
Source Link
IMSoP
  • 99.7k
  • 18
  • 135
  • 183

Nothing is seen. The page is empty and white.

Also known as the White Page Of Death or White Screen Of Death. This happens when error reporting is turned off and a fatal error (often syntax error) occurred.

If you have error logging enabled, you will find the concrete error message in your error log. This will usually be in a file called "php_errors.log", either in a central location (e.g. /var/log/apache2 on many Linux environments) or in the directory of the script itself (sometimes used in a shared hosting environment).

Sometimes it might be more straightforward to temporarily enable the display of errors. The white page will then display the error message. Take care because these errors are visible to everybody visiting the website.

This can be easily done by adding at the top of the script the following PHP code:

ini_set('display_errors', 1); error_reporting(~0);

The code will turn on the display of errors and set reporting to the highest level.

Since the ini_set() is executed at runtime it has no effects on parsing/syntax errors. Those errors will appear in the log. If you want to display them in the output as well (e.g. in a browser) you have to set the display_startup_errors directive to true. Do this either in the php.ini or in a .htaccess or by any other method that affects the configuration before runtime.

You can use the same methods to set the log_errors and error_log directives to choose your own log file location.

Looking in the log or using the display, you will get a much better error message and the line of code where your script comes to halt.

Related questions:

Related errors:

Nothing is seen. The page is empty and white.

Also known as the White Page Of Death or White Screen Of Death. This happens when error reporting is turned off and a fatal error (often syntax error) occurred.

If you have error logging enabled, you will find the concrete error message in your error log.

Sometimes it might be more straightforward to temporarily enable the display of errors. The white page will then display the error message. Take care because these errors are visible to everybody visiting the website.

This can be easily done by adding at the top of the script the following PHP code:

ini_set('display_errors', 1); error_reporting(~0);

The code will turn on the display of errors and set reporting to the highest level.

Since the ini_set() is executed at runtime it has no effects on parsing/syntax errors. Those errors will appear in the log. If you want to display them in the output as well (e.g. in a browser) you have to set the display_startup_errors directive to true. Do this either in the php.ini or in a .htaccess or by any other method that affects the configuration before runtime.

Looking in the log or using the display, you will get a much better error message and the line of code where your script comes to halt.

Related questions:

Related errors:

Nothing is seen. The page is empty and white.

Also known as the White Page Of Death or White Screen Of Death. This happens when error reporting is turned off and a fatal error (often syntax error) occurred.

If you have error logging enabled, you will find the concrete error message in your error log. This will usually be in a file called "php_errors.log", either in a central location (e.g. /var/log/apache2 on many Linux environments) or in the directory of the script itself (sometimes used in a shared hosting environment).

Sometimes it might be more straightforward to temporarily enable the display of errors. The white page will then display the error message. Take care because these errors are visible to everybody visiting the website.

This can be easily done by adding at the top of the script the following PHP code:

ini_set('display_errors', 1); error_reporting(~0);

The code will turn on the display of errors and set reporting to the highest level.

Since the ini_set() is executed at runtime it has no effects on parsing/syntax errors. Those errors will appear in the log. If you want to display them in the output as well (e.g. in a browser) you have to set the display_startup_errors directive to true. Do this either in the php.ini or in a .htaccess or by any other method that affects the configuration before runtime.

You can use the same methods to set the log_errors and error_log directives to choose your own log file location.

Looking in the log or using the display, you will get a much better error message and the line of code where your script comes to halt.

Related questions:

Related errors:

language clarifications
Source Link
JJJ
  • 33.2k
  • 20
  • 95
  • 103
Loading
added 126 characters in body
Source Link
deceze
  • 524.5k
  • 89
  • 806
  • 954
Loading
added 28 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865
Loading
deleted 4 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865
Loading
added 130 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865
Loading
added 2 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865
Loading
backquotes
Source Link
nalply
  • 29.2k
  • 15
  • 83
  • 105
Loading
added 517 characters in body
Source Link
VolkerK
  • 96.3k
  • 20
  • 169
  • 232
Loading
added 95 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865
Loading
added 95 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865
Loading
deleted 2 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865
Loading
deleted 5 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865
Loading
deleted 7 characters in body
Source Link
Snuffleupagus
  • 6.8k
  • 3
  • 28
  • 36
Loading
deleted 3 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865
Loading
added 170 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865
Loading
deleted 2 characters in body
Source Link
hakre
  • 199.9k
  • 55
  • 453
  • 865
Loading
Source Link
nalply
  • 29.2k
  • 15
  • 83
  • 105
Loading
Post Made Community Wiki by nalply