In my module, I have the following for hook_menu. The problem is that unless I&#39;m logged in as user 1, any attempt to enter any of the url&#39;s results in a 403 without ever getting to any of the callback functions<br>
<br>function my_menu() {<br>  $paths = array();<br>  $paths[&#39;xfer/out&#39;] = array(<br>    &#39;title&#39; =&gt; &#39;Transfer transaction data&#39;,<br>    &#39;title callback&#39; =&gt; FALSE,<br>    &#39;page callback&#39; =&gt; &#39;_my_xfer_out&#39;,<br>
    &#39;access arguments&#39; =&gt; TRUE,<br>    &#39;file&#39; =&gt; &#39;my_functions.inc&#39;,<br>    &#39;type&#39; =&gt; MENU_CALLBACK,<br>  );<br>  $paths[&#39;my/xfer/in&#39;] = array(<br>    &#39;title&#39; =&gt; &#39;Transfer transaction data from&#39;,<br>
    &#39;title callback&#39; =&gt; FALSE,<br>    &#39;page callback&#39; =&gt; &#39;_my_xfer_in&#39;,<br>    &#39;access arguments&#39; =&gt; TRUE,<br>    &#39;file&#39; =&gt; &#39;my_functions.inc&#39;,<br>    &#39;type&#39; =&gt; MENU_CALLBACK,<br>
  );<br>  $paths[&#39;my/login&#39;] = array(<br>    &#39;title&#39; =&gt; &#39;Login for xfer&#39;,<br>    &#39;title callback&#39; =&gt; FALSE,<br>    &#39;page callback&#39; =&gt; &#39;_my_login&#39;,<br>    &#39;page arguments&#39; =&gt; array(&#39;Receive data&#39;, &#39;Deliver data&#39;),<br>
    &#39;access arguments&#39; =&gt; TRUE,<br>    &#39;file&#39; =&gt; &#39;my_functions.inc&#39;,<br>    &#39;type&#39; =&gt; MENU_CALLBACK,<br>  );<br>  return $paths;<br>}<br><br><br>