Hi,
thanks for your question, and sorry for the trouble.
My guess here is that the PHP memory limit is reached. Can you please try again after increasing the value of the WP_MEMORY_LIMIT constant to e.g. 512M in the wp-config.php file on your server, by following the instructions from https://ww.wp.xz.cn/support/article/editing-wp-config-php/#increasing-memory-allocated-to-php ? In addition, please check if your server uses a modern version of PHP, preferably PHP 7.3 or 7.4. These versions are much better and faster with memory handling.
Regards,
Tobias
I contacted the host (inmotion) and they increased the memory to 512 MB but it made not difference. I tried deleted the last 3 rows of the table and then it started working.
I then enabled SSL on my site and everything is working except this table. If I change the table on the same page it works ok so it doesn’t like this big table.
Hi,
could you please try setting the WP_DEBUG constant to true in your site’s “wp-config.php” file? This should give us error messages instead of the output just stopping.
Regards,
Tobias
I tried that but there is nothing showing in the error log.
Hi,
I would have guessed that the error would appear right on the page (where you would normally expect the content). However, I’m not getting a “500 Internal Server Error” when accessing your link. This normally always means that something is written to some error log file on the server…
Regards,
Tobias
with chrome and edge i get a blank page but with Chrome I get the 500 internetal error message. Here is my php-config file, as you can see it is set for logging but nothing appears in the log
define(‘WP_DEBUG’, true);
/*define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, true);
error_reporting(E_ALL);
@ini_set(‘display_errors’, ‘1’);*/
define( ‘WP_MEMORY_LIMIT’ , ‘512M’ );
Hi,
you are turning quite a few options off with the /* and */ comments.
Can you please try removing those?
Regards,
Tobias