Hi @happygojira,
PHP 7.2 uses vastly more memory than previous versions and some users have solved this problem by switching down to PHP 7.0.
Otherwise, I suggest increasing the memory limit, and try the feed refresh again — it should finish, then produce a confirmation or error message — this is how you know it finishes.
There are 3 ways to increase your PHP memory limit:
1. Add this to wp-config file:
define(‘WP_MEMORY_LIMIT’, ‘500M’);
or
2. Edit your PHP.ini file (requires access to your server files).
If you have access to your PHP.ini file, change the line in PHP.ini.
If your line shows 64M, try 500M:
memory_limit = 500M
or
3. Edit your .htaccess file
If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 500M
Thanks, we will give it a try and let you know.
Cheers.
Have the same problem. Don’t have access to php.ini file so tried option #3, editing the .htaccess file. This resulted in corrupting my website formatting. Removed the line. Everything back to normal. So then tried option #1. Result: No change, got the warning that CSS compilation failed. Why is it that it only fails with your plugin?
BTW, my host requires us to use PHP 7.2, so going back to 7.0 is not an option.
-
This reply was modified 7 years, 2 months ago by
jennal.
Hello, yes I am having the same issue.
I have tried steps 1 + 3 above. As well as completely reinstalling the plugin as recommended in this thread
https://ww.wp.xz.cn/support/topic/php-7-2-28/
No luck yet. Any suggestions?
Thanks, Malcolm
-
This reply was modified 7 years, 2 months ago by
MalMac.
@malmac
@jennal
Your options are to either increase the memory to a higher amount until the error goes away (depends on your hosting), or, downgrade your PHP version to 7.0 which uses less memory.