Jpyper
Forum Replies Created
-
I had the same issue today and was about to give up but changing my settings in the SF app fixed it. I don’t know exactly which setting was the problem but I have only these 3 boxes checked:
– Require Secret for Web Server Flow
– Require Secret for Refresh Token Flow
– Enable Client Credentials FlowI suspect it was unchecking the “Require Proof Ket for Code Exchange…” box but I’m not up for playing around with that after the time spent just getting this to work.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] wp_domain_mapping_logins reaches 10 MBs!I just noticed this problem on my site too. over 65,000 rows in this table!!!!!
Data gets logged in this table every time there is a user logout. The problem is this data only gets removed if the “remote login” option is turned on. The query that clears this stuff out doesn’t trigger when remote login is off. This seems like a small oversight in code but has huge potential for bloat on busy sites/networks.
Most of these logged rows in the domain_mapping_logins table are supposed to be deleted if they’re older than 2 MINUTES by the plugin, but again, the query never runs if remote login is off.
Crazy town!
I’m manually disabling this query that adds the data to the DB because it appears the data only seems to be relevant if remote login is being used (comment out line 680 in the most recent version of the plugin).
The long term solution IMO would be to have the plugin updated to not log this info at all if remote login is off. I may not understand the intent of this info though.
Thanks Jeremy! working great now. Happiness achieved.
Forum: Plugins
In reply to: [Imsanity] Does this work with Jetpack's Photon feature?It looks like it does work! Thanks.
Forum: Fixing WordPress
In reply to: Problems upgrading WP. Version will not changeIt turns out this is part of some cache issue I’ve got with the crazy setup I’m working with. even though I uploaded fresh files, the server was reading from the old files out of cache.
my issue is resolved.
Forum: Fixing WordPress
In reply to: Problems upgrading WP. Version will not changeI’m have already switched to vanilla twentytwelve, the theme would not be the issue. It was one of the first things I did.
I also mentioned that in my post 🙂
Good on you for mentioning it though, it’s a valuable debugging step.Forum: Fixing WordPress
In reply to: Error on Upgrade to WordPress 3.5Confirmed that this worked for me too. Thanks esmi, as always you’re a great help.
If I’m not using the filter, the sitemap displays correctly.
If I only filter out one category, the sitemap loads but the “problem category” is listed twice. Screenshots for example;
This is without the filter: http://d.pr/i/Gvxm
This is filtering just one category (chiropractic): http://d.pr/i/qUwX
This is filtering out 5 categories: http://d.pr/i/afhtIn the last screenshot I noticed that it’s duplicated 2 of the categories. The “vortala-authored” category may be another “problem” category but I do not need that one filtered. If I ever try to filter out the “problem” category, the sitemap never loads and times out with a 500 error.
Ah, you’re absolutely right. I was getting caught up with category stuff. That’s good enough for me.
Thanks! You’re plugin has been great to work with.
That’s perfect, thank you!
I also turned off the “site” sitemap by using
$bwp_gxs->remove_module('site');The site sitemap for the parent site of the network was displaying just one of the child sites, and I don’t think it’s necessary for me anyways.
I’ve been looking through the documentation.
If my post type is called “slides”, would I create a new module called post_slides and just return true for the generate_data function? I know I could use the bwp_gxs_post_where filter and just filter out all IDs of my post type, but it doesn’t seem like a good way to go and I also want the sitemap for that post type excluded from the sitemapindex.
Thanks Sean. Ultimately what I didn’t realize was that pluggable functions could only be overrode by plugins and not just through functions.php. That makes sense about loading order with plugins, useful information thanks.
Even with all plugins turned off except for Relevanssi I get the same results.
Would it matter than this is a site in a multi-site install? I forgot about that since it’s in my development environment which is multi-site. It will be transferred to a single install eventually. But could that be causing the issue?
Forum: Hacks
In reply to: Using tax_query changes my post_type query in my WP_Query argumentsPlugin problem -> Easy Custom Content Types. I’m contacting the developer.
Ugh, it was a plugin problem. At one point I had turned off all plugins but then turned them back on. I must have done something inbetween then to make the problem more obvious.
The culprit was East Custom Content Types. I’m bringing it up with the developer.