Recent content by Gomez

  1. G

    XF 2.1 Using Xenforo login in external sites causing issues

    So I'm using this technique to grab the logged in user from xenforo, and for the most part it works great. //Xenforo Session Setup require ($fileDir . '/src/XF.php'); XF::start(__DIR__); $app = XF::setupApp('XF\Pub\App'); $app->start(); $this->user = XF::visitor(); The issue I'm having is that...
  2. G

    XF 2.1 Continue an XF Session in PHP on the same domain?

    This is what I use, it works pretty well. //Xenforo Session Setup require ('path/to/xenforo' . '/src/XF.php'); XF::start(__DIR__); $app = XF::setupApp('XF\Pub\App'); $app->start(); $user = XF::visitor(); then you can do things like: $user['user_id'] $user['username']
  3. G

    [8WR] XenCarta (Wiki) PRO [Paid]

    Anyone know if you can use xenforo variables in pages? Say for example to determine what groups a user belongs to? I'm trying to make public and private pages.
  4. G

    Xenforo Sessions in external php files, IPv6 issues?

    I think its has something to do with https. I was able to work around the problem by modifying the xenforo->helper->cookie.php return self::_setCookieInternal($name, $value, $expiration, $httponly, $secure); To return self::_setCookieInternal($name, $value, $expiration, false, false);
  5. G

    Xenforo Sessions in external php files, IPv6 issues?

    So I've been using this code to grab the user sessions for a long time, and it works great. However I've started getting user complaints of pages not working, and the only thing I can see different about the users with issues is they have IPv6 Addresses. Any Ideas? //Xenforo install...
  6. G

    TeamSpeak 3 Integration [Paid]

    Hey, I also have a feature request. This might be more advanced than most, but I would like to be able to set the server IP different than the invite link. I'm using an internal IP bewteen my xenforo box and my teamspeak box that is not accessible to outside connections.
  7. G

    TeamSpeak 3 Integration [Paid]

    Anyone know how the xenporta widgets are supposed to work? I cant find any info about setting them up.
  8. G

    XenCentral Multisite System [Paid]

    Is there any way to setup site-specific groups of styles? For example: Site 1 can choose from styles a,b,c. Site 2 can choose from styles d,e,f. I could also get by with forcing one site to use a style that's not set as "user select-able"
Top Bottom