Last updated December 27, 2011. Created by greggles on December 27, 2011.
Log in to edit this page.
The bakery module can synch data to subsites based on the init field. However, you may find that it sometimes gives admins the error message "Error 409 Conflict for site at http://subsite.example.com"
If this happens:
- Check watchdog on the subsite for entries, it should give some clues about the problem
- Look for problematic accounts on the subsite with the query select name, uid from users where init like 'http://master.example.com/user/70474/edit'; where 70474 is the UID of the user on the master
- Step 2 should have identified multiple problematic accounts. Find the one that should not be associated with the master site and fix it:
update users set init = 'originalemail@example.com' where uid = 1814 limit 1;change 1814 to an appropriate value