This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
addons:bridge:vbulletin [2011/08/31 17:39] jonyo [Steps inside vBulletin Admin] |
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 10: | Line 10: | ||
<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 your version of vBulletin, contact support, from time to time minor adjustments may be needed to make it compatible with newer released versions of vBulletin.</ | + | 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 |
===== Disable Registrations ===== | ===== Disable Registrations ===== | ||
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. |