Workaround for fatal error on latest update
-
If you’re getting the “on line 160” error, do this:
1. Go into plugins -> editor
2. Choose all-in-one-events-calendar by timely in the select box.
3. When the edit box refreshes, look for this code about halfway down the editor:
// numeric is always array unset( $plugins->active[ array_search( $basename, $plugins->active ) ] );
Replace it with this:
// workaround if ( is_array( $plugins->active ) ) { unset( $plugins->active[ array_search( $basename, $plugins->active ) ] ); }
I’m not convinced, though, that by doing this the plugin is doing what the authors want it to do, but it no longer kills wordpress, which is an improvement.
https://www.ads-software.com/plugins/all-in-one-event-calendar/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Workaround for fatal error on latest update’ is closed to new replies.