Hey i am receiving a http error 0 pop up message when i edit auto-complete fields? The node saved fine but the error box is rather annoying, any idea how i would go about fixing this?

Muchoz thanks!

Comments

Matt G’s picture

This is a common problem.

I had the problem on my website too. I have a Drupal multisite configuration.
Before I fixed it, taxonomy tag autocomplete would always give me "An HTTP error 0 occurred"

This would only happen on my live site (Rackspace VPS Ubuntu 8.04 server) and never on my localhost setup.

Here's how I fixed it:

I just commented out the base_url line in settings.php (around line 127):

$base_url = 'http://www.DOMAIN.com'; // NO trailing slash!

change to

# $base_url = 'http://www.DOMAIN.com'; // NO trailing slash!

I have no idea why this works. But it worked for me.

crifi’s picture

This problem is maybe caused by a wrong configuration of $base_url and should be prevented by inserting a warning message to the requirements system. Therefore I created a new issue #1046682: Install/Update process fails if $base_url is set to a wrong URL. Please close this bug as a duplicate, if this solves your issue. Thanks!

TimelessDomain’s picture

Thanks #2 fixed the problem i was having with taxonomy auto-complete & filefield uploads as well