06/11/2018 at 2:38 pm
#465253
Keymaster
@ Kellen
Hmmm… I would expect at least one image to import with an error on admin-ajax.php.
Best guesses is that PHP is exhausting the memory allocated to it or the execution time limit is being exhausted. Here are the tutorials I have which goes thru increasing both:
Also:
Add the following to the wp-config.php file:
define( ‘WP_MEMORY_LIMIT’, ‘256M’ );
define( ‘WP_MAX_MEMORY_LIMIT’, ‘512M’ );
These should be added before /* That’s all, stop editing! Happy blogging. */ line.
Hope this helps, let me know.
