I receive an ajax error whenever I try to add a new field, duplicate a field, or save a new form.
I added define ('WP_MEMORY_LIMIT', '64M'); to my wp_config file, but this did not fix it.
Any other suggestions?
I receive an ajax error whenever I try to add a new field, duplicate a field, or save a new form.
I added define ('WP_MEMORY_LIMIT', '64M'); to my wp_config file, but this did not fix it.
Any other suggestions?
First, be sure you have no theme or plugin conflict. You can use these tips: http://rkt.gs/testing
You might not be able to get 64M of RAM just by adding that to your wp-config.php - your host has to give you the additional RAM. If they already give you this much or more, then WordPress will try to use it. Please find out the memory_limit from your php info()
[php]
memory_limit 90M
I was finally able to solve this by placing a memory limit in a php.ini file on the root, adding that line to the wp-config.php and .htaccess files did not work. Thanks.
Right on, glad you got it working, thanks for letting us know!