Regarding java detection on client side

2014-09-16 Thread Abhishek Yadav
Hello,

Is there any way to detect java is installed on client side or not ?


Thanks,


Regards,
Abhishek


Re: Regarding java detection on client side

2014-09-16 Thread Maxim Solodovnik
You can write your clients email and ask :)
I see no other options :(

On 16 September 2014 18:34, Abhishek Yadav abhishek.ya...@hiddenbrains.in
wrote:

 Hello,

 Is there any way to detect java is installed on client side or not ?


 Thanks,


 Regards,
 Abhishek




-- 
WBR
Maxim aka solomax


Re: Regarding java detection on client side

2014-09-16 Thread Abhishek Yadav
Hello Maxim,

Actually from client side , i mean users who are accessing openmeetings.

 I am facing problem with screen sharing and recording.
When we click on screen sharing and recording button on top-right corner,
it will download jnlp file.
If user not having java installed on his/her machine, he will unable to run
that applet.

So i want to give user some message before joining the room (if java is not
installed in his machine).
Is there any way to detect that java is installed on end users machine or
not.


Thanks,

Regards,
Abhishek

On Tue, Sep 16, 2014 at 5:14 PM, Maxim Solodovnik solomax...@gmail.com
wrote:

 You can write your clients email and ask :)
 I see no other options :(

 On 16 September 2014 18:34, Abhishek Yadav abhishek.ya...@hiddenbrains.in
  wrote:

 Hello,

 Is there any way to detect java is installed on client side or not ?


 Thanks,


 Regards,
 Abhishek




 --
 WBR
 Maxim aka solomax



Re: Regarding java detection on client side

2014-09-16 Thread Maxim Solodovnik
I see no way to implement this :(

On 16 September 2014 19:19, Abhishek Yadav abhishek.ya...@hiddenbrains.in
wrote:

 Hello Maxim,

 Actually from client side , i mean users who are accessing openmeetings.

  I am facing problem with screen sharing and recording.
 When we click on screen sharing and recording button on top-right corner,
 it will download jnlp file.
 If user not having java installed on his/her machine, he will unable to
 run that applet.

 So i want to give user some message before joining the room (if java is
 not installed in his machine).
 Is there any way to detect that java is installed on end users machine or
 not.


 Thanks,

 Regards,
 Abhishek

 On Tue, Sep 16, 2014 at 5:14 PM, Maxim Solodovnik solomax...@gmail.com
 wrote:

 You can write your clients email and ask :)
 I see no other options :(

 On 16 September 2014 18:34, Abhishek Yadav 
 abhishek.ya...@hiddenbrains.in wrote:

 Hello,

 Is there any way to detect java is installed on client side or not ?


 Thanks,


 Regards,
 Abhishek




 --
 WBR
 Maxim aka solomax





-- 
WBR
Maxim aka solomax


Re: Problems using via IE

2014-09-16 Thread William Overstreet
http://msdn.microsoft.com/en-us/library/ff955275%28v=vs.85%29.aspx

On Mon, Sep 15, 2014 at 9:53 AM, William william.ab.overstr...@gmail.com
wrote:

 You did supply the correct meta tags. The problem is that those tags have
 to be first, or ie will start processing with the older engine and ignore
 them. Throwing them in the http response header guarantees the page to be
 handled by the non-ie7 rendering engine. It is somewhere in the IE support
 spec that this is actually a proper way to do this. I'll have to dig up the
 document.

 On Sep 13, 2014, at 2:40, Maxim Solodovnik solomax...@gmail.com wrote:

 Maybe we can set some IE specific META? I can add it to the page if you
 can tell me with META should be added

 On 13 September 2014 01:39, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Well, turns out that if compatibility view is enabled, and the first
 thing through isn't the webs server telling the browser to use the latest
 and greatest, the browser falls back to IE7 compatibility, which does not
 work. I'm using urlrewritefilter-4.0.3.jar to make the internal tomcat web
 server send the headers to force IE to use the latest.

 ${RED5_HOME}/webapps/openmeetings/WEB-INF/lib/urlrewritefilter-4.0.3.jar
 ${RED5_HOME}/webapps/openmeetings/WEB-INF/web.xml
 ${RED5_HOME}/webapps/openmeetings/WEB-INF/urlrewrite.xml

 # diff web.xml web-old.xml
 37,48d36
  filter
  filter-nameUrlRewriteFilter/filter-name
 
 filter-classorg.tuckey.web.filters.urlrewrite.UrlRewriteFilter/filter-class
  /filter
 
  filter-mapping
  filter-nameUrlRewriteFilter/filter-name
  url-pattern/*/url-pattern
  dispatcherREQUEST/dispatcher
  dispatcherFORWARD/dispatcher
  /filter-mapping
 

 # cat urlrewrite.xml
 ?xml version=1.0 encoding=utf-8?
 !DOCTYPE urlrewrite PUBLIC -//tuckey.org//DTD UrlRewrite 4.0//EN 
 http://www.tuckey.org/res/dtds/urlrewrite4.0.dtd;

 urlrewrite

 rule
 condition
 type=request-uri^(/openmeetings/wicket.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/swf.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/screen.upload.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=Cache-Controlmax-age=5/set
 /rule
 /urlrewrite



 On Thu, Sep 11, 2014 at 11:17 AM, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Thanks for that, was getting nailed with the Compatibility view. For
 some reason corp says we need it turned on reasons. I guess I can edit the
 pages to present the correct html to force non-compatibility view.


 On Wed, Sep 10, 2014 at 10:42 PM, Maxim Solodovnik solomax...@gmail.com
  wrote:

 can you check IE without proxy?
 can you check JS console in IE (F12 if I'm not mistaken)
 It seems jquery and/or some CSS files were not loaded (maybe because of
 proxy)

 On 11 September 2014 00:27, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Trying to use openmeetings internally on our lan. I'm running into the
 issue of only internet explorer is refusing work. all the other browsers
 have no issues, reguardless of the OS. The login screen looks normal, post
 login looks like http://i.imgur.com/nwhGX88.png , and if I try to
 join straight to a meeting, all I get is that swirling icon in the middle
 of the screen, the one before the loading bar appears.

 The network is stuck behind a http proxy.




 --
 WBR
 Maxim aka solomax






 --
 WBR
 Maxim aka solomax




Re: Problems using via IE

2014-09-16 Thread Maxim Solodovnik
so I should add

meta http-equiv=X-UA-Compatible content=IE=Edge /

to all OM pages
correct?

On 16 September 2014 21:08, William Overstreet 
william.ab.overstr...@gmail.com wrote:

 http://msdn.microsoft.com/en-us/library/ff955275%28v=vs.85%29.aspx

 On Mon, Sep 15, 2014 at 9:53 AM, William william.ab.overstr...@gmail.com
 wrote:

 You did supply the correct meta tags. The problem is that those tags have
 to be first, or ie will start processing with the older engine and ignore
 them. Throwing them in the http response header guarantees the page to be
 handled by the non-ie7 rendering engine. It is somewhere in the IE support
 spec that this is actually a proper way to do this. I'll have to dig up the
 document.

 On Sep 13, 2014, at 2:40, Maxim Solodovnik solomax...@gmail.com wrote:

 Maybe we can set some IE specific META? I can add it to the page if you
 can tell me with META should be added

 On 13 September 2014 01:39, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Well, turns out that if compatibility view is enabled, and the first
 thing through isn't the webs server telling the browser to use the latest
 and greatest, the browser falls back to IE7 compatibility, which does not
 work. I'm using urlrewritefilter-4.0.3.jar to make the internal tomcat web
 server send the headers to force IE to use the latest.

 ${RED5_HOME}/webapps/openmeetings/WEB-INF/lib/urlrewritefilter-4.0.3.jar
 ${RED5_HOME}/webapps/openmeetings/WEB-INF/web.xml
 ${RED5_HOME}/webapps/openmeetings/WEB-INF/urlrewrite.xml

 # diff web.xml web-old.xml
 37,48d36
  filter
  filter-nameUrlRewriteFilter/filter-name
 
 filter-classorg.tuckey.web.filters.urlrewrite.UrlRewriteFilter/filter-class
  /filter
 
  filter-mapping
  filter-nameUrlRewriteFilter/filter-name
  url-pattern/*/url-pattern
  dispatcherREQUEST/dispatcher
  dispatcherFORWARD/dispatcher
  /filter-mapping
 

 # cat urlrewrite.xml
 ?xml version=1.0 encoding=utf-8?
 !DOCTYPE urlrewrite PUBLIC -//tuckey.org//DTD UrlRewrite 4.0//EN 
 http://www.tuckey.org/res/dtds/urlrewrite4.0.dtd;

 urlrewrite

 rule
 condition
 type=request-uri^(/openmeetings/wicket.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/swf.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/screen.upload.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=Cache-Controlmax-age=5/set
 /rule
 /urlrewrite



 On Thu, Sep 11, 2014 at 11:17 AM, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Thanks for that, was getting nailed with the Compatibility view. For
 some reason corp says we need it turned on reasons. I guess I can edit the
 pages to present the correct html to force non-compatibility view.


 On Wed, Sep 10, 2014 at 10:42 PM, Maxim Solodovnik 
 solomax...@gmail.com wrote:

 can you check IE without proxy?
 can you check JS console in IE (F12 if I'm not mistaken)
 It seems jquery and/or some CSS files were not loaded (maybe because
 of proxy)

 On 11 September 2014 00:27, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Trying to use openmeetings internally on our lan. I'm running into
 the issue of only internet explorer is refusing work. all the other
 browsers have no issues, reguardless of the OS. The login screen looks
 normal, post login looks like http://i.imgur.com/nwhGX88.png , and
 if I try to join straight to a meeting, all I get is that swirling icon 
 in
 the middle of the screen, the one before the loading bar appears.

 The network is stuck behind a http proxy.




 --
 WBR
 Maxim aka solomax






 --
 WBR
 Maxim aka solomax





-- 
WBR
Maxim aka solomax


Re: Problems using via IE

2014-09-16 Thread William Overstreet
From all the help sites which have had to deal with this issue that I have
seen, it needs to be in place before everything else, including javascript,
right after the htmlhead tags on HTML. This all depends on how IE
behaves thou. I'm stuck with requiring compatibility view enabled for all
intranet sites because noone is going to update the older hardwired for
IE5.5 pages. I suggest you turn on that compatibilty view settings as well
while testing. If I knew how to handle tomcat's coyote better, I could try
setting configuration in coyote instead of using urlrewritefilter for
sending the x-ua-compability info in the response header.


On Tue, Sep 16, 2014 at 10:18 AM, Maxim Solodovnik solomax...@gmail.com
wrote:

 so I should add

 meta http-equiv=X-UA-Compatible content=IE=Edge /

 to all OM pages
 correct?

 On 16 September 2014 21:08, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 http://msdn.microsoft.com/en-us/library/ff955275%28v=vs.85%29.aspx

 On Mon, Sep 15, 2014 at 9:53 AM, William william.ab.overstr...@gmail.com
  wrote:

 You did supply the correct meta tags. The problem is that those tags
 have to be first, or ie will start processing with the older engine and
 ignore them. Throwing them in the http response header guarantees the page
 to be handled by the non-ie7 rendering engine. It is somewhere in the IE
 support spec that this is actually a proper way to do this. I'll have to
 dig up the document.

 On Sep 13, 2014, at 2:40, Maxim Solodovnik solomax...@gmail.com wrote:

 Maybe we can set some IE specific META? I can add it to the page if you
 can tell me with META should be added

 On 13 September 2014 01:39, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Well, turns out that if compatibility view is enabled, and the first
 thing through isn't the webs server telling the browser to use the latest
 and greatest, the browser falls back to IE7 compatibility, which does not
 work. I'm using urlrewritefilter-4.0.3.jar to make the internal tomcat web
 server send the headers to force IE to use the latest.

 ${RED5_HOME}/webapps/openmeetings/WEB-INF/lib/urlrewritefilter-4.0.3.jar

 ${RED5_HOME}/webapps/openmeetings/WEB-INF/web.xml
 ${RED5_HOME}/webapps/openmeetings/WEB-INF/urlrewrite.xml

 # diff web.xml web-old.xml
 37,48d36
  filter
  filter-nameUrlRewriteFilter/filter-name
 
 filter-classorg.tuckey.web.filters.urlrewrite.UrlRewriteFilter/filter-class
  /filter
 
  filter-mapping
  filter-nameUrlRewriteFilter/filter-name
  url-pattern/*/url-pattern
  dispatcherREQUEST/dispatcher
  dispatcherFORWARD/dispatcher
  /filter-mapping
 

 # cat urlrewrite.xml
 ?xml version=1.0 encoding=utf-8?
 !DOCTYPE urlrewrite PUBLIC -//tuckey.org//DTD UrlRewrite 4.0//EN 
 http://www.tuckey.org/res/dtds/urlrewrite4.0.dtd;

 urlrewrite

 rule
 condition
 type=request-uri^(/openmeetings/wicket.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/swf.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/screen.upload.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=Cache-Controlmax-age=5/set
 /rule
 /urlrewrite



 On Thu, Sep 11, 2014 at 11:17 AM, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Thanks for that, was getting nailed with the Compatibility view. For
 some reason corp says we need it turned on reasons. I guess I can edit the
 pages to present the correct html to force non-compatibility view.


 On Wed, Sep 10, 2014 at 10:42 PM, Maxim Solodovnik 
 solomax...@gmail.com wrote:

 can you check IE without proxy?
 can you check JS console in IE (F12 if I'm not mistaken)
 It seems jquery and/or some CSS files were not loaded (maybe because
 of proxy)

 On 11 September 2014 00:27, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Trying to use openmeetings internally on our lan. I'm running into
 the issue of only internet explorer is refusing work. all the other
 browsers have no issues, reguardless of the OS. The login screen looks
 normal, post login looks like http://i.imgur.com/nwhGX88.png , and
 if I try to join straight to a meeting, all I get is that swirling icon 
 in
 the middle of the screen, the one before the loading bar appears.

 The network is stuck behind a http proxy.




 --
 WBR
 

Re: Problems using via IE

2014-09-16 Thread Maxim Solodovnik
I'll commit the changes into 3.0 and 3.1 branches and will start new
SNAPSHOT build
can you please check?

On 16 September 2014 22:08, William Overstreet 
william.ab.overstr...@gmail.com wrote:

 From all the help sites which have had to deal with this issue that I have
 seen, it needs to be in place before everything else, including javascript,
 right after the htmlhead tags on HTML. This all depends on how IE
 behaves thou. I'm stuck with requiring compatibility view enabled for all
 intranet sites because noone is going to update the older hardwired for
 IE5.5 pages. I suggest you turn on that compatibilty view settings as well
 while testing. If I knew how to handle tomcat's coyote better, I could try
 setting configuration in coyote instead of using urlrewritefilter for
 sending the x-ua-compability info in the response header.


 On Tue, Sep 16, 2014 at 10:18 AM, Maxim Solodovnik solomax...@gmail.com
 wrote:

 so I should add

 meta http-equiv=X-UA-Compatible content=IE=Edge /

 to all OM pages
 correct?

 On 16 September 2014 21:08, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 http://msdn.microsoft.com/en-us/library/ff955275%28v=vs.85%29.aspx

 On Mon, Sep 15, 2014 at 9:53 AM, William 
 william.ab.overstr...@gmail.com wrote:

 You did supply the correct meta tags. The problem is that those tags
 have to be first, or ie will start processing with the older engine and
 ignore them. Throwing them in the http response header guarantees the page
 to be handled by the non-ie7 rendering engine. It is somewhere in the IE
 support spec that this is actually a proper way to do this. I'll have to
 dig up the document.

 On Sep 13, 2014, at 2:40, Maxim Solodovnik solomax...@gmail.com
 wrote:

 Maybe we can set some IE specific META? I can add it to the page if you
 can tell me with META should be added

 On 13 September 2014 01:39, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Well, turns out that if compatibility view is enabled, and the first
 thing through isn't the webs server telling the browser to use the latest
 and greatest, the browser falls back to IE7 compatibility, which does not
 work. I'm using urlrewritefilter-4.0.3.jar to make the internal tomcat web
 server send the headers to force IE to use the latest.

 ${RED5_HOME}/webapps/openmeetings/WEB-INF/lib/urlrewritefilter-4.0.3.jar

 ${RED5_HOME}/webapps/openmeetings/WEB-INF/web.xml
 ${RED5_HOME}/webapps/openmeetings/WEB-INF/urlrewrite.xml

 # diff web.xml web-old.xml
 37,48d36
  filter
  filter-nameUrlRewriteFilter/filter-name
 
 filter-classorg.tuckey.web.filters.urlrewrite.UrlRewriteFilter/filter-class
  /filter
 
  filter-mapping
  filter-nameUrlRewriteFilter/filter-name
  url-pattern/*/url-pattern
  dispatcherREQUEST/dispatcher
  dispatcherFORWARD/dispatcher
  /filter-mapping
 

 # cat urlrewrite.xml
 ?xml version=1.0 encoding=utf-8?
 !DOCTYPE urlrewrite PUBLIC -//tuckey.org//DTD UrlRewrite 4.0//EN 
 http://www.tuckey.org/res/dtds/urlrewrite4.0.dtd;

 urlrewrite

 rule
 condition
 type=request-uri^(/openmeetings/wicket.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/swf.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/screen.upload.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=Cache-Controlmax-age=5/set
 /rule
 /urlrewrite



 On Thu, Sep 11, 2014 at 11:17 AM, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Thanks for that, was getting nailed with the Compatibility view. For
 some reason corp says we need it turned on reasons. I guess I can edit 
 the
 pages to present the correct html to force non-compatibility view.


 On Wed, Sep 10, 2014 at 10:42 PM, Maxim Solodovnik 
 solomax...@gmail.com wrote:

 can you check IE without proxy?
 can you check JS console in IE (F12 if I'm not mistaken)
 It seems jquery and/or some CSS files were not loaded (maybe because
 of proxy)

 On 11 September 2014 00:27, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Trying to use openmeetings internally on our lan. I'm running into
 the issue of only internet explorer is refusing work. all the other
 browsers have no issues, reguardless of the OS. The login screen looks
 normal, post login looks like http://i.imgur.com/nwhGX88.png , 

Re: Problems using via IE

2014-09-16 Thread Maxim Solodovnik
Please reopen https://issues.apache.org/jira/browse/OPENMEETINGS-1087
In case still an issue

Build to test
https://builds.apache.org/view/M-R/view/OpenMeetings/job/Openmeetings%203.0.x/
build #65

Thanks for investigation

On 16 September 2014 22:28, Maxim Solodovnik solomax...@gmail.com wrote:

 I'll commit the changes into 3.0 and 3.1 branches and will start new
 SNAPSHOT build
 can you please check?

 On 16 September 2014 22:08, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 From all the help sites which have had to deal with this issue that I
 have seen, it needs to be in place before everything else, including
 javascript, right after the htmlhead tags on HTML. This all depends on
 how IE behaves thou. I'm stuck with requiring compatibility view enabled
 for all intranet sites because noone is going to update the older hardwired
 for IE5.5 pages. I suggest you turn on that compatibilty view settings as
 well while testing. If I knew how to handle tomcat's coyote better, I could
 try setting configuration in coyote instead of using urlrewritefilter for
 sending the x-ua-compability info in the response header.


 On Tue, Sep 16, 2014 at 10:18 AM, Maxim Solodovnik solomax...@gmail.com
 wrote:

 so I should add

 meta http-equiv=X-UA-Compatible content=IE=Edge /

 to all OM pages
 correct?

 On 16 September 2014 21:08, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 http://msdn.microsoft.com/en-us/library/ff955275%28v=vs.85%29.aspx

 On Mon, Sep 15, 2014 at 9:53 AM, William 
 william.ab.overstr...@gmail.com wrote:

 You did supply the correct meta tags. The problem is that those tags
 have to be first, or ie will start processing with the older engine and
 ignore them. Throwing them in the http response header guarantees the page
 to be handled by the non-ie7 rendering engine. It is somewhere in the IE
 support spec that this is actually a proper way to do this. I'll have to
 dig up the document.

 On Sep 13, 2014, at 2:40, Maxim Solodovnik solomax...@gmail.com
 wrote:

 Maybe we can set some IE specific META? I can add it to the page if
 you can tell me with META should be added

 On 13 September 2014 01:39, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Well, turns out that if compatibility view is enabled, and the first
 thing through isn't the webs server telling the browser to use the latest
 and greatest, the browser falls back to IE7 compatibility, which does not
 work. I'm using urlrewritefilter-4.0.3.jar to make the internal tomcat 
 web
 server send the headers to force IE to use the latest.

 ${RED5_HOME}/webapps/openmeetings/WEB-INF/lib/urlrewritefilter-4.0.3.jar

 ${RED5_HOME}/webapps/openmeetings/WEB-INF/web.xml
 ${RED5_HOME}/webapps/openmeetings/WEB-INF/urlrewrite.xml

 # diff web.xml web-old.xml
 37,48d36
  filter
  filter-nameUrlRewriteFilter/filter-name
 
 filter-classorg.tuckey.web.filters.urlrewrite.UrlRewriteFilter/filter-class
  /filter
 
  filter-mapping
  filter-nameUrlRewriteFilter/filter-name
  url-pattern/*/url-pattern
  dispatcherREQUEST/dispatcher
  dispatcherFORWARD/dispatcher
  /filter-mapping
 

 # cat urlrewrite.xml
 ?xml version=1.0 encoding=utf-8?
 !DOCTYPE urlrewrite PUBLIC -//tuckey.org//DTD UrlRewrite 4.0//EN 
 http://www.tuckey.org/res/dtds/urlrewrite4.0.dtd;

 urlrewrite

 rule
 condition
 type=request-uri^(/openmeetings/wicket.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/swf.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=X-UA-CompatibleIE=Edge/set
 /rule
 rule
 condition
 type=request-uri^(/openmeetings/screen.upload.*)$/condition
 condition name=user-agent.*MSIE.*/condition
 set type=response-header
 name=Cache-Controlmax-age=5/set
 /rule
 /urlrewrite



 On Thu, Sep 11, 2014 at 11:17 AM, William Overstreet 
 william.ab.overstr...@gmail.com wrote:

 Thanks for that, was getting nailed with the Compatibility view. For
 some reason corp says we need it turned on reasons. I guess I can edit 
 the
 pages to present the correct html to force non-compatibility view.


 On Wed, Sep 10, 2014 at 10:42 PM, Maxim Solodovnik 
 solomax...@gmail.com wrote:

 can you check IE without proxy?
 can you check JS console in IE (F12 if I'm not mistaken)
 It seems jquery and/or some CSS files were not loaded (maybe
 because of proxy)

 On 11 September 2014 00:27, William Overstreet 
 

Re: Conference Rooms unavailable

2014-09-16 Thread Robert Bilbrey
Hi Max, I was poking around and found this
,http://helpx.adobe.com/flash-player/kb/enable-system-flash-player-google-chrome.html
, it would seem that Chrome uses the same flash player as FF and IE. So
it must be something else that is causing the issue? What do you think?
Thanks, Bob

On 09/14/2014 11:47 PM, Maxim Solodovnik wrote:
 Have asked Red5
 developes: 
 https://groups.google.com/forum/?fromgroups=#!topic/red5interest/Qco2TT70xug
 https://groups.google.com/forum/?fromgroups=#%21topic/red5interest/Qco2TT70xug

 Maybe they can help 

 On 14 September 2014 02:02, Maxim Solodovnik solomax...@gmail.com
 mailto:solomax...@gmail.com wrote:

 I would like see client debug output (not server)
 please create account, will try to to take a look at it

 On 14 September 2014 01:49, Robert Bilbrey rbilb...@runbox.com
 mailto:rbilb...@runbox.com wrote:

 The output from the console is here,
 http://pastebin.com/xTmfp4Ss . If
 it would be helpful, I could create an account for you to be
 able to see
 the actual debuggers on the canvas.

 On 09/13/2014 01:34 PM, Maxim Solodovnik wrote:
  Have you modified config.xml?
  could you run debug version of OM
  1) find web.xml file (webapps/openmeetings/WEB-INF
  2) find DEPLOYMENT change to DEVELOPMENT
  check client logs
 
  On 14 September 2014 01:31, Robert Bilbrey
 rbilb...@runbox.com mailto:rbilb...@runbox.com
  mailto:rbilb...@runbox.com mailto:rbilb...@runbox.com
 wrote:
 
  Hi Maxim, version 3.0.3 , the logs look ok from what I
 can tell, the
  pastebin of the logs is http://pastebin.com/vN4Wizm0.
  Thanks, Bob
 
 
 
 
  On 09/13/2014 01:03 PM, Maxim Solodovnik wrote:
   What version are you using?
   Is there anything in the logs?
  
   On 14 September 2014 01:00, Robert Bilbrey
 rbilb...@runbox.com mailto:rbilb...@runbox.com
  mailto:rbilb...@runbox.com mailto:rbilb...@runbox.com
   mailto:rbilb...@runbox.com
 mailto:rbilb...@runbox.com mailto:rbilb...@runbox.com
 mailto:rbilb...@runbox.com wrote:
  
   All openmeetings configuration interfaces are
 available,
  however when
   going to a conference room, the room fails to
 load. Attached
  is a
   screen
   shot of the errors that are thrown. Any help you
 could give
  would be
   appreciated.
   Thanks, Bob
  
  
  
  
   --
   WBR
   Maxim aka solomax
 
 
 
 
 
  --
  WBR
  Maxim aka solomax




 -- 
 WBR
 Maxim aka solomax




 -- 
 WBR
 Maxim aka solomax

-- 
Robert Bilbrey, CISSP , PMP
DD:931-879-8248
Cell: 530-526-8605

If you wish to message me privately, my public key is :
-BEGIN PGP PUBLIC KEY BLOCK-
Version: GnuPG v1

mQINBFPfpagBEACzAY+PikqfHQTnd1RVKPfLqXoTuRh3mWAVdKg4wMlwStrgVA5g
m8bZ4+x2SJpGUk9SdLY3mWxxSSadt9NWxp13YAKR38yQN+lyNg+gF+26oZanTyva
SQEP0C5qMsd5VP3YLb+pzpv8zv3/y5+MmM1s8ckxiPChTkfqG1fxLj7dUjG1Zwew
MQYVrybGTXy7R8po0geQIdSTXCfFhxEMcVRpblS5RqJ938GWO1aVO6uRGyDesczF
jr+SG4kSzn0LCKn9Uc560+RnRU52euVybRBp4UYI/hlIFEONMn9fWwhmsJ/OZq9E
1K/5xXDhmSb6v/6Buk7NU5+bFpHm2sHviRsTfbaokqFijjYlq8t7NwizlX44fUAt
aJz2fzE+kaqwAbXjNrxF3EpLNRATFC3c86Rn6G1FVSKqgr81bh7bUyoZm9d3CrtZ
EUPlN5RqKqYKpOeuKlwiIYHzrBeIefAFmiEvVjC0cjPocznPmm7DBZHjEkBDBfYB
WxMB3PFVWIWWIXWr19OapLz1D/lx7MT71Ev5QqA+ZWv7zu0yha72N6IHUoChhaCA
CtAd4c5L7LG9LzzNtTVHFkXyrwEDWYZosLwPbSwQ7sPYmHu+PKwC4XZA0wAlphyy
MFt2mgFuD9KTIseky3Ppjv9S+KDpJwFB5yUK085iD/72H7Ec0gXMNkYJ6QARAQAB
tCRSb2JlcnQgQmlsYnJleSA8cmJpbGJyZXlAcnVuYm94LmNvbT6JAjgEEwECACIF
AlPfpagCGy8GCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEPF9ErdkSkGBO8UQ
AJUie7A7Xkjrvt6VVLQyT/+Oly2gHOHVb6Au8hKDuJPONHm2/6llm+bl7Rm3jwcv
8+W759CMSDM10DZBGmgNwDJeYSuLIkIT2cDMBjWsURj4TzHOWAPMouTnUMVWfsu5
2b+cUMtaiErTnIevcxIuBoBsAokYTgYH1rLx5FQvQ5tx5mbhyWqgZXnRg4pNq9f+
CnciO+gAL5lQzjAjXhn4jQra9XXoz4MeyTFkTwdoYn74TBAjUCYAsUn47zyzMpdW
6/kzoCZ3uCUAlgTYIbJMXyjXog7CW+CYgt3UaKl3zph5HWnXRgg5+YNKWyHZ3DT3
28HLEgqlibTlTS6x6rP3cqdtbO+80zs6GPKXmAk59cchEReakitxUEKpBOY7yZSx
CKWCGJ+CYGtSGZTuPOBug28zKYraFHhl7mGl/zVXa9t+zN8qU46hpa5hA+d6spbq
OdWFimhJJzx8uB07efNsYR44opuAE1n1QYoYprJo/Kg/6CfNyasnPeQdbp87RA00
EDcBrJnkRRj2Fv6aDYyxzo+KaCXwwrGnN8I7gS2Lz5/W4NNLfZkzpDUm6luJgvOn
05n/vYjYPUFwagh5Rrb1rHcR9sObFdnuWfyu0dREU+Ukv4EeoSLwYm+gUOeZSguS
TZfAbcJn8c/Hjh/0o4enlOLKSerlGKQTIjaSKD8mPp1DuQINBFPfpagBEADHFIjB
GYNTMAKZ7CluFeChrs0OHJMUJ3t+TTjOAtCDVRrd+BgTjK6VJ2D8T/U6eVCnA4XY
KJO8toLtkmUHckbOH5vmT7mVkm8BYCYJorB9cOUJ/j9mWBh3H7Qm4mbzuqXzG5qx

Re: Conference Rooms unavailable

2014-09-16 Thread Maxim Solodovnik
Chrome _might_ use the same player, but it uses it's own player by default
Will wait for Tiago's answer/investigation

On 16 September 2014 22:54, Robert Bilbrey rbilb...@runbox.com wrote:

 Hi Max, I was poking around and found this
 ,
 http://helpx.adobe.com/flash-player/kb/enable-system-flash-player-google-chrome.html
 , it would seem that Chrome uses the same flash player as FF and IE. So
 it must be something else that is causing the issue? What do you think?
 Thanks, Bob

 On 09/14/2014 11:47 PM, Maxim Solodovnik wrote:
  Have asked Red5
  developes:
 https://groups.google.com/forum/?fromgroups=#!topic/red5interest/Qco2TT70xug
  
 https://groups.google.com/forum/?fromgroups=#%21topic/red5interest/Qco2TT70xug
 
 
  Maybe they can help 
 
  On 14 September 2014 02:02, Maxim Solodovnik solomax...@gmail.com
  mailto:solomax...@gmail.com wrote:
 
  I would like see client debug output (not server)
  please create account, will try to to take a look at it
 
  On 14 September 2014 01:49, Robert Bilbrey rbilb...@runbox.com
  mailto:rbilb...@runbox.com wrote:
 
  The output from the console is here,
  http://pastebin.com/xTmfp4Ss . If
  it would be helpful, I could create an account for you to be
  able to see
  the actual debuggers on the canvas.
 
  On 09/13/2014 01:34 PM, Maxim Solodovnik wrote:
   Have you modified config.xml?
   could you run debug version of OM
   1) find web.xml file (webapps/openmeetings/WEB-INF
   2) find DEPLOYMENT change to DEVELOPMENT
   check client logs
  
   On 14 September 2014 01:31, Robert Bilbrey
  rbilb...@runbox.com mailto:rbilb...@runbox.com
   mailto:rbilb...@runbox.com mailto:rbilb...@runbox.com
  wrote:
  
   Hi Maxim, version 3.0.3 , the logs look ok from what I
  can tell, the
   pastebin of the logs is http://pastebin.com/vN4Wizm0.
   Thanks, Bob
  
  
  
  
   On 09/13/2014 01:03 PM, Maxim Solodovnik wrote:
What version are you using?
Is there anything in the logs?
   
On 14 September 2014 01:00, Robert Bilbrey
  rbilb...@runbox.com mailto:rbilb...@runbox.com
   mailto:rbilb...@runbox.com mailto:rbilb...@runbox.com
mailto:rbilb...@runbox.com
  mailto:rbilb...@runbox.com mailto:rbilb...@runbox.com
  mailto:rbilb...@runbox.com wrote:
   
All openmeetings configuration interfaces are
  available,
   however when
going to a conference room, the room fails to
  load. Attached
   is a
screen
shot of the errors that are thrown. Any help you
  could give
   would be
appreciated.
Thanks, Bob
   
   
   
   
--
WBR
Maxim aka solomax
  
  
  
  
  
   --
   WBR
   Maxim aka solomax
 
 
 
 
  --
  WBR
  Maxim aka solomax
 
 
 
 
  --
  WBR
  Maxim aka solomax

 --
 Robert Bilbrey, CISSP , PMP
 DD:931-879-8248
 Cell: 530-526-8605

 If you wish to message me privately, my public key is :
 -BEGIN PGP PUBLIC KEY BLOCK-
 Version: GnuPG v1

 mQINBFPfpagBEACzAY+PikqfHQTnd1RVKPfLqXoTuRh3mWAVdKg4wMlwStrgVA5g
 m8bZ4+x2SJpGUk9SdLY3mWxxSSadt9NWxp13YAKR38yQN+lyNg+gF+26oZanTyva
 SQEP0C5qMsd5VP3YLb+pzpv8zv3/y5+MmM1s8ckxiPChTkfqG1fxLj7dUjG1Zwew
 MQYVrybGTXy7R8po0geQIdSTXCfFhxEMcVRpblS5RqJ938GWO1aVO6uRGyDesczF
 jr+SG4kSzn0LCKn9Uc560+RnRU52euVybRBp4UYI/hlIFEONMn9fWwhmsJ/OZq9E
 1K/5xXDhmSb6v/6Buk7NU5+bFpHm2sHviRsTfbaokqFijjYlq8t7NwizlX44fUAt
 aJz2fzE+kaqwAbXjNrxF3EpLNRATFC3c86Rn6G1FVSKqgr81bh7bUyoZm9d3CrtZ
 EUPlN5RqKqYKpOeuKlwiIYHzrBeIefAFmiEvVjC0cjPocznPmm7DBZHjEkBDBfYB
 WxMB3PFVWIWWIXWr19OapLz1D/lx7MT71Ev5QqA+ZWv7zu0yha72N6IHUoChhaCA
 CtAd4c5L7LG9LzzNtTVHFkXyrwEDWYZosLwPbSwQ7sPYmHu+PKwC4XZA0wAlphyy
 MFt2mgFuD9KTIseky3Ppjv9S+KDpJwFB5yUK085iD/72H7Ec0gXMNkYJ6QARAQAB
 tCRSb2JlcnQgQmlsYnJleSA8cmJpbGJyZXlAcnVuYm94LmNvbT6JAjgEEwECACIF
 AlPfpagCGy8GCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEPF9ErdkSkGBO8UQ
 AJUie7A7Xkjrvt6VVLQyT/+Oly2gHOHVb6Au8hKDuJPONHm2/6llm+bl7Rm3jwcv
 8+W759CMSDM10DZBGmgNwDJeYSuLIkIT2cDMBjWsURj4TzHOWAPMouTnUMVWfsu5
 2b+cUMtaiErTnIevcxIuBoBsAokYTgYH1rLx5FQvQ5tx5mbhyWqgZXnRg4pNq9f+
 CnciO+gAL5lQzjAjXhn4jQra9XXoz4MeyTFkTwdoYn74TBAjUCYAsUn47zyzMpdW
 6/kzoCZ3uCUAlgTYIbJMXyjXog7CW+CYgt3UaKl3zph5HWnXRgg5+YNKWyHZ3DT3
 28HLEgqlibTlTS6x6rP3cqdtbO+80zs6GPKXmAk59cchEReakitxUEKpBOY7yZSx
 CKWCGJ+CYGtSGZTuPOBug28zKYraFHhl7mGl/zVXa9t+zN8qU46hpa5hA+d6spbq
 OdWFimhJJzx8uB07efNsYR44opuAE1n1QYoYprJo/Kg/6CfNyasnPeQdbp87RA00
 EDcBrJnkRRj2Fv6aDYyxzo+KaCXwwrGnN8I7gS2Lz5/W4NNLfZkzpDUm6luJgvOn
 

Re: FFMPEG INSTALLATION ERROR make x264

2014-09-16 Thread Mark Lin
the file are ok as ican download them to my pc and i can heare the
recording,
the same with firefox
so i dont think its the recording.
i tested it with 2 other pc with chrom and there is no sound

Thank you

2014-09-16 5:50 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 can you manually check the files under
 webapps/openmeetings/streams/*roomId*/rec_*recId**
 and
 webapps/openmeetings/streams/hibernate/flvRecording_*recId**

 does all files have sound?


 On 16 September 2014 03:11, Mark Lin mlin40...@gmail.com wrote:

 Hello Maxim,

 no error with the video( popup  icon near the video name

 just compile OM 3.0.3 and checked again and i am facing problem with the
 sound in chrome,
 i can see video but just silent in both rooms - conference and interview

 firefox working grate

 windows 7 - can't load pages from dashboard

 2014-09-04 7:37 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 What browser are you using? Is it reproducible on alternative browsers?
 (maybe system sound settings for particular application?)

 do you have any errors in the recordings list? (small exclamation icon
 on the right of the recording, can yoou click on it and check the logs?)



 On 3 September 2014 20:20, Mark Lin mlin40...@gmail.com wrote:

 The problems occur just in the record section page
 room type - restricted  conference can see the video but no sound,
 but there is no problem when downloading and play on my pc - can see and
 hear
 room type - interview - black player - no sound, no video  when
 downloading to my pc - nothing happen
 no problem to hear each other
 no problem to upload .avi  .mp4 to whiteboard, can see and here

 Thank you

 what type of room?
 can you test with 2 participants? can you hear each other?
 you can try to upload *.avi or *.mp4



 On 2 September 2014 02:25, Mark Lin mlin40...@gmail.com wrote:

 I tried with increasing user volume but nothing
 when i test recording in the edit record streampopup window, there is
 no problem, i can hear sound very clearly,
 but in the video there is no sound,
 any idea? maybe it is related to VPS software installation

 and when trying to add it to youtube - i can upload the flv file but
 not proccing happen it is just stuck at 0%

 Thank you


 2014-09-01 18:40 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 maybe you can increase user volume?



 On 1 September 2014 23:35, Mark Lin mlin40...@gmail.com wrote:

 Ok i copied the ffmpeg to /local/usr/bin and i can record with OP,

 i can see the video
 but can't hear any sound,
 what i should take care of?


 2014-09-01 18:05 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 you can copy or make symbolic links to get necessary applications in
 /usr/local/bin/



 On 1 September 2014 22:56, Mark Lin mlin40...@gmail.com wrote:

 Thank you Maxim
  i just finished the ffmpeg installation with sacces.

 and command - cd ~/bin  ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv

 result -

 :~/bin# ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv
 ffmpeg version 2.3.git Copyright (c) 2000-2014 the FFmpeg developers
   built on Sep  1 2014 18:36:06 with gcc 4.4.5 (Debian 4.4.5-8)
   configuration: --prefix=/root/ffmpeg_build
 --extra-cflags=-I/root/ffmpeg_build/include
 --extra-ldflags=-L/root/ffmpeg_build/lib --bindir=/root/bin --enable-gpl
 --enable-libass --enable-libfdk-aac --enable-libfreetype
 --enable-libmp3lame --enable-libopus --enable-libtheora 
 --enable-libvorbis
 --enable-libvpx --enable-libx264 --enable-nonfree
   libavutil  54.  7.100 / 54.  7.100
   libavcodec 56.  1.100 / 56.  1.100
   libavformat56.  3.100 / 56.  3.100
   libavdevice56.  0.100 / 56.  0.100
   libavfilter 5.  0.103 /  5.  0.103
   libswscale  3.  0.100 /  3.  0.100
   libswresample   1.  1.100 /  1.  1.100
   libpostproc53.  0.100 / 53.  0.100
 /root/input.mp4: No such file or directory

 But can't see ffmpeg at /usr/local/bin

 DO I NEED TO COMMAND

 echo MANPATH_MAP $HOME/bin $HOME/ffmpeg_build/share/man 
 ~/.manpath
 . ~/.profile

 Thank you



 2014-09-01 16:20 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 I'm using this guide
 https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu



 On 1 September 2014 21:02, Mark Lin mlin40...@gmail.com wrote:

 Hello
 using VPS - debian-6.0-x86_64

 trying to install ffmpeg according to -
 https://trac.ffmpeg.org/wiki/How%20to%20quickly%20compile%20FFmpeg%20with%20mp3,%20aac%2B%20and%20x264

 Related regulations have been installed without any problem...
 but when make is end I getting ERROR -

  CC  cmdutils.o
 CC  ffmpeg_opt.o
 CC  ffmpeg_filter.o
 LD  ffmpeg_g
 /usr/bin/ld: libavcodec/libavcodec.a(libx264.o): in function
 X264_init:libavcodec/libx264.c:677: error: undefined reference to
 'x264_encoder_open_142'
 collect2: ld returned 1 exit status
 make: *** [ffmpeg_g] Error 1

 i tried several times to build ffmpeg with build x264 as the guide
 shown

 so remove x264 and install it from the debian repository -
 

Re: account whether daylight saving time

2014-09-16 Thread Mark Lin
When sending an invitation at 23:00 for example I get it according to my
mail box one hour before ie at 22:00 and reservation is not valid

2014-09-16 5:52 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 yes sure, just select user TZ with DST

 On 16 September 2014 03:29, Mark Lin mlin40...@gmail.com wrote:

 Hello,
 Doe's OM takes into account whether daylight saving time

 Thank you




 --
 WBR
 Maxim aka solomax


Action menu = send invitation is disabled

2014-09-16 Thread Mark Lin
Action menu = send invitation is disabled
first click - nothing
second click - it is enabled
third click - popup invitation show
[image: תמונה מוטבעת 2]


Re: Action menu = send invitation is disabled

2014-09-16 Thread Maxim Solodovnik
It is disabled for the first ~15 seconds until all necessary data is loaded
from the server
On Sep 17, 2014 4:52 AM, Mark Lin mlin40...@gmail.com wrote:

 Action menu = send invitation is disabled
 first click - nothing
 second click - it is enabled
 third click - popup invitation show
 [image: תמונה מוטבעת 2]



Re: account whether daylight saving time

2014-09-16 Thread Maxim Solodovnik
Could provide more information:
Client machine tz
Server machine tz
Om user tz
Tz specified in the invitation
Exact date
 On Sep 17, 2014 4:38 AM, Mark Lin mlin40...@gmail.com wrote:

 When sending an invitation at 23:00 for example I get it according to my
 mail box one hour before ie at 22:00 and reservation is not valid

 2014-09-16 5:52 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 yes sure, just select user TZ with DST


 On 16 September 2014 03:29, Mark Lin mlin40...@gmail.com wrote:

 Hello,
 Doe's OM takes into account whether daylight saving time

 Thank you




 --
 WBR
 Maxim aka solomax



Re: FFMPEG INSTALLATION ERROR make x264

2014-09-16 Thread Maxim Solodovnik
Could you list all files you have checked? Chrome playing *.mp4 file
On Sep 17, 2014 3:38 AM, Mark Lin mlin40...@gmail.com wrote:

 the file are ok as ican download them to my pc and i can heare the
 recording,
 the same with firefox
 so i dont think its the recording.
 i tested it with 2 other pc with chrom and there is no sound

 Thank you

 2014-09-16 5:50 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 can you manually check the files under
 webapps/openmeetings/streams/*roomId*/rec_*recId**
 and
 webapps/openmeetings/streams/hibernate/flvRecording_*recId**

 does all files have sound?


 On 16 September 2014 03:11, Mark Lin mlin40...@gmail.com wrote:

 Hello Maxim,

 no error with the video( popup  icon near the video name

 just compile OM 3.0.3 and checked again and i am facing problem with the
 sound in chrome,
 i can see video but just silent in both rooms - conference and interview

 firefox working grate

 windows 7 - can't load pages from dashboard

 2014-09-04 7:37 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 What browser are you using? Is it reproducible on alternative browsers?
 (maybe system sound settings for particular application?)

 do you have any errors in the recordings list? (small exclamation icon
 on the right of the recording, can yoou click on it and check the logs?)



 On 3 September 2014 20:20, Mark Lin mlin40...@gmail.com wrote:

 The problems occur just in the record section page
 room type - restricted  conference can see the video but no sound,
 but there is no problem when downloading and play on my pc - can see and
 hear
 room type - interview - black player - no sound, no video  when
 downloading to my pc - nothing happen
 no problem to hear each other
 no problem to upload .avi  .mp4 to whiteboard, can see and here

 Thank you

 what type of room?
 can you test with 2 participants? can you hear each other?
 you can try to upload *.avi or *.mp4



 On 2 September 2014 02:25, Mark Lin mlin40...@gmail.com wrote:

 I tried with increasing user volume but nothing
 when i test recording in the edit record streampopup window, there is
 no problem, i can hear sound very clearly,
 but in the video there is no sound,
 any idea? maybe it is related to VPS software installation

 and when trying to add it to youtube - i can upload the flv file but
 not proccing happen it is just stuck at 0%

 Thank you


 2014-09-01 18:40 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 maybe you can increase user volume?



 On 1 September 2014 23:35, Mark Lin mlin40...@gmail.com wrote:

 Ok i copied the ffmpeg to /local/usr/bin and i can record with OP,

 i can see the video
 but can't hear any sound,
 what i should take care of?


 2014-09-01 18:05 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 you can copy or make symbolic links to get necessary applications in
 /usr/local/bin/



 On 1 September 2014 22:56, Mark Lin mlin40...@gmail.com wrote:

 Thank you Maxim
  i just finished the ffmpeg installation with sacces.

 and command - cd ~/bin  ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv

 result -

 :~/bin# ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv
 ffmpeg version 2.3.git Copyright (c) 2000-2014 the FFmpeg developers
   built on Sep  1 2014 18:36:06 with gcc 4.4.5 (Debian 4.4.5-8)
   configuration: --prefix=/root/ffmpeg_build
 --extra-cflags=-I/root/ffmpeg_build/include
 --extra-ldflags=-L/root/ffmpeg_build/lib --bindir=/root/bin --enable-gpl
 --enable-libass --enable-libfdk-aac --enable-libfreetype
 --enable-libmp3lame --enable-libopus --enable-libtheora 
 --enable-libvorbis
 --enable-libvpx --enable-libx264 --enable-nonfree
   libavutil  54.  7.100 / 54.  7.100
   libavcodec 56.  1.100 / 56.  1.100
   libavformat56.  3.100 / 56.  3.100
   libavdevice56.  0.100 / 56.  0.100
   libavfilter 5.  0.103 /  5.  0.103
   libswscale  3.  0.100 /  3.  0.100
   libswresample   1.  1.100 /  1.  1.100
   libpostproc53.  0.100 / 53.  0.100
 /root/input.mp4: No such file or directory

 But can't see ffmpeg at /usr/local/bin

 DO I NEED TO COMMAND

 echo MANPATH_MAP $HOME/bin $HOME/ffmpeg_build/share/man 
 ~/.manpath
 . ~/.profile

 Thank you



 2014-09-01 16:20 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 I'm using this guide
 https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu



 On 1 September 2014 21:02, Mark Lin mlin40...@gmail.com wrote:

 Hello
 using VPS - debian-6.0-x86_64

 trying to install ffmpeg according to -
 https://trac.ffmpeg.org/wiki/How%20to%20quickly%20compile%20FFmpeg%20with%20mp3,%20aac%2B%20and%20x264

 Related regulations have been installed without any problem...
 but when make is end I getting ERROR -

  CC  cmdutils.o
 CC  ffmpeg_opt.o
 CC  ffmpeg_filter.o
 LD  ffmpeg_g
 /usr/bin/ld: libavcodec/libavcodec.a(libx264.o): in function
 X264_init:libavcodec/libx264.c:677: error: undefined reference to
 'x264_encoder_open_142'
 collect2: ld returned 1 exit status
 make: *** [ffmpeg_g] Error 1

 i tried several times