Changes between Version 20 and Version 21 of transfer_site_between_servers
- Timestamp:
- Jun 9, 2016, 4:02:58 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
transfer_site_between_servers
v20 v21 127 127 Before changing the DNS we need to copy the file system data. 128 128 129 == fixing auto increment user_account_uid field ==129 == Fixing auto increment user_account_uid field == 130 130 131 131 When running the script to transfer sites between servers, the auto_increment field on the red_item_user_account table does not get properly incremented. 132 See: https://support.mayfirst.org/ticket/9127 132 133 {{{ 134 SELECT MAX(user_account_uid) FROM red_item_user_account; 135 ALTER TABLE red_item_user_account AUTO_INCREMENT = <PUT NUMBER + 1 HERE>; 136 }}} 137 138 For more detailed instructions, see [ticket:9127]. 133 139 134 140 == Copy data from the current to the new host ==