Forum Replies Created
-
AuthorPosts
-
October 12, 2013 at 6:21 am in reply to: eStore – Blank IPN Debug and Paypal Shows 404 Error for Transaction #58305andalisMember
Or…if it’s easier for me to change the structure of my links to not including the trailing slash I need after paypal.php to work with the plugin, can you please let me know how I can do that?
.htaccess? Or permalinks settings in WP? Both?
Thank you so much!
October 12, 2013 at 6:02 am in reply to: eStore – Blank IPN Debug and Paypal Shows 404 Error for Transaction #58304andalisMemberOkay, I’m getting somewhere now (I had a similar problem with eMemeber and trailing slashes a year or two ago.
Through Paypal’s “Instant Payment Notification (IPN) details” page, it’s getting a 404 page error because it’s trying to send the information to [http://80-20educationalfoundation.com/wp-content/plugins/wp-cart-for-digital-products/paypal.php].
Notification URL
[http://80-20educationalfoundation.com/wp-content/plugins/wp-cart-for-digital-products/paypal.php]
HTTP response code
404
However, I found that when I include a trailing slash after paypal.php/, the ipn_handle_debug.log actually logs and shows (and therefore, Paypal would probably be able to reach the correct page rather than a 404 page not found error):
“Debug is enabled. Check the ipn_handle_debug.log file for debug output.”
Therefore, on eStore, where can I edit the file(s) that communicate with Paypal to send data with the trailing slash at the end of the php file rather than the one that’s generated?
Instead of:
http://80-20educationalfoundation.com/wp-content/plugins/wp-cart-for-digital-products/paypal.php
I need the link to be:
http://80-20educationalfoundation.com/wp-content/plugins/wp-cart-for-digital-products/paypal.php/
Thank you!
October 12, 2013 at 4:30 am in reply to: eStore – Blank IPN Debug and Paypal Shows 404 Error for Transaction #58303andalisMemberHi,
Thanks for helping out. I’ve tried the solution above and I’m still getting the 404 page:
Go to WP eStore -> Settings -> Advanced Settings and enable Alternate Redirection Method.
I double checked my .htaccess file and it’s bare bones:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} http://www.80-20educationalfoundation.xxxx.com$ [NC]
RewriteRule (.*)$ http://80-20educationalfoundation.com/$1 [R=301,L]
# ESSENTIALS
ServerSignature Off
Options All -Indexes
#PROTECT CONFIG FILES
<files wp-config.php>
Order deny,allow
deny from all
</files>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I’ve been trying for a few hours searching the forum and other places and can’t figure out what’s wrong.
-
AuthorPosts