stresslessweb
Forum Replies Created
-
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] restore.log keeps growingHi,
In some cases, another plugin or a server configuration might be redirecting PHP logs into the restore file.
If other plugins can inject text into a logfile that is being managed BackWPUp then this is a security issue and should be looked into even more urgently.
Also, when trying to replicate the issue please disable logging – i.e. set WP_DEBUG to false and do not enable any logfile – that is when the WARNINGs are being logged into restore.log.
If the restore functionality is not being used, then restore.log should be completely empty regardless of other plugins and regardless of debug levels. The restore.log file should not even be initialized unless the restore functionality has been invoked. I think this would be the expectation of anyone using the BackWPUp plugin. I only found out of this logfile growth because it became so large that we got a warning from our hosting provider about exceeding the storage limits.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] restore.log keeps growingHi,
I can certainly try to apply the same fix and it will probably work, however redirecting the logfile is a workaround and not a solution. This problem should not occur on a site that is using the default wordpress configuration where WP_DEBUG is disabled.
I do not believe the hosting setup can cause BackWPUp to write these warnings to the restore.log file – there must be something in how the Logger is initialized in BackWPUp that is causing it to pick up these warning messages.
I have another site that I manage that entries in restore.log file. This issue will most certainly affect other users – they probably haven’t noticed yet. The right thing to do would be to find the root cause and eliminate it so that other users of you otherwise wonderful plugin are not adversely affected.
Thanks and regards,
Audrey
- This reply was modified 7 months, 3 weeks ago by stresslessweb.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] restore.log keeps growingMy PHP version is 8.2.29
All the log messages are formatted as such:
[2025-09-02T20:06:43.127340+00:00] restore.WARNING: [8192] Creation of dynamic property SUMO_PP_Payment_Cancelled_Email::$mail_to_admin is deprecated (/path/to/wordpress/public_html/wp-content/plugins/sumopaymentplans/includes/abstracts/abstract-sumo-pp-email.php on Line 36) | PHP 8.2.29 (Linux) [] []
- This reply was modified 7 months, 3 weeks ago by stresslessweb.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] restore.log keeps growingHi @saranshwpm,
WP_DEBUG is already FALSE in my case.
I already have this in my wp-config.php:
define('WP_DEBUG', false);Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] restore.log keeps growingHi,
Sorry for the delay in responding.
- Have there been any restore attempts in the past (even if unsuccessful)?
No, I have never attempted a restore in the past, ever.
- Does the file continue to grow even after deleting it once?
Yes, it gets created and continues to grow. Since the last deletion it has grown to 173MB in month
- Are there any errors or notices repeatedly logged inside the file (feel free to share a snippet, hiding any sensitive info)?
Yes! There are only WARNINGs being logged. Almost all (with one exception) are for “Creation of dynamic property XYZ is deprecated”. And almost all of them are generated by the “SUMO WooCommerce Payment Plans” plugin, for example:
restore.WARNING: [8192] Creation of dynamic property SUMO_PP_Payment_Schedule_Email::$subject_paid is deprecated …
I am facing the same issue. I added this to line 1000 os restrictcontent.php and solved the issue for now:
if (!is_admin())
Forum: Plugins
In reply to: [Event Tickets and Registration] Webhooks won’t validateI have the same issue.
I see the following error in the browser console:
webhooks.min.js?ver=5.5.8:11 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'post')
at obj.initiateValidation (webhooks.min.js?ver=5.5.8:11:1307)
at obj.onSigningFieldChange (webhooks.min.js?ver=5.5.8:11:2149)
at HTMLInputElement.dispatch (jquery.min.js?ver=3.6.1:2:43064)
at y.handle (jquery.min.js?ver=3.6.1:2:41048)I added a breakpoint at the point where it fails (
return await tribe.ky.post(ajaxurl, args).json()) and inspected the “tribe’ object – it does not have a tribe.ky property – it is undefined.PHP – 7.4.33
WordPress – 6.1.1
The Events Calendar – 6.0.10
Event Tickets – 5.5.8
Theme – BuddyBoss 3.0.0- This reply was modified 3 years, 1 month ago by stresslessweb.
I am experiencing the same issue. I too “fixed” it by adding a function in a custom function:
add_action('plugins_loaded', function(){ if (!function_exists('bp_registration_options_admin_footer')) { function bp_registration_options_admin_footer() { error_log("Fix: undefined function called 'bp_registration_options_admin_footer'"); } } });Forum: Plugins
In reply to: [WooCommerce] Stop customer registration spamI’m having the same kind of problem
Was there any resolution to this isuse?Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Does not work with eMemberHere’s is what I figured out. If the admin user is a member in eMember then that admin user will not retain the “BackWPup Admin” role.
Either remove a the admin user from eMember or create a new admin user in WP but Do Not add him to eMember.
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] Preview Testimonial not workingNo that doesn’t work. I tried that many times before. And I just tried it again.
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] Preview Testimonial not workingForum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] Preview Testimonial not workingHi Travis I sent you an email at [email address moderated – let’s not make the spam bots lives easier, eh?]
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] Preview Testimonial not workingWell that didn’t work. All the testimonials are published. Now I get 404 error
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] jQuery Conflict with other pluginsAnother conflict I found was with WooCommerce.
The Checkout page in WooCommerce loads the Order Details (below the Billing Address) via AJAX.
The Order Details section was blank due to a failed AJAX call.Unchecking the “Load JavaScript in the footer?” option fixed.
Thanks to this thread which pointed me to the solution.
Posting it here in case someone else encounters this issue.