Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 71 bytes)

前端 未结 3 785
悲哀的现实
悲哀的现实 2020-12-05 06:32

I\'m getting an error when I try to open one of my dashboard pages in my wordpress script

The error message is as follows:

Fatal error: Allowe

3条回答
  •  悲&欢浪女
    2020-12-05 07:00

    I changed the memory limit from .htaccess and this problem got resolved.

    I was trying to scan my website from one of the antivirus plugin and there I was getting this problem. I increased memory by pasting this in my .htaccess file in Wordpress folder:

    php_value memory_limit 512M
    

    After scan was over, I removed this line to make the size as it was before.

提交回复
热议问题