adamtrlica
Forum Replies Created
-
Hi Simon, thanks for the reply. You are right, it is not connected to filesystem.
The error points to new code that checks for deprecated.php files. This code runs too early when WordPress is still loading, causing issues with SSH connections.Temporary fix that works for me:
/wp-content/plugins/beaver-builder-lite-version/classes/class-fl-builder-model.phpReplaced this:
// Load deprecations if ( fl_builder_filesystem()->file_exists( $instance->dir . 'deprecated.php' ) ) { require_once $instance->dir . 'deprecated.php'; }With this:
// Load deprecations if ( file_exists( $instance->dir . 'deprecated.php' ) ) { require_once $instance->dir . 'deprecated.php'; }
However, I am not sure what impact this change will have on the plugin overall.- This reply was modified 12 months ago by adamtrlica.
Forum: Plugins
In reply to: [Event Booking Manager for WooCommerce] Events list shortcode does not workIt works! Thank you. 🙂
Regards
AdamForum: Plugins
In reply to: [Event Booking Manager for WooCommerce] Events list shortcode does not workIn my case helped delete general_setting_sec from database (table *_options). Then events were displayed. But of course, I would like to edit some general settings, but I can´t.
Forum: Fixing WordPress
In reply to: media files does not appear in /tags urlThanks, but I tried that plugin and it does not work. Because it creates new mediatag (something like “/mediatag/red”), but posts a pages have still post_tag (something like “/tag/red”). So then I do not have one page with all content with tag “red”, but two separate pages (one for medias a second for post and pages).
Forum: Fixing WordPress
In reply to: Upgrade 3.5 -> 3.6.Yes, we can do manual upgrade. It is OK. But we need automatic upgrade for our webhosting servers. We tried upgrade with FTP a there is error, as I wrote above. When we set apache as a owner of all files, the upgrade ends on “Upgrading database”.
Thank you for your help.