QUIC.cloud sunucumuzla g?rüntüleri optimize etmede hata al?yorum.
Failed to create table img_optming! SQL: CREATE TABLE IF NOT EXISTS wpr5_litespeed_img_optming
() DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;.
Thanks
]]>Solution:
I resolved this by deactivating the plugin, deleting it, giving the wordpress SQL database user permission to do anything, reinstalling, and re-activating plug in, and then changing the database user’s permissions back to be more restricted. Now I can create a new gallery, it is saved, and I can embed it in a page.
Requested change:
It would be great if there were some sort of error message either when installing Final Tiles, or when creating a gallery.
Thank you for your work.
I have a question: does the plugin need to perform this query on each request?
CREATE TABLE IF NOT EXISTS
wp_odb_logs
Maybe the existence of the table could better be known by some cache, transient or so?
]]>i have a problem with your plugin.
This is error text:
“Bitcoin and Altcoin Wallets could NOT create a transactions table “H1S_wallets_txs” in the database. The plugin may not function properly.”
I tried to use the plugin today and when I tried to create a table and select data source, no dropdown is happening.
-Junrey
]]>– I no longer find any tables.
– if I want to create a new one does not work.
– I enter the name, I select a table, I click on save, nothing happens.
Help me
]]>https://www.ads-software.com/plugins/custom-database-tables/
]]>CREATE TABLE wp_cpd
(entity_id, cpd_area, cpd_year, cpd_date, cpd_name, cpd_units)
(SELECT entity_id,
CASE WHEN slug=’cpd_area’ THEN values ELSE NULL
END as cpd_area,
CASE WHEN slug=’cpd_year’ THEN values ELSE NULL
END as cpd_year,
CASE WHEN slug=’cpd_date’ THEN values ELSE NULL
END as cpd_date,
CASE WHEN slug=’cpd_name’ THEN values ELSE NULL
END as cpd_name,
CASE WHEN slug=’cpd_units’ THEN values ELSE NULL
END as cpd_units,
FROM wp_cf_form_entry_values
GROUP BY entity_id,
ORDER BY entity_id);
https://www.ads-software.com/plugins/custom-database-tables/
]]>This code works:
function jal_install() {
global $wpdb;
global $jal_db_version;
$table_name = $wpdb->prefix . 'simons_table';
$charset_collate = $wpdb->get_charset_collate();
$sql = "CREATE TABLE $table_name (
id mediumint(9) NOT NULL AUTO_INCREMENT,
time datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
firstname tinytext NOT NULL,
lastname tinytext NOT NULL,
description text NOT NULL,
url varchar(55) DEFAULT '' NOT NULL,
UNIQUE KEY id (id)
) $charset_collate;";
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
dbDelta( $sql );
add_option( 'jal_db_version', $jal_db_version );
}
This code does NOT work:
function jal_install() {
global $wpdb;
global $jal_db_version;
$table_name = $wpdb->prefix . 'simons_table';
$charset_collate = $wpdb->get_charset_collate();
$sql = "CREATE TABLE $table_name (
id mediumint(9) NOT NULL AUTO_INCREMENT,
time datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
firstname tinytext NOT NULL,
lastname tinytext NOT NULL,
description text NOT NULL,
url varchar(55) DEFAULT '' NOT NULL,
UNIQUE KEY id (id),
UNIQUE KEY firstname (firstname)
) $charset_collate;";
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
dbDelta( $sql );
add_option( 'jal_db_version', $jal_db_version );
}
When I add another UNIQUE ID for fistname, it just won’t create the database when I activate the plugin. I tried ‘firstname’ instead of firstname. I’ve tried multiple variations.
]]>