Trying to install a plugin on my website but i get this error:
Fatal error: Uncaught mysqli_sql_exception: Table ‘kakicuniverse.wpdl_revslider_sliders’ doesn’t exist in /home/kakicuniverse/root/wp-includes/wp-db.php:2056 Stack trace: #0 /home/kakicuniverse/root/wp-includes/wp-db.php(2056): mysqli_query() #1 /home/kakicuniverse/root/wp-includes/wp-db.php(1945): wpdb->_do_query() #2 /home/kakicuniverse/root/wp-includes/wp-db.php(2695): wpdb->query() #3 /home/kakicuniverse/root/wp-admin/includes/upgrade.php(2795): wpdb->get_results() #4 /home/kakicuniverse/root/wp-content/plugins/revslider/public/revslider-front.class.php(565): dbDelta() #5 /home/kakicuniverse/root/wp-includes/class-wp-hook.php(292): RevSliderFront::create_tables() #6 /home/kakicuniverse/root/wp-includes/class-wp-hook.php(316): WP_Hook->apply_filters() #7 /home/kakicuniverse/root/wp-includes/plugin.php(484): WP_Hook->do_action() #8 /home/kakicuniverse/root/wp-admin/plugins.php(193): do_action() #9 {main} thrown in /home/kakicuniverse/root/wp-includes/wp-db.php on line 2056
Does anyone know how to fix it?
For context the site name is kakicuniverse.
Thank you
[ad_2]
Yes, you have a query that is trying to interact with a table in your database `kakicuniverse` that doesn’t exist, `wpdl_revslider_sliders`
If it is during an installation, the problem may be that the user you are set up to use on the site (found in `wp-config.php`) is one that does not have permissions `CREATE` new tables, and the attempt to create the data table is silently failing.
I would check the user’s permissions first, and if need be, TEMPORARILY add in extra abilities to create tables during the install and then revert back to how they were after.