Quote:
Originally Posted by Calash
Some notes from my transition to vb Nexus from Facebook Connect.
The following Query will move the user ID and Facebook ID to the vBNexus tables. Please replace the vb_ with your database prefix if you have one.
Code:
INSERT INTO vb_vbnexus_nonvbuser (userid, nonvbid)
SELECT userid, fbuid
FROM vb_fbuser
The two mods do not like each other. Once you get the tables moved disable Facebook Connect and remove the navbar template changes.
I will update as I test more. So far it worked well with an existing user from Facebook Connect.
Update: Google button not working in vBadvanced. Looks like a path issue. The login is not displaying at all outside of vB, even though I am sending the Navbar and Footer templates. The second part is due to my setup, ill probably have to do some fancy plugin work to fix that one.
I also noticed that the new members are being put into the Registered Users group despite me setting the default user group. I believe this was listed in a previous post as a bug.
|
If you are using this query to move your users from the Facebook Connect mod you should also run the following query after the first one is done
Code:
INSERT INTO vb_vbnexus_facebookuser (uid)
SELECT nonvbid
FROM vb_vbnexus_nonvbuser
WHERE type = '1'
Again replace vb_ with your prefix. This will populate the Facebook settings with the defaults.
Make sure to run it right after the first query. If you run it after somebody has joined using Facebook it can cause duplication of the records and script errors.