Recent content by ngkong

  1. ngkong

    XF 1.5 Unable to Change http to https

    Sorry please ignore previous post, $_SERVER['HTTPS'] = 'on'; did the trick
  2. ngkong

    XF 1.5 Unable to Change http to https

    I use cloudflare so no need to install cert. This should be nothing to do with the cert. If I view the html, the base tag still in http instead of https. It means $requestPaths.fullBasePath stays with http instead of https, doesn't respect "Board URL" configuration.
  3. ngkong

    XF 1.5 Unable to Change http to https

    Hi, My default installation of xenforo is with http, and now I want to change it to https. I've tried to edit "Board URL" from the option menu, also changed the license URL, but somehow <base href=" always sticked to http instead of https. Is there any cache need to rebuild to perform this...
  4. ngkong

    XF 1.4 Show Custom Fields in message_user_info

    resolved by adding this line to my plugin $this->getModelFromCache('XenForo_Model_User')->rebuildCustomFieldCache($userId);
  5. ngkong

    XF 1.4 Show Custom Fields in message_user_info

    i found the culprit. the user custom field is set by a plugin I made: $fieldId = 'fieldName'; $this->_getDb()->query(' INSERT INTO xf_user_field_value (user_id, field_id, field_value) VALUES (?, ?, ?) ON DUPLICATE KEY...
  6. ngkong

    XF 1.4 Show Custom Fields in message_user_info

    I have read this thread: https://xenforo.com/community/threads/custom-fields-in-message-message_user_info-template.20792/ Adding {$user.customFields.my_identifier} to message_user_info doesn't seem to work. "Viewable in message user info" field option is checked "Show custom user fields"...
Top Bottom