We have just published a technote regarding Adobe Connect support for Windows 8.
Please review the technote here:
http://helpx.adobe.com/adobe-connect/kb/windows-8-support-connect-8.html
We have just published a technote regarding Adobe Connect support for Windows 8.
Please review the technote here:
http://helpx.adobe.com/adobe-connect/kb/windows-8-support-connect-8.html
We have just published a technote regarding an issue with the Adobe Connect 8 Linux Add-in and Flash Player 11.2.
Please review the technote here:
http://helpx.adobe.com/adobe-connect/kb/connect-8-linux-add-in-detected.html
The 9.0.2 Patch for Licensed deployments is now live and can be downloaded from: http://helpx.adobe.com/adobe-connect/kb/connect-90-patches.html
Releases notes are here: http://helpx.adobe.com/adobe-connect/kb/connect-902-release-notes.html
We have just published a technote regarding the Release Notes for the upcoming 9.0.2 Adobe Connect release.
Please review the technote here:
http://helpx.adobe.com/adobe-connect/kb/connect-902-release-notes.html
We have just released a technote regarding the upcoming 9.0.2 Adobe Connect Meeting add-in.
Please review the technote here:
http://helpx.adobe.com/adobe-connect/kb/connect-902-add-in.html
Problem:= In Adobe Connect version 9 Meeting Room failover does not work with clustered environment
Scenario:= Start a meeting and use Help>Shift>About Connect to determine which server the meeting is hosted on and then conduct and orderly shutdown of that server. The meeting room should failover automatically to the corresponding node which is up, but due to a bug in version 9 failover does not work. So we have to remove hosted reference from substitution.xml files to make it work.
Solution:= Remove the following entries from ‘C:\breeze\comserv\linux\conf \Substitution.xml’ and ‘C:\breeze\comserv\win32\conf\ Substitution.xml’.
<KeyValueFile>${ROOT}/../../appserv/conf/hosted.ini</KeyValueFile>
Restart the services of Adobe Connect and Flash Media server and then test the failover. It should work fine.
The bug number for this issue is #3176707
We have created a PDF with step by step instructions to secure all the four components of Connect which are Web App, Meeting App, CQ Author and CQ Publish. Please go through the following Tech Note : http://helpx.adobe.com/adobe-connect/kb/secure-connect-cq.html
Adobe is currently investigating reports of a compromise of a Connectusers.com forum database. These reports first started circulating late during the day on Tuesday, November 13, 2012. At this point of our investigation, it appears that the Connectusers.com forum site was compromised by an unauthorized third party. It does not appear that any other Adobe services, including the Adobe Connect conferencing service itself, were impacted.
To protect Connect forum users, we have taken the following actions:
As a reminder, one of the best ways to protect yourself online is to follow password best practices and use different login credentials across different websites and services.
We sincerely apologize for the inconvenience this may cause to our forum members. Your security is of critical importance to us, and we appreciate your patience as we work towards restoring Connectusers.com forum services.
Periodically, licensed (on-premise) deployments of Adobe Connect Pro will have to have the services stopped or cycled during periods of modification, customization, troubleshooting, or potentially on a scheduled basis.
For convenience, you can copy the appropriate code below into a new file and save at a batch (.bat) file. Running this batch file will stop all the services in the correct order and then restart them in the appropriate order either all at once (automatically) or after a keystroke (prompted) by the user.
For a scheduled periodic cycling of the services, you can setup a scheduled task in Windows (on the Connect server) to run this batch file or have it controlled by a centralized enterprise scheduler like Tidal. Of course if setting up a scheduled task, you’d need to select the one without the forced keystroke.
First, take everything in between the lines (from @ECHO OFF through @ECHO OFF) and save as a .bat file to the Connect server.
Then you can run it manually or point a scheduled task to it.
I have posted a few different options below…see the descriptions then the code below them. These are applicable to Adobe Connect Pro 8.x and 9.x. There are additional services with 9.x (i.e. Adobe Connect CQ-Author service, Adobe Connect CQ-Publish service) as well as the Flash Media Gateway (FMG) and Adobe Connect Presence Server services that are in both C8 and C9 that may or may be needed. You can add these services to the batch files if applicable.
1.) Below is a cycler that just stops and starts all the applicable services (FMS,FMSAdmin,ConnectPro, and the CPTelephonyService). It is up to you and your deployment, whether you need the CPTelephonyService or not. This version will do it all automatically and won’t force you to perform a keystroke to start once the services are stopped. This version is good for a scheduled task to point to. Again, you may remove the FMSAdmin and/or CPTelephonyService services if you wish, as they are not always needed. I also added a ping in the middle so it adds more time before restarting the services (in case there is a delay in stopping the FMS service, which sometimes happens).
———————————snip below here and save to a .bat file—————————-
@ECHO OFF REM ----------------CONNECT SERVICE AUTOMATIC CYCLING ---------------- REM REM This batch file stops and starts the Adobe Connect and Flash Media Server Services REM REM REM ----------------------------------------------------------------------- @ECHO ON net stop ConnectPro net stop CPTelephonyService net stop FMSAdmin net stop FMS ping 1.1.1.1 -n 1 -w 20000>nul net start FMS net start FMSAdmin net start ConnectPro net start CPTelephonyService @ECHO OFF
———————————snip above this and save to a .bat file——————————
2.) Below is a cycler that stops the services (same as above) but requires a keystroke to start up the services again. This is handy if you are doing work on the server or troubleshooting and you want to quickly stop the services but not restart them until you are ready.
———————————snip below here and save to a .bat file—————————-
@ECHO OFF REM ----------------CONNECT SERVICE AUTOMATIC CYCLING WITH KEYSTROKE---------------- REM REM This batch file stops and starts the Adobe Connect and Flash Media Server Services REM
REM REM ----------------------------------------------------------------------- @ECHO ON
net stop ConnectPro net stop CPTelephonyService net stop FMSAdmin net stop FMS /y
@ECHO OFF
@ECHO Press a key to START services PAUSE
@ECHO ON
net start FMS net start FMSAdmin net start ConnectPro net start CPTelephonyService
@ECHO OFF
———————————snip above this and save to a .bat file——————————
3.) Below is a cycler that stops the services on an Edge server and clears the cache before restarting.
MAKE SURE YOU CHECK THE EDGE SERVER DIRECTORY STRUCTURE ON YOUR MACHINE BEFORE USING THIS. YOU’LL HAVE TO CHANGE THE LOCATION TO MATCH YOUR OWN.
Additional Notes:
The Edge server will need a maintenance script to clear old cache and keep them fresh; run the following .bat file as a scheduled task on each Connect Edge server; feel free to edit this file to reduce or prolong the ping-induced delays. The key is to allow enough time between each command for services to stop and start. Different servers respond differently, some requiring more time and some less time. By stopping the services, it unlocks the cache for thorough deletion:
———————————snip below here and save to a .bat file—————————-
@ECHO OFF REM ------CONNECT SERVICE AUTOMATIC CYCLING--------------- REM REM This batch file stops and starts Connect Edge Services and Clears the Cache REM REM ------------------------------------------------------------ @ECHO ON net stop fmsadmin ping 1.1.1.1 -n 1 -w 10000>nul net stop fms ping 1.1.1.1 -n 1 -w 200000>nul del /Q /S c:\breeze\edgeserver\win32\cache\http\*.* ping 1.1.1.1 -n 1 -w 10000>nul net start fms ping 1.1.1.1 -n 1 -w 10000>nul net start fmsadmin @ECHO OFF
———————————snip above this and save to a .bat file——————————
Objective - How to make Adobe Connect 8 add-in work with Ubuntu 10.04.
Requirements -
Adobe Connect v8.x, Ubuntu 10.04, Flash Player 10.3, Connect add-in.
Ubuntu 10.04 – http://releases.ubuntu.com/lucid/ubuntu-10.04.4-desktop-i386.iso
Steps to implement -
Result - You would now be able to use the meeting add-in with Ubuntu.