Recent content by DDempsey

  1. D

    XF 2.1 Creating Thread and poll

    Thanks :) Got it working. Here's the code in case anyone else is looking for it. $thread = \XF::asVisitor($User, function() use ($forum, $title, $message) { $creator = \XF::service('XF:Thread\Creator', $forum); $creator->setContent($title, $message)...
  2. D

    XF 2.1 Creating Thread and poll

    I'm trying to create a thread with a poll. I'm able to create the thread using $thread = \XF::asVisitor($User, function() use ($forum, $title, $message) { $creator = \XF::service('XF:Thread\Creator', $forum); $creator->setContent($title, $message)...
  3. D

    XF 2.1 Custom Template Function Error

    Figured it out. I needed function _getsteamid32($templater, &$escape, $id)
  4. D

    XF 2.1 Custom Template Function Error

    Hello, I've got a template with the following; {{phx_steamauth_steamid32($providerData.provider_key)}} Which is handled by a class extension for 'XF\Template\Templater' namespace Phoenix\SteamAuth\XF\Template; use XF\Entity\User; class Templater extends XFCP_Templater { public function...
  5. D

    Custom Tabs

    Might I suggest a edit to Helper.php this code will support selecting the Tab in case the url is something like "/custom-tab/page.2/something.4/View" public static function uriMatch($uri) { $requestPaths = XenForo_Application::get('requestPaths'); $requestUri =...
  6. D

    XF 1.5 webdav not working

    Yea I've tried a few, just get stuck in the loop. I even tried the default one in the .htaccess and that if I remember correctly breaks SEO-urls
  7. D

    XF 1.5 webdav not working

    I do believe Kier's post was in-regards to the someone asking if they can use .htaccess to password the admindav.php file - in theory creating dual logins. I'm just using the .htaccess for the rewrite as suggested by others in that tread
  8. D

    XF 1.5 webdav not working

    Hmm, more then I get lol. Just keeps prompting for username/password.
  9. D

    XF 1.5 webdav not working

    No sorry, typo. the debug is turned on in config.php the rewrite code is in the .htaccess
  10. D

    XF 1.5 webdav not working

    I seem to be having an issue with webdav. I've got debug mode on for my ip, with the following in my .htaccess right after RewriteEngine On. RewriteRule ^admindav.php - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},NC,L] When going to admindav.php, all I get is a login popup loop. edit...
Top Bottom