Allen Snook
Forum Replies Created
-
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Customize Giving LevelsHi!
Please don’t edit the plugin’s php files – you’ll lose your changes when updating the plugin.
I’ve written a post that describes how you can filter the values and not lose your changes:
http://allendav.com/2014/03/06/how-to-customize-giving-levels-in-seamless-donations/
Cheers…
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Dead in the water!Please make sure that the dgx-donate shortcode is not inside a “code” shortcode by using the text mode of the editor on that page. If that doesn’t solve the problem, let me know.
Hi Chris!
I missed a few – they are all fixed in the latest release.
Cheers!
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Change LanguageHi!
A french translation is in the works – I hope to upload it this weekend
Cheers…
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] how to delete all recordsHi cybershot!
There is no delete all, but if you go to each donation, there is a “delete this donation” button.
Cheers!
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] paypal sandbox issueYeah – until we get IPN working with the PayPal Sandbox, you will not have a donation record to observe (they are stored in database transients until PayPal shows a Completed payment status)
Thanks for sending the log – that helped! So looking at your log confirms that the transaction is starting but it looks like the PayPal developer sandbox is not initiating an IPN to your site (you should see an IPN processing start message in that log)
I was able to browse to your IPN URL directly (you might see a null IPN in your log now from that – you can ignore that)
I was also able to use the IPN testing facility at PayPal to successfully send a test IPN to that URL (its a great resource – https://developer.paypal.com/webapps/developer/applications/ipn_simulator – use Express Checkout as the transaction type) – you can ignore that in your log as well.
That leads me to believe there is something amiss with your PayPal developer sandbox account setup.
Make sure your PayPal sandbox account (where you are sending the donations) is configured as follows:
Account Type: Business
Status: Verified
Payment Review: Off
Negative Testing: OffYou should not need to set an IPN in your account, but you can try that as well.
Let me know if any of these settings were incorrect and if changing them fixed the problem. Once you get an IPN to complete, you’ll be able to see donation records in the database.
Forum: Plugins
In reply to: [Seamless Donations is Sunset] paypal sandbox issuecybershot – the PHP notice you cited above is now fixed with version 3.0.2
Forum: Plugins
In reply to: [Seamless Donations is Sunset] paypal sandbox issueMy email address is allendav at allendav dot com
Cheers…
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] paypal sandbox issueUgh – it is still stripping the backticks off of the table names. Please enclose those table names in backticks (I think the underscores in the table names might make backticks around the table names necessary, at least phpMyAdmin was requiring them last night for me)
Forum: Plugins
In reply to: [Seamless Donations is Sunset] paypal sandbox issuePlease send the log so I can take a look – in particular the “payment status” line must say “Completed” for the donation to be recorded. Here is a quick test I just did myself:
2014-02-24 17:38:49 ----------------------------------------
2014-02-24 17:38:50 Donation transaction started
2014-02-24 17:38:50 Name: Allen Snook
2014-02-24 17:38:50 Amount: 10
2014-02-24 17:38:50 IPN: http://allensnook.com/test/wp-content/plugins/seamless-donations/dgx-donate-paypalstd-ipn.php
2014-02-24 17:39:43 ----------------------------------------
2014-02-24 17:39:44 IPN processing start
2014-02-24 17:39:45 IPN VERIFIED for session ID dgxdonate_gkffvudmlk_1393292317
2014-02-24 17:39:45 Payment status = Completed
2014-02-24 17:39:45 Created donation 260 from form data in transient for sessionID dgxdonate_gkffvudmlk_1393292317
2014-02-24 17:39:45 Payment currency = USD
2014-02-24 17:39:50 IPN processing complete
It looks like the forum munged the queries a bit. They should look more like this:
SELECT * FROMwrd_postsWHERE post_type = “dgx-donation” LIMIT 0 , 30
SELECT * FROMwrd_postmetaWHERE meta_key = “_dgx_donate_amount”Be sure to replace wrd_posts with the name of the table where your posts are located and wrd_postmeta with the name of your postmeta table. That said – until we get a donation to Complete, you will not have any “dgx-donation” posts in your database.
Hope this helps… Please send that log excerpt
Forum: Plugins
In reply to: [Seamless Donations is Sunset] paypal sandbox issueThat notice can be ignored (I will fix that in the next release)
I meant your Seamless Donations log. In your dashboard for your WordPress site, scroll down to Seamless Donations and under that menu item look for Log. Click on that, and cut and paste that into an email.
Thanks…
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Seamless Donations Suddenly Stopped WorkingHi!
Hmmmm…. Please send the latest log to allendav at allendav dot com – be sure to put “pcgtech” in the subject or body of the email so I can correlate it to you 🙂
Thanks!
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Gift Aid in UKThank you! So glad to help. Let me know if you can’t sort out the thank you emails and I can take a look.
Cheers…
…Allen
Hi!
If you have no designated funds set up, the designated funds option should NOT appear on the form. Please let me know if that is not the case.
As for the mailing list show/hide option – I can add that in the next release, which should be the first week of March.
Cheers…
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Secure connection (SSL)Hi Nick!
Since no passwords or credit card numbers are accepted by the plugin, the most important thing is that the PayPal page to which the donor is sent to is HTTPS (including the form submittal), which I can assure you it is.
Also, I can also assure you that internally, when verifying the IPN with PayPal, that is all done using a secure (SSL) chatback URL.
That said, to ensure the remainder of the user-entered data is transmitted over a secure connection, you’ll need to ensure the page the donation form is on is HTTPS as well as the ajax admin callback that occurs to save the donor data.
From what I can tell the WordPress HTTPS plugin should do this, but I have not tried it myself. It is on my list to move my own sites to “all HTTPS” over the next few months, but if you get a chance to try it out before then, please let me know how it goes.
Again, HTTPS or not – in any case no passwords or credit cards are EVER saved on your site, EVER.
Hope this helps…
…Allen