Skip Navigation

This thread is resolved. Here is a description of the problem and solution.

Problem:
If you're experiencing delays in seeing your automatic translations from ATE appear on the front page of your site, it might be due to the need for review before publishing, caching issues, or an insufficient WP Memory Limit.
Solution:
First, check your WPML settings under WPML -> Settings -> Automatic translation to see if you have the option 'Let me review it before it gets published' selected. If so, translations will only show after you review and publish them. For more details, visit how to review automatic translations.

Additionally, ensure your site meets the minimum system requirements for WPML, especially a WP Memory Limit of at least 128MB, though 256MB is recommended. You can increase the memory limit by adding the following lines to your wp-config.php file:

/** Memory Limit */<br />define('WP_MEMORY_LIMIT', '256M');<br />define('WP_MAX_MEMORY_LIMIT', '256M');

before the line:

/* That's all, stop editing! Happy blogging. */

For more guidance on this, check out WPML's minimum requirements and how to increase your site's memory limit.

If these steps do not resolve your issue, or if the solution seems outdated or not applicable to your case, we highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If needed, please open a new support ticket at WPML support forum for further assistance.

This is the technical support forum for WPML - the multilingual WordPress plugin.

Everyone can read, but only WPML clients can post here. WPML team is replying on the forum 6 days per week, 22 hours per day.

This topic contains 1 reply, has 0 voices.

Last updated by andreS-54 3 months, 2 weeks ago.

Assisted by: Itamar.

Author Posts
December 14, 2024 at 9:20 am #16513252

andreS-54

Background of the issue:
I use the automatic translation of WPML on my site hidden link. When I edit a translation in ATE, the changes are showing up very late on the front page.

Symptoms:
The translation changes in ATE appear very late on the front page, and it seems they need to be approved first.

Questions:
How can I speed up the process of translation changes appearing on the front page?

December 15, 2024 at 5:02 pm #16515128

Itamar
Supporter

Languages: English (English ) Hebrew (עברית )

Timezone: Asia/Jerusalem (GMT+03:00)

Hi,

If you have translated your site automatically, then it is possible that you first need to review the translations. This depends on your settings in WPML -> Settings -> Automatic translation. If you selected "Let me review it before it gets published," then the translations will only show after you review and publish them. You can read more about it here.

https://wpml.org/documentation/automatic-translation/how-to-review-automatic-translations-on-your-site/

Please let me know if this is your case.

Otherwise, it also might be a caching issue. It may be that your site uses caching, and it takes time for the front end to get updated with new content.

It also might be an insufficient WP Memory Limit. The debug info you attached shows that your server WP Memory Limit is 40M. Our recommendations are to have the following as minimal requirements:

- PHP 7 and above (this OK with your installation) with a WP Memory Limit of at least 128MB while 256MB is recommended.

MySQL 5.6 and above.

Please follow this link for detailed documentation:

https://wpml.org/home/minimum-requirements/

Is it possible for you to change those to the minimum requirement?

You may need to contact your hosting provider for that. Meeting those baseline requirements is critical before debugging and sometimes solves issues you experience. The most important thing is to raise the WP Memory Limit. Please try to raise it before you contact your hosting company. You can do it from the wp-config.php file in your WordPress installation. Insert this code in that file:

/** Memory Limit */
define('WP_MEMORY_LIMIT', '256M');
define( 'WP_MAX_MEMORY_LIMIT', '256M' );

Add it before this line:

/* That's all, stop editing! Happy blogging. */

Could you please perform that procedure and see if it helps?

You can also read about it here:
https://wpml.org/faq/checklist-before-opening-a-ticket-in-wpml-support/#how-can-i-increase-my-sites-memory-limit

Regards,
Itamar.

December 16, 2024 at 6:41 am #16515891

andreS-54

Yes. Thank you. That helped. It was the memory limit.