I am trying to setup website to 3 languages. main is latvian, secondary english and russian.
after installing package of wpml plugins I got critical error. also most of website background went to blue colours. supose to be beige
The WPML plugins shouldn't have any effect on your website's background as WPML doesn't apply any CSS styles.
1) It might now be related to the issue but according to your debug.info, the WP memory limit needs to be increased. PHP memory is fine, but WordPress uses 40Mb as default. The minimum requirements for WPML are 128 MB. (Kindly check this page: https://wpml.org/home/minimum-requirements/)
You can increase it by adding the following code in your wp-config.php file right before the:
/* That's all, stop editing! Happy publishing. */ line:
To enable WordPress debug.log, open your wp-config.php file and look for:
define('WP_DEBUG', false);
And change it to:
define('WP_DEBUG', true);
// Enable Debug logging to the /wp-content/debug.log file
define('WP_DEBUG_LOG', true);
// Disable display of errors and warnings which is recommended on a live site.
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors',0);
Then try to reproduce the issue and check if any errors were saved in the debug.log log file inside the "/wp-content/" directory.
If you can paste your debug.log content to https://pastebin.com/ and provide me that link, it would be great!
Looking forward to you reply,
Marsel
The topic ‘[Closed] hi, after installing wpml plugin and all other plugins, got critical error’ is closed to new replies.