Nicholas Moline
Forum Replies Created
-
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Does this work for a multisite?Please count me as a vote for this. The ability to setup network wide settings for a multisite is pretty essential to running a multisite in an environment where you can’t rely on
mail()to send reliable emails, for example running on a number of IaaS services where some email providers don’t inherently trust email coming from a random server IP.I would generally prefer to be able to have all outbound email for my multisites to go through a more reliable email service such as Mandrill or Mailgun than just hope and pray the system sent email will just happen to go out.
Forum: Plugins
In reply to: [Redirection] Unable to import htaccess file after updateI too am experiencing this issue. Since I see other threads on here where the developer asked that issues be opened up on github I opened an issue for it here:
Forum: Plugins
In reply to: [Redirection] Import is not working in latest 2.3.6 versionI too am experiencing this issue. Since I see other threads on here where the developer asked that issues be opened up on github I opened an issue for it here:
https://github.com/johngodley/redirection/issues/6I too saw this error on the latest version of the WordPress SEO plugin in the sitemap index, specifically when listing the category sitemaps.
To resolve this problem temporarily I edited line 260 of the inc/class-sitemaps.php thusly:
I changed it from this:
$this->sitemap .= '<lastmod>' . htmlspecialchars( $date ) . '</lastmod>' . "\n";to this:
$this->sitemap .= '<lastmod>' . htmlspecialchars( date("c",strtotime($date) )) . '</lastmod>' . "\n";this makes it that whatever format the date was in, it is now reformatted into ISO 8601 format required by sitemaps.
Forum: Plugins
In reply to: [Better RSS Widget] Rearrange OutputI too would be interested in being able to override the output of the feed from my theme. In particular I would like an option to make using a snippet/excerpt override of the post content optional.
I have a feed I’m wanting to display where I want the HTML of the feed content displayed as is (As it was very carefully crafted in the feed to be a list of metadata), it is really messed up when turned into an excerpt.
I agree with this feature request (fourthed) and posted my own copy of the feature request on the wordfence site’s Feature Request Forum. My post includes a simple patch to one line of lib/wordfenceClass.php that would include the username in the lock out emails.
Changing from line 495 in lib/wordfenceClass.php from:
self::lockOutIP($IP, "Used an invalid username to try to sign in.");to
self::lockOutIP($IP, "Used an invalid username ({$_REQUEST['log']}) to try to sign in.");Will include the username used in the email. Note, it will of course cause Wordfence to complain about the Wordfence file being modified
Forum: Plugins
In reply to: [W3 Total Cache] Amazon ElastiCache Integration ??you don’t need to have memcache installed, only the memcache pecl module in your php installation. Elasticache is a memcached server, nothing more nothing less. As long as you have the memcache pecl module installed in your php, the memcache option will be available on the W3TC dropdowns.
You can install the pecl module with:
pecl install memcache
OR on an apt based system like debian or ubuntu
apt-get install php5-memcache
Forum: Plugins
In reply to: [W3 Total Cache] Amazon ElastiCache Integration ??When you create an elasticache pool you are given a list of hostnames (one for each node you create), then simply select Memcached for the cache type in W3 Total Cache, and on the settings tab for the particular cache you are using Elasticache for, put the hosts that amazon gives you (with :11211 on each one, the standard Memcache port), comma separated
Forum: Plugins
In reply to: [W3 Total Cache] Amazon ElastiCache Integration ??ElastiCache is just an Amazon run copy of Memcached (Much like Amazon RDS is just an Amazon run copy of either MySQL or Oracle), and as such any plugin that uses memcache will support ElastiCache out of the box.
I setup a ElastiCache pool and connected W3 total cache to it yesterday with absolutely no problems.