Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author wpdevelop

    (@wpdevelop)

    Hello.
    Its seems that you are having empty prefix for your tables.
    For fixing this issue you need to make this small fix:
    Please open this file ../{Booking Calendar Folder}/lib/wpdev-booking-functions.php

    then find this code (its exist 3 times, and you need to make this replacement 3 times in different places of that file):


    if (strpos($tablename, $wpdb->prefix) ===false) $tablename = $wpdb->prefix . $tablename ;

    and replace it to this code:


    if ( (! empty($wpdb->prefix) ) && ( strpos($tablename, $wpdb->prefix) === false ) ) $tablename = $wpdb->prefix . $tablename ;

    P.S. This fix will be exist in next update of plugin.

    Kind Regards.

    Thread Starter johnhorning-1

    (@johnhorning-1)

    Thanks! That fixed it.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Empty needle’ is closed to new replies.