Missing Home URL
-
I noticed that working on my localhost (WAMP server), the call to ajax-admin.php in auth.net.js was coming up 404. Quick fix was to localize home_url() when the script was enqueued and prefix that to the call. So in user.php:
wp_enqueue_script( 'pfund-auth-net', pfund_determine_file_location('auth.net','js'), array(), PFUND_VERSION, true ); wp_localize_script('pfund-auth-net', 'localized_data', array('homeurl'=>home_url()));
and then in auth.net.js:
function submitAuthNetDonation() { ... var data = $(this).serialize() + '&action=pfund_auth_net_donation'; var url = localized_data['homeurl']+"/wp-admin/admin-ajax.php";
Just a thought for future updates.
- The topic ‘Missing Home URL’ is closed to new replies.