Adobe Connect behaves unexpectedly after you moved your Connect server to new hardware with a different computer name.
Run the script below to change the database. This solution assumes that the database is on a separate server, and you are using the same FQDN.
SELECT HOST_ID FROM PPS_ENUM_DATA_HOSTS WHERE STATUS = 'A'
DECLARE @OldServerName NVARCHAR(64), @NewServName NVARCHAR(64)
DECLARE @Host_id INT
SET @Host_id =1
--Put the number from Step 1 here.
SET @NewServName = 'New_server_Name'
--Put new server name between quotes
SET @OldServName = (SELECT [NAME] FROM PPS_ENUM_DATA_HOSTS WHERE [HOST_ID] = @HOST_ID)
UPDATE PPS_ENUM_DATA_HOSTS
SET [NAME] = @NewServName
WHERE [HOST_ID] = @HOST_ID
Unexpected behavior occurs in Adobe Connect if your computer name changes because Connect interprets the name change as a new host.
Sign in to your account