This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
addons:bridge:vbulletin [2012/07/23 23:29] 127.0.0.1 external edit |
addons:bridge:vbulletin [2015/01/13 23:27] (current) geomatt |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== VBulletin Bridge ====== | ====== VBulletin Bridge ====== | ||
- | This //bridge type// | + | This //bridge type// |
====== Steps inside vBulletin Admin ====== | ====== Steps inside vBulletin Admin ====== | ||
Line 82: | Line 82: | ||
The following are things to note with the vBulletin bridge functionality. | The following are things to note with the vBulletin bridge functionality. | ||
+ | - If you see an error to the effect of " | ||
- There is currently no way to modify Vbulletin profile information settings | - There is currently no way to modify Vbulletin profile information settings | ||
through the bridge or current Geodesic Solutions installations. < | through the bridge or current Geodesic Solutions installations. < | ||
Line 95: | 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. |