-2

I downloaded the autocomplete plugin, just a complete plugin demo. The only thing that i need to do is upload the SQL file to my database and update the database login details:

/* Database setup information */
$dbhost = 'localhost:3307';  // Database Host
$dbuser = 'root';       // Database Username
$dbpass = '';           // Database Password
$dbname = 'itemsdb';      // Database Name

When i take a look in the console then i getting some XML errors, every time i type something in the search field.

https://i.stack.imgur.com/Xkz1w.jpg This is the autocomplete plugin: https://www.freshdesignweb.com/downloads/jquery-autocomplete-p1.zip

PcWolf
  • 19
  • 9

1 Answers1

-1

You are trying to run this from your own folder, but not using a local webserver. The issue is explained in here - "Cross origin requests are only supported for HTTP." error when loading a local file

Community
  • 1
  • 1
Manuel Cheța
  • 480
  • 2
  • 10