The problem seems to be related to the XStore theme. When accessing the /store/ page, the following PHP error is logged every timeen /public_html/php_errorlog:
[PHP Fatal error: Allowed memory size of 805306368 bytes exhausted (tried to allocate 970752 bytes) in /public_html/wp-content/themes/xstore/theme/functions.php on line 532
Indicates that the theme has reached the 758MB memory limit that we have on all shared hosting plans. That memory limit is enough for most well-written and optimized scripts, so the fact that the theme has exceeded it could indicate a problem with the theme itself.
Line 532 (the one in bold) of the functions.php script is part of the following code block:
if ( !function_exists(‘etheme_config_css_files’)) {
function etheme_config_css_files() {
return include get_template_directory() . ‘/framework/config-css.php’;
}
}