• my database prefix is not the default (WP_%). so the plugins request (Media => geotagged media) shows an error in debug mode:
    ***
    WordPress-Datenbank-Fehler: [Table ‘kd29490_wpoe.wp_term_taxonomy’ doesn’t exist]
    select wp_terms.name, wp_terms.slug from wp_term_taxonomy,wp_term_relationships, wp_posts, wp_terms where wp_term_relationships.object_id = wp_posts.ID and post_type=’attachment’ and wp_term_taxonomy .term_taxonomy_id = wp_term_relationships.term_taxonomy_id and wp_terms.term_id = wp_term_taxonomy.term_id group by wp_terms.name
    ***

    manually corrected and executed in phpmyadmin it works:
    ***
    select wpnn_terms.name, wpnn_terms.slug from wpnn_term_taxonomy,wpnn_term_relationships, wpnn_posts, wpnn_terms where wpnn_term_relationships.object_id = wpnn_posts.ID and post_type=’attachment’ and wpnn_term_taxonomy .term_taxonomy_id = wpnn_term_relationships.term_taxonomy_id and wpnn_terms.term_id = wpnn_term_taxonomy.term_id group by wp_terms.name
    ***

    futhermore:
    due to this (?) error it is not possible to upload photos. after deactivation of the plugin an upload is possible again

  • The topic ‘due to wrong sql plugin doesn’t work AND also upload doesn’t work’ is closed to new replies.