Bu soruna çok fazla ürün talebi isteği sebebiyle API sebep oluyormuş. Dolayısıyla PHP sleep işlevini ya dosyasından ya da başka yöntemlerle belirleyerek düzeltmeniz gerekiyor.
Birincisi wp-config.php dosyasını açın ve...
set_time_limit(300);
Olmazsa eğer ikinci yöntem .htaccess dosyasına ekleyin:
php_value max_execution_time 300
Bu da olmazsa eğer üçüncü yöntem php.ini dosyasında düzenleyin:
max_execution_time = 300
veya php.ini için genel çözüm:
memory_limit = 256M
upload_max_size = 64M
post_max_size = 64M
upload_max_filesize = 64M
max_execution_time = 300
max_input_time = 1000
.htaccess ile...
php_value memory_limit 256M
php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 1000
wp-config dosyası...
define('WP_MEMORY_LIMIT', '256M');Umarım yardımcı olur.
Dipnot:
1- https://stackoverflow.com/a/44135311
2- https://stackoverflow.com/a/740971
3- https://www.php.net/sleep
4- https://thimpress.com/knowledge-base...ordpress-site/
5- https://docs.presscustomizr.com/arti...t-in-wordpress
6- https://docs.presscustomizr.com/arti...y-limit-issues