
Originally Posted by
Chris Rama
Same here. my exlclude list: advanced_search_result,ipn_main_handler.php
In desperation, I tried it too but it had no effect, I mean, when the transaction on Paypal's website is complete, the shop does not receive the notification.
I really don't understand why this should work, since this part of the .htaccess:
Code:
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
means that if you invoke an existing directory or file (like ipn_main_handler.php) in the URL, the server must not rewrite the URL (otherwise it uses the last rule), thus Paypal should not have any problem when it comes to bring back the information to the shop. You can try to invoke ipn_main_handler.php via your web browser: if you get a blank page, then this script should be successfully used by Paypal. However it is not... and this is what I'd like to understand.
Bookmarks