vBulletin Plugin Compatibility

Discussion in 'Hacks and Advanced Features' started by winter, Dec 31, 2009.

  1. winter Tapatalk Master

    Hi all,

    If you have vbulletin 3.7/3.8/4.0 forum and constantly receive error on iPhone, it is most likely some third-party plugin causes problem.

    If you want to pin point which plugin is causing problem, please try to turn off the plugin one by one in the admincp, and try it with the app.

    Alternatively you can disable the plugin for iPhone/Android app - it won't affect your system as in most casues the third party plugin is for display purpose and only usable in web browser environment.

    To disable, you need to edit one line in the plugin file. Look for mobiquo.php file, around line 13, find:

    Code:
    include("./include/xmlrpc.inc");
    include("./include/xmlrpcs.inc");
    
    After these lines, add a additional line:
    Code:
    define('DISABLE_HOOKS', true);
    
    If you still have access problem after you have made this change, please create a new issue in the Issues Reporting sub-forum and let us know your forum URL.

    Good luck!
  2. jimpic New Member

    Thanks a lot. That did it!
    I was going to create a condition based on useragent in the other mod but this was OK:

    Code:
    define('DISABLE_HOOKS', true);

Share This Page