Recent content by brlong

  1. B

    [bd] Mails

    Hello, Is there a way to set either of these values? "ou can enable a custom return path domain on a per-message basis using the return_path_domain parameter (API), X-MC-ReturnPathDomain (SMTP), or globally for your account under Settings > Sending Defaults > Return Path Domain. Global account...
  2. B

    Been searching, some quick help on password.

    I'm currently using XenAPI and don't like how it's setup. I will check out bdAPI.
  3. B

    Been searching, some quick help on password.

    Is there an internal function I can use to do a registration? And how would I go about using that? Just call the main XenForo class and script it from there? Thanks in advance!
  4. B

    Been searching, some quick help on password.

    This is what I have ended up with: <?php function encode65($input, $count) { $output = ''; $i = 0; do { $value = ord($input[$i++]); $output .= $this->itoa64[$value & 0x3f]...
  5. B

    Been searching, some quick help on password.

    I'm writing a script to use via my homepage where users can login with there forum credentials and also register without being at the forum directly. There is a 3rd party add on I am currently using, XenApi(?), but I would like complete control over the process. Going through the the source I...
  6. B

    Been searching, some quick help on password.

    For the life of me, I am unable to find out how to use the data in xf_user_authenticate to authenticate in any way. I read various aritcles that the formart is sha256(sha256( password ) . salt) and to no aval am I able to come up with any working password. Is there any working documented way of...
  7. B

    Allowing Admin/Moderator to see IP in conversation

    Chris, Thanks for you help!
  8. B

    Allowing Admin/Moderator to see IP in conversation

    Hello, How would I go about accessing that?
  9. B

    Allowing Admin/Moderator to see IP in conversation

    Hello, Maybe I am missing it but is there a way for an admin/moderator to see the IP address of the user in the conversation that was started and\or includes them? Thanks,
Top Bottom