LanceGrigsby
Forum Replies Created
-
Forum: Plugins
In reply to: [Two Factor Auth] Wrong username and passwordSame issue here.
Forum: Everything else WordPress
In reply to: CSS issues with Google Chrome?Awesome, thanks! solved the issue for me as well.
Forum: Themes and Templates
In reply to: [evolve] Formatting header image for responsive environmentThanks for the reply! Not greek at all. I was just hoping to find some options in theme’s UI under the “Appearance” menu to avoid having to do a deep-dive into the CSS–but perhaps there’s no other way.
Forum: Themes and Templates
In reply to: [evolve] image Header image no longer responsive after updatedisregard my last post.
Forum: Fixing WordPress
In reply to: WordPress 4.2 Update Crash with fatal errorMCoale, sorry to hear it. I’m actually replying to report that I also experienced a crash a moment ago when attempting to update from 4.1.2 to 4.2. It’s been a long, long time since any automatic update crashed the site. Thankfully, I was able to restore via VaultPress very easily–but yeah, it took long amount of time to apply the update and then … white screen of death.
Just wanted to chime in to say I’ve also experienced problems. For what it’s worth, not every site I’ve updated has had this issue, so who knows.
Forum: Plugins
In reply to: [Proxy Cache Purge] "No Update Required" loop – Varnish cache issue?That did it! Thanks to you both–very easy fix (and the plugin is now back on :-)).
Forum: Plugins
In reply to: [Proxy Cache Purge] "No Update Required" loop – Varnish cache issue?Thanks, patternleaf. I will try that!
Forum: Plugins
In reply to: [DreamObjects Backups] Plugin not working? Or user error?Ok, thanks for letting me know.
Forum: Plugins
In reply to: [DreamObjects Backups] Plugin not working? Or user error?Ok, when I did the 4 p.m. backup WITH files, it seemed to fail again–no sql file either, that I can tell (so I guess it’s because there’s too many files?). Everything looks empty AFAIK. You might have to double check for me, but the overall size of all my uploads is around half a gig. Not sure if this helps … at least with files deselected before, I could get sql backup. But perhaps I need to look into a different backup solution?
Forum: Plugins
In reply to: [DreamObjects Backups] Plugin not working? Or user error?OK, hmmm. I see the additional backup file you must have created, but I still can’t see anything in it. In any case, I have an ad-hoc backup scheduled for today around 4 p.m. CST for both files/sql. I’ll report back. Thanks for your help.
Forum: Plugins
In reply to: [DreamObjects Backups] Plugin not working? Or user error?Yup ?? … thought that was a little strange myself! Let me know what you find.
Forum: Plugins
In reply to: [DreamObjects Backups] Plugin not working? Or user error?Thanks. So, yesterday I changed the plugin settings to back up DB only and ran a backup around 9 p.m. CST. Checked the status this morning, and I could see–both in the DH panel and in my WP Dashboard–a link to the backup .zip, but it’s completely empty. Domain is https://www.southernuconf.org. FWIW, log file does show something about deleting zip file and sql file.
Forum: Plugins
In reply to: [Geolocation] [Plugin: Geolocation] Location missing from link textPhilipp, just looked into this again. Still having inconsistent results posting from WordPress for iOS (v. 3.) on iOS 5.1.1 using version 0.1.1 of the Geolocation plugin. FWIW, Location Services are on. No matter what I try via the mobile app–I even used the
[geolocation]
shortcode in my posts–I cannot get the location to show up in my posts UNLESS I either update those posts through my desktop computer or author an original post on my desktop (and of course, this defeats the purpose of the plugin :-)). Not sure where the bug may originate: The WordPress for iOS app, the Geolocation plugin, or what … Anyone?Forum: Plugins
In reply to: [Geolocation] [Plugin: Geolocation] Location missing from link textJust tried again a moment ago, and it’s working fine now–location is showing up in the link text. Weird.
Forum: Fixing WordPress
In reply to: What's happening to my session data? Help!Second hurdle cleared: Form submission is now working for child-site admins now. Same issue as before. I just had to find a way to weed out all the deprecated code in the
$selfreference
variable so that the submitted data had a correct https URL to submit to.So,
$selfreference
originally looked like this:$selfreference = get_settings('siteurl') . '/wp-admin/edit.php?page=' .BDPRSS2_DIRECTORY. '/bdp-rssadmin.php';
The revised code looks like this now:
$selfreference = home_url('/wp-admin/tools.php?page=' .BDPRSS2_DIRECTORY. '/bdp-rssadmin.php', 'https');
Since the get_settings function is now deprecated and the
siteurl
tag is incapable of passing along https, I decided to use the home_url function and itspath
andstring
parameters, respectively, the append the proper URL and specify that it should be https. I wish I were knowledgeable enough to address your comment about the use/misuse ofadd_management_page
, but this seems to be working for now … on to other bugs :).