Problem solved – PHP extension simplexml wasnt activated
Hey, Peter,
I did exactly what you said. Added this in wp_settings file and put it on the server:
// Include files required for initialization.
require( ABSPATH . WPINC . ‘/load.php’ );
require( ABSPATH . WPINC . ‘/default-constants.php’ );
require( ABSPATH . WPINC . ‘/version.php’ );
// Set initial default constants including WP_MEMORY_LIMIT, WP_MAX_MEMORY_LIMIT, WP_DEBUG, WP_CONTENT_DIR and WP_CACHE.
wp_initial_constants( );
define(‘WP_MEMORY_LIMIT’, ‘128M’);
define(‘WP_MAX_MEMORY_LIMIT’, ‘256M’);
// Check for the required PHP version and for the MySQL extension or a database drop-in.
wp_check_php_mysql_versions();
I also went into the PHP settings on the hosting server and changed memory_limit setting to 128Mb
No joy! The problem stil remains. Please help.
Thank you!