This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
addons:bridge:vbulletin [2009/09/29 19:30] jonyo wording |
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 8: | Line 8: | ||
The solution to this, is to disable user registrations, | The solution to this, is to disable user registrations, | ||
- | <tip c n> | + | <tip c n> |
+ | |||
+ | Also note that the current bridge has been tested on newer vBulletin versions, and is known to work on **4.0** versions, including the newer vBulletin CMS. If you do experience any problems with a newer released version of vBulletin, please contact support. | ||
===== Disable Registrations ===== | ===== Disable Registrations ===== | ||
Line 80: | 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 93: | 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. |