Migrate error
-
There is an error in the helper function “update_synonyms” used to migrate from version 3 to 4.
File:
/admin/classes/helpers.phpLine 174:
foreach( $this->get_all_entries() as $entry ) {
Error:
“$this->get_all_entries()” does not exist.Solution:
$entries = $wpdb->get_results( 'SELECT * FROM ' . $table_name, 'OBJECT' ); foreach( $entries as $entry ) {
https://www.ads-software.com/plugins/explanatory-dictionary/
- The topic ‘Migrate error’ is closed to new replies.