Skip to content Skip to sidebar Skip to footer

Ajax Call Needs Username And Password

I'm an Ajax newbie, so that might explain my question. I'm doing the following call $.ajax({ url: '

Solution 1:

turns out this was a url conflict.

the ajax call was accessing a url, let's call it some.domain/stats

the hosting provider offers a free Statistics page that is password protected. its url is also some.domain/stats

when my app accessed some.domain/stats, thru some weird routing I don't understand, I was directed to the password protected one.

when i changed the url the ajax call was accessing to something like some.domain/nameOtherThanStats then everything worked fine.

no htaccess changes needed.

Post a Comment for "Ajax Call Needs Username And Password"