Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 32768 bytes) in /home/celikhalatim/public_html/wp-includes/class-wp-customize-manager.php on line 3986
Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 28672 bytes) in /home/celikhalatim/public_html/wp-includes/pomo/streams.php on line 173
Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 20480 bytes) in /home/celikhalatim/public_html/wp-includes/pomo/mo.php on line 323
BU Hataları nasıl çözebilirim?
Wodpress Yardım
8
●107
- 29-08-2021, 17:15:16wp-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. - 27-03-2024, 21:11:35EfendiBey adlı üyeden alıntı: mesajı görüntüle
Teşekkürler problem çözüldü..