Reply To: Fixing [filepath] … hangs

Home Forums Support Forum Fixing [filepath] … hangs Reply To: Fixing [filepath] … hangs

#1961

Bret Brizzee
Member

Hello again – I figured it out!

I switched on debugging in wp-config.php:


ini_set('log_errors',TRUE);
ini_set('error_reporting', E_ALL);
ini_set('error_log', dirname(__FILE__) . '/error_log.txt');

Attempted to fix files again and saw the following error in error_log.txt:


[24-Nov-2017 00:37:39 UTC] PHP Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 14255 bytes) in /home/redacted/public_html/wp-content/plugins/gotmls/images/index.php on line 76

Increased the memory limit in wp-config:


define( 'WP_MEMORY_LIMIT', '256M' );

And voila! Fixing completed successfully!