You can check once on the permissions provided in hook_menu.<br><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Dec 13, 2012 at 8:02 AM, Austin Einter <span dir="ltr">&lt;<a href="mailto:austin.einter@gmail.com" target="_blank">austin.einter@gmail.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">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" target="_blank">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<span class="HOEnZb"><font color="#888888"><br>Austin<br><br><br><br><br>
</font></span><br>--<br>
[ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br></blockquote></div><br><br clear="all"><br>-- <br>Regards,<br>Vaibhav Jain<br>
</div>