Title: joergpe's Replies | WordPress.org

---

# joergpe

  [  ](https://wordpress.org/support/users/joergpe/)

 *   [Profile](https://wordpress.org/support/users/joergpe/)
 *   [Topics Started](https://wordpress.org/support/users/joergpe/topics/)
 *   [Replies Created](https://wordpress.org/support/users/joergpe/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/joergpe/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/joergpe/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/joergpe/engagements/)
 *   [Favorites](https://wordpress.org/support/users/joergpe/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CF7 Apps – Honeypot, Database, Redirection, Webhook, and Addons for Contact Form 7] v3.6.0 dynamic honeypot transients are not full-page-cache compatible](https://wordpress.org/support/topic/v3-6-0-dynamic-honeypot-transients-are-not-full-page-cache-compatible/)
 *  [joergpe](https://wordpress.org/support/users/joergpe/)
 * (@joergpe)
 * [3 weeks, 5 days ago](https://wordpress.org/support/topic/v3-6-0-dynamic-honeypot-transients-are-not-full-page-cache-compatible/#post-18912390)
 * I had the same here using 3.6.0 with WP-Optimize.
   Changed back to 3.5.0 for workaround.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[EventON - Events Calendar] Fatal Error: Uncaught Exception; DateTimeZone line 642](https://wordpress.org/support/topic/fatal-error-uncaught-exception-datetimezone-line-642/)
 *  Thread Starter [joergpe](https://wordpress.org/support/users/joergpe/)
 * (@joergpe)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/fatal-error-uncaught-exception-datetimezone-line-642/#post-18062498)
 * The issue is solved in 4.7.1, thanx
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Duplicator - Backups & Migration Plugin - Cloud Backups, Scheduled Backups, & More] Create package stuck at 65%](https://wordpress.org/support/topic/create-package-stuck-at-65/)
 *  Thread Starter [joergpe](https://wordpress.org/support/users/joergpe/)
 * (@joergpe)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/create-package-stuck-at-65/#post-17700103)
 * any place in wp-config.php
   in my case it was the comment right in the begining/**
   Grundeinstellungen f**ü**r WordPressPlease note, it has to be the ansi char for
   ü not in UTFThis was a old installation I think someone has saved the wp-config.
   phpas ansi file
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Duplicator - Backups & Migration Plugin - Cloud Backups, Scheduled Backups, & More] Duplicator seems to stall with “Building Package 65.0%”](https://wordpress.org/support/topic/duplicator-seems-to-stall-with-building-package-65-0/)
 *  [joergpe](https://wordpress.org/support/users/joergpe/)
 * (@joergpe)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/duplicator-seems-to-stall-with-building-package-65-0/#post-17699288)
 * Workaround here:
   [https://wordpress.org/support/topic/create-package-stuck-at-65/](https://wordpress.org/support/topic/create-package-stuck-at-65/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My Calendar - Accessible Event Manager] MySQL error using MC with remote database](https://wordpress.org/support/topic/mysql-error-using-mc-with-remote-database/)
 *  Thread Starter [joergpe](https://wordpress.org/support/users/joergpe/)
 * (@joergpe)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/mysql-error-using-mc-with-remote-database/#post-17011828)
 * The max_connection error is in include/db.php line 135.
   Every request to the 
   remote database opens a new connection to the remote database. Here is a fix:
 * function mc_is_remote_db() { 
    global $wpdb;  **global $remotedb; ** $mcdb = 
   $wpdb;  if ( ‘true’ === mc_get_option( ‘remote’ ) && function_exists( ‘mc_remote_db’)){**
   if ( !isset( $remotedb ) ) {  $remotedb = mc_remote_db(); }  $mcdb = $remotedb;}
   return $mcdb;}
 * The Warning can be removed in my-calendar-locations.php line 203
   if ( ! $post_id**&&
   isset($mcdb->postmeta)** ) {
 * Would be nice if you can push this in next Version!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My Calendar - Accessible Event Manager] MySQL error using MC with remote database](https://wordpress.org/support/topic/mysql-error-using-mc-with-remote-database/)
 *  Thread Starter [joergpe](https://wordpress.org/support/users/joergpe/)
 * (@joergpe)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/mysql-error-using-mc-with-remote-database/#post-16981075)
 * Please note: when I remove the location of the events, the warnings and the error“
   establishing a database connection is gone”.
   So I think the SQL statements that
   selects the location produces an error and the SQL connection is not closed correctly
   and is running out of connections.
 * I use a server wih 300 max_user_connections that should be enough.
 * And the error occures with 42 or more events in the list so if I have more max_user_connections
   I will run into the error later with e.g. 200 entries.
 * Please give this problem a look, the cool feature “remote DB” is not usable like
   this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My Calendar - Accessible Event Manager] Filter by Event Location issue](https://wordpress.org/support/topic/filter-by-event-location-issue/)
 *  Thread Starter [joergpe](https://wordpress.org/support/users/joergpe/)
 * (@joergpe)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/filter-by-event-location-issue/#post-16888908)
 * [https://github.com/joedolson/my-calendar/issues/557](https://github.com/joedolson/my-calendar/issues/557)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My Calendar - Accessible Event Manager] Filter by Event Location issue](https://wordpress.org/support/topic/filter-by-event-location-issue/)
 *  Thread Starter [joergpe](https://wordpress.org/support/users/joergpe/)
 * (@joergpe)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/filter-by-event-location-issue/#post-16863864)
 * I have a clean WP 6.2.2 Installation without any other plugins. The problem appears
   always when I add an event with a location and update this event with the location
   drop down box in the state of “no change”.
 * I digged into the source code and I think I found the problem in my-calendar-
   event-editor.php line 2221:
 * // Set location. 
   if ( ‘none’ === $location_preset && ( empty( $post[‘event_label’])
   || is_numeric( $event_location ) ) ) {// event location name is required to copy
   over.} else {
 * I think it should be **!is_numeric( $event_location )**
   because otherwise the
   block at line 2244 will not be executed and this is needed to keep the location
   data of the event.
 * Would be great if you can update the file.

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