This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
addons:bridge:vbulletin [2013/08/14 16:07] geojames [Troubleshooting, Caveats, and Known Issues] |
addons:bridge:vbulletin [2015/01/13 23:27] (current) geomatt |
||
---|---|---|---|
Line 96: | Line 96: | ||
- If the password in Geo software and vBulletin get //out of sync//, **changes will not be synced for that user** as a security precaution, if the user pass doesn' | - If the password in Geo software and vBulletin get //out of sync//, **changes will not be synced for that user** as a security precaution, if the user pass doesn' | ||
+ | ====== Important Configuration for vBulletin 4.2.x ====== | ||
+ | |||
+ | If using vBulletin version 4.2 (confirmed on 4.2.1 and 4.2.2 (all patch levels) as of this writing), you must make a small change to the vBulletin PHP code in order for the bridge to work correctly. If you need assistance making this change, open a Support Ticket with us. | ||
+ | |||
+ | Open the file **includes/ | ||
+ | |||
+ | <code php> | ||
+ | /* Navbar stuff | ||
+ | Dont use DIR here, the Dev scripts dont like it */ | ||
+ | require_once(' | ||
+ | </ | ||
+ | |||
+ | Replace the above code with this: | ||
+ | |||
+ | <code php> | ||
+ | /* Navbar stuff | ||
+ | Dont use DIR here, the Dev scripts dont like it */ | ||
+ | //GEO EDIT: add DIR here, so that it works with the bridge | ||
+ | require_once(DIR.'/ | ||
+ | </ | ||
+ | |||
+ | and then save the file. This corrects a file include path that cannot otherwise be accounted for from the GeoCore side of things, and will allow the bridge to function normally. |