nightowlaz
Forum Replies Created
-
Forum: Plugins
In reply to: [BadgeOS] Website slow down with Badgeosyes, that worked like a charm! Thank you!
Forum: Plugins
In reply to: [BadgeOS] Website slow down with Badgeosor, can we roll back to a previous version?
Forum: Plugins
In reply to: [BadgeOS] Website slow down with Badgeosany way to get a quick fix on the plugin?
Forum: Plugins
In reply to: [BadgeOS] Website slow down with BadgeosOur site is basically unusable. We have thousands of students accessing it and it takes several minutes just to login. School started today for the spring semester and students are having a lot of trouble. Per our hosting site “It looks as though there’s a mysql SELECT query that is occurring an excessive amount of times to the wp_usermeta table, this occurring in tandem in application code that’s occurring for a lot of the transaction time as well”
Forum: Plugins
In reply to: [Wp-Pro-Quiz] We are working on new features of Wp Pro QuizWhere can I get the most current version?
Forum: Plugins
In reply to: [WP Cassify] Fix for Pantheon enviromentsI’ll vote for that! I can’t seem to remember to check the wp-config after every update and re-add the code.
Forum: Plugins
In reply to: [WP Cassify] Fix for Pantheon enviromentsI finally figured out that the recent update stream from Pantheon (or possibly WP 4.9.6) revised my wp-config.php and took out the custom code that you have to have in there for Pantheon (probably what you have listed above). I added that back in and it is working now.
Forum: Plugins
In reply to: [WP Cassify] Upgrade to WP 4.9.6 on Pantheon and CAS stopped workingI figured this out. The upgrade also included some upstream updates that replaced the wp-config.php. I had to add back the Pantheon-specific code to force https and to redirect back to the calling site correctly:
$_SERVER[‘SERVER_NAME’] = $_SERVER[‘HTTP_HOST’];
if (isset($_ENV[‘PANTHEON_ENVIRONMENT’])) {
if (isset($_SERVER[‘HTTP_USER_AGENT_HTTPS’]) && $_SERVER[‘HTTP_USER_AGENT_HTTPS’] === ‘ON’) {
$_SERVER[‘SERVER_PORT’] = 443; }
else {
$_SERVER[‘SERVER_PORT’] = 80;
}
}
// Require HTTPS across all Pantheon environments
// Check if Drupal or WordPress is running via command line
if (isset($_SERVER[‘PANTHEON_ENVIRONMENT’]) && ($_SERVER[‘HTTPS’] === ‘OFF’) && (php_sapi_name() != “cli”)) {
if (!isset($_SERVER[‘HTTP_USER_AGENT_HTTPS’]) || (isset($_SERVER[‘HTTP_USER_AGENT_HTTPS’]) && $_SERVER[‘HTTP_USER_AGENT_HTTPS’] != ‘ON’)) {header(‘HTTP/1.0 301 Moved Permanently’);
header(‘Location: https://’. $_SERVER[‘HTTP_HOST’] . $_SERVER[‘REQUEST_URI’]);
exit();# Name transaction “redirect” in New Relic for improved reporting (optional)
if (extension_loaded(‘newrelic’)) {
newrelic_name_transaction(“redirect”);
}
}
}Forum: Plugins
In reply to: [WP Cassify] Fix for Pantheon enviromentsSo, I just updated my site running wp-cassify to WordPress 4.9.6 (I know I should have done that weeks ago), and wp-cassify broke. I am hosted on Pantheon. Is that what this fix is for?
Forum: Plugins
In reply to: [Wp-Pro-Quiz] We are working on new features of Wp Pro QuizI’m curious about this, too. Is there a place to get the most current build of it?
Forum: Plugins
In reply to: [WP Cassify] Upgrade to PHP 7.0Just an update…everything worked great with the upgrade. No issues!
Doesn’t that only send a notification about the post, and not the actual post, using the template?
I’m trying to figure this out as well. I just want the most recently published post in one category to send out the next time the wp-cron job runs. I can’t seem to get the settings correct. It appears that it is using the wrong mail configuration and sending the “5 posts” instead of the one that I have enabled.
Forum: Plugins
In reply to: [Email posts to subscribers] Add subscriber to multiple groupsforgot to mark resolved
Forum: Plugins
In reply to: [Email posts to subscribers] Add subscriber to multiple groupsNever mind…I see that you just add another record for the different group for that user.