Fábio Oliveira
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Not creating table wp-blogmeta@hambeny I’m glad to have helped =D
Forum: Plugins
In reply to: [PDF Embedder] Missing Dependencies@wasanajones I’ve been waiting for this update for some time, and I hate to see my Query Monitor in red. Then I solved it manually.
1- Access /wp-content/plugins/pdf-embedder/core
2- Open the file core_pdf_embedder.php
3- Edit the end of the file commenting the following lines:
———————————————————————–
function gutenberg_enqueue_block_editor_assets() {
// wp_enqueue_script(
// ‘pdfemb-gutenberg-block-js’, // Unique handle.
// $this->my_plugin_url(). ‘js/pdfemb-blocks.js’,
// array( ‘wp-blocks’, ‘wp-i18n’, ‘wp-element’ ), // Dependencies, defined above.
// $this->PLUGIN_VERSION
// );// wp_enqueue_style(
// ‘pdfemb-gutenberg-block-css’, // Handle.
// $this->my_plugin_url(). ‘css/pdfemb-blocks.css’, // editor.css: This file styles the block within the Gutenberg editor.
// array( ‘wp-edit-blocks’ ), // Dependencies, defined above.
// $this->PLUGIN_VERSION
// );
}function gutenberg_enqueue_block_assets() {
// wp_enqueue_style(
// ‘pdfemb-gutenberg-block-backend-js’, // Handle.
// $this->my_plugin_url(). ‘css/pdfemb-blocks.css’, // style.css: This file styles the block on the frontend.
// array( ‘wp-blocks’ ), // Dependencies, defined above.
// $this->PLUGIN_VERSION
// );
}
———————————————————————–
Hope this helps! =D- This reply was modified 6 years ago by Fábio Oliveira.
- This reply was modified 6 years ago by Steven Stern (sterndata).
Forum: Fixing WordPress
In reply to: Not creating table wp-blogmeta@bogdanguenther You’re welcome! =D
Forum: Fixing WordPress
In reply to: Not creating table wp-blogmeta@10v2 In my case, I had to clear the cache for the Query Monitor to update.
If it still does not work, undo the update, install Health Check & Troubleshooting (https://www.ads-software.com/plugins/health-check/) and diagnose the system.
After correcting everything the plugin shows you, redo the upgrade to 5.1, perform a new upgrade of the database again through upgrade.php and clear the cache.
If it still does not work, restart the server.
Forum: Fixing WordPress
In reply to: Not creating table wp-blogmeta@jej12 You’re welcome! =D
Forum: Fixing WordPress
In reply to: Not creating table wp-blogmeta@normancates @circlecube @jej12 @coriandor @joseba286
I was able to solve this problem only by accessing the upgrade.php by the browser and updating my database.
https://YOUR-SITE/wp-admin/upgrade.php
After performing this procedure the error disappeared from my Query Monitor.
Hope this helps.