Dear All<br>I have an auto complete text field , where user types and if corresponding  entry is present in database, I show it to user using below code.<br><br><i><b>$matches = array();
<br>  if ($string) 
<br>  {
<br>      $result = db_select(&#39;resubmt_skill_ids&#39;)
<br>        -&gt;fields(&#39;skill_ids&#39;, array(&#39;name&#39;, &#39;id&#39;))
<br>        -&gt;condition(&#39;name&#39;, db_like($string) . &#39;%&#39;, &#39;LIKE&#39;)
<br>        -&gt;range(0, 10)
<br>        -&gt;execute();
<br>      foreach ($result as $skill) 
<br>      {
<br>          $matches[$skill-&gt;name] = check_plain($skill-&gt;name);
<br>      }
<br>  }
<br>  drupal_json_output($matches);<br></b></i><br>Lets say one user wanted to type <i><b>.net</b></i>, as soon as user types <i><b>.n</b></i> I get below error.<br><br><i><b><br>An AJAX HTTP error occurred.<br>HTTP Result Code: 403<br>
Debugging information follows.<br>Path: <a href="http://localhost/example.com/util/known/skillsets">http://localhost/example.com/util/known/skillsets</a><br>StatusText: Forbidden<br>ResponseText: <br>403 Forbidden<br>Forbidden<br>
You don&#39;t have permission to access /util/known/skillsets/.n<br>on this server.<br>Apache/2.2.14 (Ubuntu) Server at localhost Port 80<br></b></i><br><br>Can somebody help me why this error comes and how can I avoid it.<br>
<br>Thanks<br>Austin<br><br><br><br><br>