Aren Cambre
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Fields Factory] Wrong price of product (Important)I just checked all three fields that are being used in this product, in the Edit WC Product Field Group page. None of them have pricing rules defined.
In my case, the problem is happening on a variable item where the first variation is $10. (The other two variations are $0.)
Forum: Plugins
In reply to: [WC Fields Factory] Wrong price of product (Important)Same thing also reported in a different post: https://wordpress.org/support/topic/plugin-doubles-the-price-on-cart-and-checkout-urgent-please/. Disabling this plugin fixes it.
Running into the same problem. It’s definitely this plugin. When I disable WC Fields Factory, the problem does away.
Also, the title is not right. The plugin is multiplying the price by the quantity, then it multiplies that inflated price again by the quantity to get the total.
The total price becomes total = price * quantity^2.
- This reply was modified 8 years, 4 months ago by Aren Cambre.
Forum: Plugins
In reply to: [Social Photo Fetcher] Group albumsUnderstood. Thank you!
Forum: Fixing WordPress
In reply to: /var/lib/mysql/dbname Growing too fastThis is a WordPress forum, not MySql forum. 🙂
Forum: Networking WordPress
In reply to: Update Network = certificate errorWe just discovered that the hosts file on that server was pointing all hits directly back to itself.
We have a network appliance that sits in front of our public-facing web stuff that holds all the valid certificates; the servers themselves have self-signed certificates. cURL was correctly objecting because it didn’t like seeing the self-signed certificate. Removing the entry from the hosts file corrected everything.
Forum: Plugins
In reply to: [WordPress Importer] Stops before importing the first itemThe solution for my case was truly as simple as installing the php-xml module. I think you’re barking up the wrong tree with file names. Simply, you appear not to have that module installed. Get it installed. 🙂
Forum: Plugins
In reply to: [WordPress Importer] Stops before importing the first itemThe solution is to install the php-xml module. This is noted in http://core.trac.wordpress.org/ticket/24995. The problem here is that the importer does not alert to a dependency on php-xml‘s code, instead just quitting in the middle of page generation.
Forum: Plugins
In reply to: [WordPress Importer] Stops before importing the first itemI’m pretty sure this is going to be a bug, possibly a untrapped error, so I’ve opened a bug report at http://core.trac.wordpress.org/ticket/24995.
Forum: Networking WordPress
In reply to: Update Network = certificate errorToo funny, we were just revisiting this earlier today. We’ll pick it up tomorrow, and hopefully I can post a solution.
I think I agree, however, that peer authentication is silly for calling the update URLs.
Forum: Networking WordPress
In reply to: redirect_to redirects to URL prefixed with a slash: /http://…Ha, thanks! Well, it turns out that the Active Directory Integration module may be more network-aware than I realized. All of a sudden, users can sign in to blogs other than the base blog. So for now, I’ve gotten rid of the RewriteRule, and everything is happy. I’ll come back later if I do need to add it back.
Forum: Networking WordPress
In reply to: Redirect all login attempts to root login page with mod_rewriteForum: Networking WordPress
In reply to: Redirect all login attempts to root login page with mod_rewriteWith more investigation, I now realize this was 100% my fault.
I assumed RewriteRules cause redirects by default. In fact, unless explicitly specified, a RewriteRule may instead just internally proxy some other content on the same server.
Adding the
Rflag forces the redirect, causing the behavior I wanted.Forum: Networking WordPress
In reply to: Redirect all login attempts to root login page with mod_rewriteI figured it out with the help of colleagues. This one works:
RewriteRule ^.+wp-login.php(.*)$ /wp-login.php$1 [L,NC,R=301]If I remove the
,R=301, it stops working.301 vs. 304? Don’t care too much, as long as it redirects. But I have no clue why a 301 is required to make this work.
Forum: Networking WordPress
In reply to: Redirect all login attempts to root login page with mod_rewriteStill, it doesn’t matter where they log in, does it? I mean, once you log in to subsite, you’re logged in for all sites.
It does matter. The Active Directory Integration plugin is not network aware, so it is only configured on the base blog. I must have users sign in on the base blog first.
.is supposed to match any character, so^.+wp-login.php(.*)$ought to match, as it is saying matchwp-login.phpwith at least one character before it.