vultan
Forum Replies Created
-
Fantastic, that makes sense. I’ll likely plan on moving away from W3TC, then.
Forum: Plugins
In reply to: [BackUpWordPress] How to do exclusions without wildcards?Thanks. I tried it, but it didn’t work. It doesn’t exclude the directory at all.
I had another idea which seems in the right direction, but also isn’t working: I put in my exclude as a regular expression with start and end characters:
define( βHMBKP_EXCLUDEβ, β^dir$β );
This had the positive effect of showing that directory as “excluded” in the WordPress interface, but even though BackupWordPress shows it as excluded, it isn’t. It still gets backed up.
Thanks so much, I’m happy to report that 5.2.1 seems to be working for me. Much appreciated!
I know this is now out of date, but for completeness sake I’ll share the response I got back from a2hosting:
Thank you for contacting A2 Hosting Support. We have ran the PHP curl script as mentioned in the ww.wp.xz.cn post and it looks to have worked fine:
HTTP / 1.1 200 Server: nginx Date Added: Sat, 10 Feb 2018 01:40:03 GMT Content-Type: Content-Length: 0 Last-Modified: Mon, 11 Dec 2017 14:31:47 GMT Connection: keep-alive ETag: “5a2e96d3-0” Accept-Ranges: bytes
Please let us know if you have any additional questions or concerns.
Thanks for the followup, @deconf; I’ve contacted my provider. We’ll see what they say.
@deconf: I haven’t contacted my hosting provider, largely because my sense from reading the above is that the old version of the plugin works. This makes it sound, of course, as though the issue is in the plugn. Can you explain what’s different in the new version compared to the old that would require something to be different on the provider side in order to work?
I’m a brand new user of this plugin (at least, I want to be one); I just tried installing it, and on trying to authenticate, I’m getting this same error code:
Last Error: 2018-02-09 15:23:18: (60) SSL certificate problem: unable to get local issuer certificateI’m running on a2hosting. Is there a fix coming? Sounds like a number of people are having this problem.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Version 3.1.11 causes errorZach, thanks for the 3.1.11.1 fix. I’ve got two websites I’m using this on; on the one I had already upgraded to PHP 5.5.13, it installed without a problem. On the site running PHP 5.4.13, it refused to activate until I upgraded PHP, which I did. So on my end, everything is now working as it should. Thanks so much for the quick response.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Version 3.1.11 causes errorThanks so much for your help, and for your super fast response!: I just upgraded PHP on my site, and that solved the problem. I’m now at 5.5.13, which is currently the most recent version offered within my setup from a2hosting.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Version 3.1.11 causes errorThanks for the quick response, @oxymoron. I’m running PHP 5.4.13 here.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Shortcode not working on home pageI was able to solve the problem via this fix:
https://ww.wp.xz.cn/support/topic/new-shortcode-bugfix?replies=2
… but as that involved hacking the source code, it would be nice to know if this is expected to continue before upgrading again. π
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] New shortcode bugfixBrilliant, eggproject! This fix worked for me. Thank you!
Playing with search is a good idea. Thanks!
Thanks for the response, much appreciated. Here’s the use case:
We’ve got holidays which are all-day events, and then “real events” which are at particular times. I’m keeping the holidays out of the widget. Yeah, I know the right way to do this is probably to have two separate calendars. Someone else other than me manages the calendars, and I was trying to keep someone else from having to rework the way they do things.
Forum: Fixing WordPress
In reply to: Redirecting to a subdirectoryThanks, jonradio — that’s helpful. I suspect I’ll give the second solution a whirl, but I’ll have both ready to roll.
Forum: Plugins
In reply to: [Custom Menu Wizard Widget] Having trouble seeing outputI found the bug in Micah on my own. Definitely not your problem! Thanks for pushing me and getting me obsessed, though I need to get back to sleep.
They had this code right before displaying the main navigation menu:
add_filter( ‘wp_nav_menu_objects’, create_function( ‘$menu’, ‘return array_reverse( $menu );’ ) );
That’s because they were floating their
- right, which reversed the order of the menu, which they then “fixed” after the fact via the above. Removing the above PHP code fixes the issues with CMW. Of course, I’ve now got to figure out the associated layout problems. π
If there’s good news here, I’ve learned a bunch about WordPress.