althe3rd
Forum Replies Created
-
Forum: Plugins
In reply to: [WooPayments: Integrated WooCommerce Payments] Error while editing a pageI am also getting this error. I tested across a myriad of themes and php configurations this appears to be directly associated with the plugins recent update. I am going to roll back until this is resolved.
Forum: Plugins
In reply to: [PhotoShelter Importer] PHP 8 Support?After looking at the warning it throws its actuallly a really simple fix. Just change line 472 in functions/admin.php from this:
value=”<?php echo esc_attr( $options[ $args[‘name’] ] ); ?>”
to this:
value=”<?php if($options) { echo esc_attr( $options[ $args[‘name’] ] ); } ?>”
Hope this helps!
- This reply was modified 3 years, 8 months ago by althe3rd.
Forum: Plugins
In reply to: [The Events Calendar] Support for Domain Mapping???Thanks William for that analysis. It’s a bit troubling to see that tribe is still using the apparently long past deprecated methods for determining those URLs.
I made the adjustments you suggested and sure enough that did the trick. And searching around the rest of the code I haven’t spotted any other instances of the older method.
You mentioned it as a major regression, I assume this was fixed at one point and has since found its way back into the code by commit solving a different issue? Or has this always been present but never was visible until the version of WP core that dropped the deprecated methods? Just curious if you know off hand, otherwise I am happy to do some investigating through GitHub further to try and find when it was added.
Thanks for your help!
-AlForum: Plugins
In reply to: [Easy Site Importer] Error writing to .head.htmlThanks for posting this! This worked perfectly for my environment where most of our install is set to read only (aside from our uploads directory).
I don’t have a solution but I would also love to see if there was an option for this cookie data be stored elsewhere as all caching gets invalidated.
Thanks!
Forum: Plugins
In reply to: [Proxy Cache Purge] Varnish 4It appears that the dreamhost vcl file you linked to is for varnish 3.x, is that correct? I notice that adding in the appropriate pieces into varnish 4 config results in an error when restarting the varnish service.
Forum: Fixing WordPress
In reply to: Redirect loop between wp-admin and wp-loginHi Heathie,
I don’t have a solution for you (yet) but I can say that I am experiencing a similar issue if not the very same thing, so you are not alone. I have a multisite where if I try to go to siteurl.com/wp-admin I get the same issue. I see a message that says “file not found”, is this the same as you experience?
I have tried completely downloading a uploading a fresh copy of wordpress and disabled all plugins and themes with no success. At this point I wonder if its the database but I am still working on testing that.
If I get a solution that I think might help you I will let you know for sure.
-Al
Forum: Plugins
In reply to: [Stripe for WooCommerce] Turning off test mode causes an error.Thanks for clarifying that. My initial interpretation of the message in the admin was that it was encouraged (for obvious reasons) but no required.
I’ll get SSL setup so that can run properly. Thanks!
Forum: Plugins
In reply to: [Insights from Google PageSpeed] Unable to Generate ReportsHi Matt,
Thank you for the pointer. It appears that having the allowed referrers portion filled out incorrectly (should have left it blank) was causing my issue.
Thank you so much for your assistance!
Thanks!
AlForum: Plugins
In reply to: [Form Manager] Javascript validation is incorrectSo I resolved my own issue. It turns out there was a seperate javascript function that had replicated some of the DOM which meant there were duplicates of several form elements.
Having fixed that issue everything is working great. Sorry for the false alarm. Hopefully anyone concerned by my original post reads this entry.
Thanks!
Forum: Plugins
In reply to: [Form Manager] Javascript validation is incorrectLooks like the issue is specific to my theme. I’ll keep working on it and let you know what i find.
Forum: Plugins
In reply to: [Form Manager] Javascript validation is incorrectI did a bit more looking and it appears that
typeof(e.ph_hasEdit)always returns “undefined” even when the field is filled in correctly.
that is on line 202 of userscripts.js
Any thoughts on why this is?
Forum: Plugins
In reply to: [WP-Invoice - Web Invoice and Billing] 404 error on First-Use SetupI don’t have access to my apache logs or mod_security due to being on shared hosting. I find it odd that this is the only plugin I have run across with issues simply applying a POST to save settings.
I have tried all of the options suggested above (turning off all other plugins and changing my theme to twentytwelve). Nothing fixes it.
Any other suggestions?
Forum: Plugins
In reply to: [WP-Invoice - Web Invoice and Billing] 404 error on First-Use SetupI am also experiencing this same issue, was there ever a solution found?