I called godaddy about some hosting issues as my site was slow and unresponsive after installing pro, they ran some diagnostics/debugger and said that that my their cpu was resting on 60%, after they ran their diagnostic the following is now at the top of my website::
Notice: Constant FORCE_SSL_ADMIN already defined in /home/thedude/public_html/beta/wp-config.php on line 87
Notice: Constant WP_MEMORY_LIMIT already defined in /home/thedude/public_html/beta/wp-config.php on line 90
Notice: Constant WP_MAX_MEMORY_LIMIT already defined in /home/thedude/public_html/beta/wp-config.php on line
91
I have deactivated all plugins and even attempted to change themes. Nothing gets rid of this. Any thoughts on to what could be causing it?
UPDATE: Not entirely sure what I did but I was able to eliminate those messages, now when I reactivate my pro theme i get the following
Notice: Undefined property: stdClass::$theme_location in /home/thedude/public_html/beta/wp-
content/themes/pro/framework/functions/plugins/woocommerce.php on line 440`
I also get the following where i have an essential grid section installed
Notice: Undefined index: rhx_gis in /home/thedude/public_html/beta/wp-content/plugins/essential-grid/includes/InstagramScraper/Instagram.php on line 301
Hi @tocque,
Thank you for writing in, besides those notices are there any issues on your site? like Cornerstone/Content Builder is not working?
Those notices above are not necessary an errors but just a notice that you already have the WP_MEMORY_LIMIT
and WP_MAX_MEMORY_LIMIT
set in wp-config.php
file, so if you have it define somewhere else please remove it. Or remove the line below from your wp-config.php
file.
define('WP_MEMORY_LIMIT', '256M');
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
Alternatively, you can stop Wordpress showing you these notices by adding that line below on your wp-config.php
file.
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
Hope it helps,
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.