Instructiopns from that thread you linked me to
1. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 16M try 32M:
memory_limit = 32M ; Maximum amount of memory a script may consume (32MB)
2. If you don't have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 32M
3. Try adding this line to your wp-config.php file:
Increasing memory allocated to PHP
define('WP_MEMORY_LIMIT', '32M');
4. Talk to your host.
I edited php.ini
Originally it had this: memory_limit = 64M ; Maximum amount of memory a script may consume (16MB)
and running the plugin I got this error:
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 5779 bytes) in /home/rollerc3/public_html/loveanyway/wp-content/plugins/search-and-replace/search-and-replace.php on line 612
I changed it to this: memory_limit = 64M ; Maximum amount of memory a script may consume (32MB)
and got this error:
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 128 bytes) in /home/rollerc3/public_html/loveanyway/wp-content/plugins/search-and-replace/search-and-replace.php on line 612
I changed it again to this: memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)
and got this error
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 80 bytes) in /home/rollerc3/public_html/loveanyway/wp-content/plugins/search-and-replace/search-and-replace.php on line 612
So it is getting closer. But can I change it more? My host is also helping me with issues at my forum due to the migration and though I asked about this issue with wordpress he has not answered--he only answered my forum related issue even though I was asking for memory rather than for information about how to do something. (He is not familiar with wordpress and is familiar with the forum.)
I then tried the advice about editing wp-config.php. But the line to search for and change (define('WP_MEMORY_LIMIT', '32M');) was not in my file. I did a search for the word 'memory' and it's not in there.
Then there was the advice about .htaccess.
There is not a .htaccess file in my wordpress folders. There is one in public but it's empty.
So can I continue to increase the php.ini?
If so, to what?