Recent content by lukegb

  1. lukegb

    Fixed "New" and narrow width

    Yeah, I was about to come here and report this too.
  2. lukegb

    Are You a Human?

    Although we both work with the same system, that script actually replaces the entire registration view, whereas I just take the lightweight approach and plug into xenForo's CAPTCHA framework. I have some other modifications to the registration view and didn't want to spend the time merging them...
  3. lukegb

    Are You Human?

    Got round to making a quick xF plugin for it: http://xenforo.com/community/resources/are-you-a-human.1012/
  4. lukegb

    Are You a Human?

    lukegb submitted a new resource: Are You a Human? (version v0.1) - An unofficial plugin to support the Are You a Human? service Read more about this resource...
  5. lukegb

    Unmaintained Are You a Human? v0.1

    This unofficial plugin provides support for the Are You a Human? CAPTCHA service. It uses their official PHP API with a thin xenForo wrapper to allow for easy integration. Installation Instructions Download package Upload files in upload/ to your server Install the addon-lukegbAreYouHuman.xml...
  6. lukegb

    Fixed Upgrading from 1.0.0 to 1.1.0b5 fails due to missing RTL language attribute

    On line 217 of library/XenForo/Dependencies/Abstract.php I had to replace $this->_defaultTemplateParams['pageIsRtl'] = ($this->_defaultTemplateParams['visitorLanguage']['text_direction'] == 'RTL'); with $this->_defaultTemplateParams['pageIsRtl'] = false...
  7. lukegb

    LGB Thread Renamer

    Heh, I actually sort of want it changed now... LGB Thread Renamer sounds better - make it so! Thanks.
  8. lukegb

    Add-on [PAID] Full Wordpress/Xenforo bridge

    That's the point - it is fully functioning. It's hardly that much effort to do one 'forgot my password' request, is it?
  9. lukegb

    Add-on [PAID] Full Wordpress/Xenforo bridge

    That's only if you remove the bridge, and only for users that were created by the bridge - XF and WP use different password hashing formats, so I can't just pass the password hash.
  10. lukegb

    Add-on [PAID] Full Wordpress/Xenforo bridge

    Yes, although synced comments would all disappear if you disabled my WordPress plugin. Note however that users would have to manually reset their passwords on WordPress!
  11. lukegb

    Add-on [PAID] Full Wordpress/Xenforo bridge

    Sure, add me on one of the two IM services I've got listed on my profile, and I'll talk with you there. At the moment most of the settings are hard-coded in. This is actually easy to change with the way I have done it, and I shall either split the settings into some sort of configuration file...
  12. lukegb

    Add-on [PAID] Full Wordpress/Xenforo bridge

    This simplifies various things, and means that you don't need a brand new, clean WordPress install, so existing WordPress installs can also use the bridge.
  13. lukegb

    Website Integration Class?

    Damn, didn't realise this existed! I currently do pretty much what you've outlined above to import the autoloader into WordPress for my bridge, but I hacked up a $cur_error_rep = error_reporting(); // import XenForo, do session things... error_reporting($cur_error_rep); - otherwise the "strict...
  14. lukegb

    Add-on [PAID] Full Wordpress/Xenforo bridge

    Well, I now have linked avatars (ugly, because I didn't really want to take the image proxy approach locally, so I get Gravatar to do that for me. Sorta). Comments are now linked between XF and WP (currently the template needs editing to remove the "post comment" form, as XF is held as the...
  15. lukegb

    Add-on [PAID] Full Wordpress/Xenforo bridge

    I'd be interested in working on this, and am exploring a couple avenues. What features would you need? So far I've implemented (my own code, not based on the existing bridge): Wordpress users logged in/out based upon current XenForo user WP user contains a value containing XF user ID - if this...
Top Bottom