nocanvas
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Intermittent Failed to Open Stream After Move to Root – GodaddyI found a fix –
For shared hosting Go to your hosting control panel – System Processes
Then go to End Web on the top toolbar. give it a second to reboot and you should be good.
Update – I found the problem in the services/stripe-webhook.php file
– here is my fix, if jason or another plugin person could look over and make sure this shouldnt mess with anything else, that would be great.wp-content/plugins/paid-membership-pro/services/stripe-webhook.php
Line 219function getOldOrderFromInvoiceEvent($event) { global $wpdb; $customer_id = $event->data->object->customer; // FIX FOR ERROR CREATING FALSE ORDERS FROM WP_ECOMMERCE STRIPE PAYMENTS if ($customer_id == '' || $customer_id == 'null'){ die("Fix For WPECOMMERCE Invoicing."); } // END FIX // okay, add an invoice. first lookup the user_id from the subscription id passed $old_order_id = $wpdb->get_var("SELECT id FROM $wpdb->pmpro_membership_orders WHERE subscription_transaction_id = '" . $customer_id . "' AND gateway = 'stripe' ORDER BY timestamp DESC LIMIT 1"); $old_order = new MemberOrder($old_order_id); if(!empty($old_order->id)) return $old_order; else return false; }
I also am still using the codegist to disable all user emails until i verify this is correct. I strongly reccomend anyone using stripe for anything else besides PMPRO look into this issue, as your customers will get false emails saying they’ve spent lots of money on things they havent ordered (even though they are not actually getting charged)
https://www.paidmembershipspro.com/add-ons/code-gists/pmpro-disable-all-emails/
I have a similar bug where someone’s account shows a few orders that actually have nothing to do with that user. They are actually mirroring completely different peoples transactions on wp-ecommerce checkouts of tangible products.
The pmpro user in question is receiving notifications of a new membership transaction for the amount of the tangible good purchased by someone else. Stripe isnt charging the card for this user, but they are getting email notifications and showing up in the orders as being linked to her account. very strange.
I am using version 1.7.1, with pmpro addon package and stripe lite.
Forum: Plugins
In reply to: [WP RSS Multi Importer] How to get big sized image from Facebook feed?Working GREAT!!! Allen, thank you so much . 5 Star Plugin and amazing support!
Forum: Plugins
In reply to: [WP RSS Multi Importer] How to get big sized image from Facebook feed?My site still imports them from the _s.jpg
would the code be different because I am importing the images into my media library as featured images? maybe i can move that snippet to another place.
I could give you a preview user/pass for my site (it is still in production) if you let me know a way to get you that privately (email, facebook, etc).
Forum: Plugins
In reply to: [WP RSS Multi Importer] How to get big sized image from Facebook feed?I overwrote excerpt_functions.php in the plugin/inc directory, but it was the same result after deleting all posts (via manage posts) and reimporting them.
Picture still showed up as the 130px _s.jpg version
To confirm the images are correct here are two links
(130px)
https://scontent-a-lax.xx.fbcdn.net/hphotos-ash3/q73/6302_10152886645515464_1894396945_s.jpg(600px)
https://scontent-a-lax.xx.fbcdn.net/hphotos-ash3/q73/6302_10152886645515464_1894396945_n.jpgForum: Plugins
In reply to: [WP RSS Multi Importer] How to get big sized image from Facebook feed?Forum: Plugins
In reply to: [WP RSS Multi Importer] How to get big sized image from Facebook feed?It looks like Facebook feeds use an image that ends in _s.jpg (s means small). The normal sized image is the same URL but ends in “_n.jpg”
Where could I put a line of code to check if an image URL that will be imported ends in _s.jpg and replaces it to _n.jpg?
This would get it working great!
(Using import to posts and adding image to media library options)