ChrisJDean
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] object cache causes segfault in network/sites.phpIt is
Forum: Plugins
In reply to: [W3 Total Cache] object cache causes segfault in network/sites.phpHi Marko, thanks for the reply.
It not a redis segfault, it’s a php segfault (mentioning redis is just to give you info).
Basically the segfault occurs on the network/sites.php page if object caching for wp-admin requests is OFF.
If I turn caching for wp-admin requests on, the page loads correctly.
Chris
Forum: Plugins
In reply to: [W3 Total Cache] I/O issues when plugin is activatedGuessing you have disk based caching enabled?
If so if you can switch to something in RAM like memcached or redis or AWS elasticache (as a third party caching service – though the speed of transit between GoDaddy to elasticache may defeat the object of using caching anyway) then the IO issues should go away.
If you can’t install or use memcached or redis you might be able to create a ramdisk on the server and set w3 total cache to perform on disk caching there.
Depends what tech you have access to there.
Chris
- This reply was modified 9 years, 7 months ago by ChrisJDean.
Forum: Plugins
In reply to: [W3 Total Cache] Memcached option is disabledMemcached is probabaly not installed or disabled on your server.
You need both the memcached server installed and the php extension to use it.
It could also be (if these are installed) that memcached is running on a non-standard port or that your firewall is blocking localhost connections to memcached.
If you cannot install memcached on your server you can also look at amazon elasticache as a third party solution which would work.
Finally you might want to consider redis as an alternative to memcache for this generally speaking.
Forum: Fixing WordPress
In reply to: Since move to Cloudfront WordPress tinyMCE not displayingYou might be subject to this issue:
https://core.trac.ww.wp.xz.cn/ticket/29159Adding something like this to your theme’s functions.php might resolve it for desktop users (however those on mobile devices (phone/tablets) may have various other issues with the wp-admin as this fix doesn’t cover all cases):
https://dtbaker.net/web-development/rich-textvisualwysiwyg-editor-does-not-work-in-wordpress-behind-cloudfront/Forum: Plugins
In reply to: [Intuitive Custom Post Order] Slows down backend rediculouslyI have found the same thing, and it appears to be down to where/how the plugin is hooked into every single admin page and it wanting to unnecessarily order or save the existing order or something of the posts on page load (was a while ago that I looked into why it was lagging my admin area out, hence the uncertainty on the specifics now).
It’s generally a good plugin user functionality wise, it just needs to some more thought around how it actually operates code wise.
Forum: Plugins
In reply to: [Theme My Login] Email as usernameJust to expand a little on dhunink’s post
The idea you have is right but this hook TAKES the email address not the user_login.
So to make the filter work all you actually need to do is have a field named user_login in your form which you can label as email address and then put this in functions.php:
function use_email_as_username($user_email) { return $_POST['user_login']; } add_filter('user_registration_email', 'use_email_as_username');Forum: Plugins
In reply to: [Theme My Login] Theme my Login reCaptchaWithout getting into a long discussion about it here, the problem with that dmsig85 is that if you have multiple users coming through the same proxy you risk banning everyone coming through that proxy for one person’s mistake (depending on how good the rules are on this are – I’ve not looked at the specific thing you mention).
Forum: Plugins
In reply to: [Theme My Login] Theme my Login reCaptchaSimple, to help prevent against the brute force attack of the login form by malicious users trying to gain access to the site.
I have some code for this I can post if you like – it’s not a massive change to recaptcha.php
Forum: Plugins
In reply to: [Theme My Login] Theme my Login reCaptchaIt appears to be just hooked onto the registration form and not the login form. Line 88 ish of recaptcha.php
I’m in the process of hacking my copy to get this into the login form too; Jeff any chance you can release an official update which includes recaptcha on the login form also?
Cheers
Chris
Forum: Installing WordPress
In reply to: “no posts found” on new installI’ve been trying for a few days to pin this down (on and off) and it looks like a bug with wordpress’s permalinks system
My preferred url structure for a recent wordpress 3.0.1 blog (and I’ve back tracked this to at least 2.9.2) is
/%category%/%postname%/%year%/%monthnum%/%day%/
When this is turned on I get the no posts found message in wp-admin system when clicking on posts though there are posts there in the numbers at the top of the page and output onthe site.
reverting back to some other structure fixes this right away
I have used /%category%/%postname%/ for a long time on a lot of blogs so I guess it’s a specific isse with dates, or maybe just numbers at the end of the url