安装wp出现的错误

Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /home3/scottgot/public_html/williamstonfmc/wp-admin/includes/class-wp-list-table.php on line 650


1. If you have access to your PHP.ini file, change the line in PHP.ini If your line shows 32M try 64M: memory_limit = 128M ; Maximum amount of memory a script may consume (128MB)  
2. If you don't have access to PHP.ini try adding this to an .htaccess file: php_value memory_limit 128M
3. Try adding this line to your wp-config.php file: Increasing memory allocated to PHP define('WP_MEMORY_LIMIT', '128M');
4. Talk to your host.
 

相关文章:

  • 2021-10-06
  • 2021-05-29
  • 2021-05-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-28
  • 2021-05-18
猜你喜欢
  • 2021-09-18
  • 2021-07-07
  • 2022-12-23
  • 2022-12-23
  • 2021-08-28
  • 2021-05-24
  • 2022-12-23
相关资源
相似解决方案