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