Thank you.
it works

On Fri, Nov 10, 2017 at 8:46 PM, Coscend@OM <[email protected]> wrote:

> Hello Hossein,
>
>
>
> Here are a few pointers:
>
>
>
> In red5.properties, use 80 here to remove 5080 from URL:
>
> http.port=5080
>
>
>
> To remove /om in the URL below, use a proxy server and add a redirect rule
> to redirect requests from
>
> xyz.com/om <http://xyz.com:5080/om> to xyz.com
>
>
>
> Thank you.
>
>
>
> Sincerely,
>
>
>
> Hemant K. Sabat
>
>
>
> Coscend Communications Solutions
>
> www.Coscend.com <http://www.coscend.com/>
>
> ------------------------------------------------------------------
>
> *Real-time, Interactive Video Collaboration, Tele-healthcare,
> Tele-education, Telepresence Services, on the fly…*
>
> ------------------------------------------------------------------
>
> CONFIDENTIALITY NOTICE: See 'Confidentiality Notice Regarding E-mail
> Messages from Coscend Communications Solutions' posted at:
> http://www.Coscend.com/Anchor/Common/Terms_and_Conditions.html
>
>
>
>
>
>
>
>
>
> *From:* Hossein Dehghanpoor [mailto:[email protected]]
> *Sent:* Friday, November 10, 2017 11:00 AM
> *To:* Openmeetings user-list <[email protected]>
> *Subject:* Re: FW: [HELP NEEDED] 4.0.0 release
>
>
>
> and one thing more
>
>
>
> how can i change the port 5080  to 80 and also put the OM in the main
> domain. for example when user enter xyz.com then, OM web page apprears
> instead of entring xyz.com:5080/om
>
>
>
>
>
> On Fri, Nov 10, 2017 at 8:28 PM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> aaaw.
>
> i thought that it is overwritten by the OM
>
> thats okkkk.
>
>
>
>
>
> On Fri, Nov 10, 2017 at 8:20 PM, Maxim Solodovnik <[email protected]>
> wrote:
>
> Change it to be persian :)))
>
>
>
> On Fri, Nov 10, 2017 at 11:12 PM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> it is english
>
>
>
> On Fri, Nov 10, 2017 at 7:00 PM, Maxim Solodovnik <[email protected]>
> wrote:
>
> What is your browser language?
>
>
>
> On Fri, Nov 10, 2017 at 10:25 PM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> hello maxim.
>
> thank you.
>
>
>
>
>
> and there is on more thing.
>
> when i change the default language of the OM to persian which number is
> 21, login page still shows english format (LTR) and after login every thing
> is ok.
>
>
>
>
>
> On Fri, Nov 10, 2017 at 12:48 PM, Maxim Solodovnik <[email protected]>
> wrote:
>
> These items are not designed to be hidden :(
>
> You can hide them as follows
>
>
>
> 1) find the file WelcomeWidgetView.html under OM_HOME/webapps/openmeetings
>
> 2) add style="display:none" to elements you would like to hide
>
> 3) restart OM
>
>
>
>
>
> On Fri, Nov 10, 2017 at 4:10 PM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> Hello Yakovlev and maxim.
>
> thank you for the help.
>
> it works fine and well.
>
>
>
> maxim i have done what you said to hide the elements. what about the texts
> like the picture?
>
> actually i dont want let the users to see or change their profile.
>
>
>
>
>
> [image: Inline image 1]
>
>
>
>
>
>
>
> On Fri, Nov 10, 2017 at 9:23 AM, Yakovlev N. <[email protected]>
> wrote:
>
> The steps in previous post are mistaken…Sorry.
>
> First the config files should be changed and then created the database.
>
> 1.       /etc/my.cnf.d/server.cnf
>
> [mysqld]
>
> ...
>
> innodb_file_per_table    (this option is not relatated to discussed
> question)
>
> skip-character-set-client-handshake
>
> collation-server=utf8_unicode_ci
>
> character-set-server=utf8
>
> 2.       /etc/my.cnf.d/server.cnf/client.cnf
>
> [client]
>
> default-character-set = utf8
>
> 3.       systemctl restart mariadb.service
>
> 4.       enter into mariadb management interface
>
> 5.        CREATE DATABASE db_name DEFAULT CHARACTER SET utf8 COLLATE
> utf8_general_ci;
>
> 6.       GRANT ALL PRIVILEGES ON db_name.* TO 'om_admin'@'localhost'
> IDENTIFIED BY 'om_admin_pass' WITH GRANT OPTION;
>
> 7.       Flush privileges;
>
> 8.       quit; (from mariadb management interface)
>
> 9.       Then install Openmeetings……
>
>
>
> Nik
>
>
>
> *From:* Yakovlev N. [mailto:[email protected]]
> *Sent:* Friday, November 10, 2017 8:33 AM
> *To:* [email protected]
> *Subject:* RE: [HELP NEEDED] 4.0.0 release
>
>
>
> Hello,
>
> I had such problems with characters some time before and ones was fixed by
> the next steps (Centos 7 + mariadb):
>
> 1.        CREATE DATABASE db_name DEFAULT CHARACTER SET utf8 COLLATE
> utf8_general_ci;
>
> 2.       GRANT ALL PRIVILEGES ON db_name.* TO 'om_admin'@'localhost'
> IDENTIFIED BY 'om_admin_pass' WITH GRANT OPTION;
>
> 3.       Flush privileges;
>
> 4.       quit; (from mariadb management interface)
>
> 5.       /etc/my.cnf.d/server.cnf
>
> [mysqld]
>
> ...
>
> innodb_file_per_table    (this option is not relatated to discussed
> question)
>
> skip-character-set-client-handshake
>
> collation-server=utf8_unicode_ci
>
> character-set-server=utf8
>
> 6.       /etc/my.cnf.d/server.cnf/client.cnf
>
> [client]
>
> default-character-set = utf8
>
> 7.       systemctl restart mariadb.service
>
> 8.       Then install Openmeetings……
>
> Maybe this will help you.
>
>
>
> Best regards,
>
> Nik
>
>
>
> *From:* Hossein Dehghanpoor [mailto:[email protected]
> <[email protected]>]
> *Sent:* Friday, November 10, 2017 12:22 AM
> *To:* Openmeetings user-list
> *Subject:* Re: [HELP NEEDED] 4.0.0 release
>
>
>
> Hello maxim
>
> here is my founds.
>
> i have worked on what you said. and i converted that db to use utf8.
>
> there is no problem with characters until you restart the red5-2 service.
>
>
>
> after the restart every thing is shown like " ???? "
>
> here is my db, open331 which supports utf8.
>
> [image: Inline image 1]
>
>
>
> On Tue, Nov 7, 2017 at 4:57 AM, Maxim Solodovnik <[email protected]>
> wrote:
>
> AFAIR for Maria DB you need to change some config file for UTF8 support
>
> could you please search mailing lists?
>
>
>
> for MySql I'm using
>
> CREATE DATABASE openmeetings DEFAULT CHARACTER SET utf8 COLLATE
> utf8_general_ci;
>
>
>
> and its enough
>
>
>
>
>
> On Tue, Nov 7, 2017 at 4:11 AM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> and whats your idea about this?
>
> https://stackoverflow.com/questions/910793/detect-
> encoding-and-make-everything-utf-8
>
>
>
> On Tue, Nov 7, 2017 at 12:39 AM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> hi dear maxim
>
> i have double checked the encoding.
>
> here is the results
>
> do you see any problem in it?
>
>
>
> [image: Inline image 1]
>
>
>
> On Mon, Nov 6, 2017 at 10:15 PM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> hello.
>
> ok then
>
> i will double check it.
>
>
>
> On Sunday, November 5, 2017, Maxim Solodovnik <[email protected]>
> wrote:
>
> This is definitely DB issue
>
> You need to double-check all db related stuff
>
> WBR, Maxim
> (from mobile, sorry for the typos)
>
>
>
> On Nov 5, 2017 18:29, "Hossein Dehghanpoor" <[email protected]>
> wrote:
>
> hello maxim. i am using exactly what you have said in installation guide.
>
> im using mysql and of course i created a db with utf8 support
>
> i dont know why this is happening.
>
> On Sunday, November 5, 2017, Maxim Solodovnik <[email protected]>
> wrote:
>
> Hello,
>
>
>
> Your issue with name as "????" is caused by DB
>
> DB should be created in UTF8 encoding
>
> Which DB are you using?
>
>
>
> You can hide elements by modifying CSS file
>
> for ex. as described here: http://openmeetings.apache.org/themes-and-
> branding.html#Creating_custom_CSS_file
>
>
>
> On Sun, Nov 5, 2017 at 1:58 AM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> and am i able to hide the elements like "contacts and messages" ,
> "Profile" , "report bug" which are located at "top links" ?
>
>
>
> On Sat, Nov 4, 2017 at 9:33 PM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> hello maxim,
>
> recently i have noticed a problem.
>
> when i save my name in persian, after i logged out and login againg my
> name was converted to just question mark" ???????".
>
>
>
>
>
> On Thu, Oct 12, 2017 at 9:52 AM, Maxim Solodovnik <[email protected]>
> wrote:
>
> Just have checked the code of the red5-shutdown.sh
>
> You can run it with "force" parameter, to kill all running instances
>
>
>
> On Thu, Oct 12, 2017 at 12:59 PM, Maxim Solodovnik <[email protected]>
> wrote:
>
> Hello Hemant,
>
>
>
> I'm not using this script ....
>
> So I have no idea ...
>
>
>
> On Thu, Oct 12, 2017 at 12:49 PM, Coscend@OM <[email protected]>
> wrote:
>
> Dear Maxim,
>
>
>
> We are also receiving the following error on passing shutdown command
> ./red5-shutdown.sh.  No customizations.  Are we doing something different
> from what it is expecting?
>
>
>
> Running on  Linux
>
> Starting Red5
>
> Exception connecting to 127.0.0.1
>
> java.net.ConnectException: Connection refused (Connection refused)
>
>         at java.net.PlainSocketImpl.socketConnect(Native Method)
>
>         at java.net.AbstractPlainSocketImpl.doConnect(
> AbstractPlainSocketImpl.java:350)
>
>         at java.net.AbstractPlainSocketImpl.connectToAddress(
> AbstractPlainSocketImpl.java:206)
>
>         at java.net.AbstractPlainSocketImpl.connect(
> AbstractPlainSocketImpl.java:188)
>
>         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
>
>         at java.net.Socket.connect(Socket.java:589)
>
>         at java.net.Socket.connect(Socket.java:538)
>
>         at java.net.Socket.<init>(Socket.java:434)
>
>         at java.net.Socket.<init>(Socket.java:211)
>
>         at org.red5.server.Shutdown.main(Shutdown.java:50)
>
>
>
>
>
> Thank you.
>
>
>
> Sincerely,
>
>
>
> Hemant K. Sabat
>
>
>
> Coscend Communications Solutions
>
> www.Coscend.com <http://www.coscend.com/>
>
> ------------------------------------------------------------------
>
> *Real-time, Interactive Video Collaboration, Tele-healthcare,
> Tele-education, Telepresence Services, on the fly…*
>
> ------------------------------------------------------------------
>
> CONFIDENTIALITY NOTICE: See 'Confidentiality Notice Regarding E-mail
> Messages from Coscend Communications Solutions' posted at:
> http://www.Coscend.com/Terms_and_Conditions.html
> <http://www.coscend.com/Terms_and_Conditions.html>
>
>
>
>
>
>
>
>
>
> *From:* Maxim Solodovnik [mailto:[email protected]
> <[email protected]>]
> *Sent:* Thursday, October 12, 2017 12:23 AM
> *To:* Tom Judge <[email protected]>
> *Cc:* Openmeetings user-list <[email protected]>
>
>
> *Subject:* Re: [HELP NEEDED] 4.0.0 release
>
>
>
> Hello All,
>
>
>
> It seems I was able to find one Blocker issue :(((
>
> Office documents and saved Whiteboards will be broken after backup import
> :(((
>
>
>
> Going to check it and write some tests :(((
>
>
>
> On Thu, Oct 12, 2017 at 4:44 AM, Tom Judge <[email protected]>
> wrote:
>
> I thought I was registered as [email protected] but my post bounced
>
>
>
>
>
>
>
> Sent from my T-Mobile 4G LTE Device
>
>
>
> -------- Original message --------
> From: Maxim Solodovnik <[email protected]>
> Date: 10/09/2017 10:47 PM (GMT-05:00)
> To: Openmeetings user-list <[email protected]>
> Subject: Re: [HELP NEEDED] 4.0.0 release
>
> Hello Tom,
>
>
>
> As Hemant already wrote here: http://markmail.org/message/iask6y67xebyjwbh
>
> The only thing you need to to to start new topic: Change the subject :)))
>
>
>
> It is good idea to create subject the way other can easily guess what it
> is about.
>
>
>
> Topics like "OM error" are too gheneric
>
> Better to create more descriptive topic like "OM 4.0.0 Whiteboard error
> for external user" :)
>
>
>
> On Tue, Oct 10, 2017 at 12:06 AM, Tom Judge <[email protected]> wrote:
>
> What is the proper way to0 address a new topic to this list please???
>
>
>
> On 10/09/2017 04:12 AM, Maxim Solodovnik wrote:
>
> Just have tried with following steps:
>
>
>
> 1) login as admin user with english language
>
> 2) open language editor, selected Persian language
>
> 3) change Label with ID 286: have entered following copy/pasted string
> instead of "Project website"
> *تركيا والولايات <http://www.bbc.com/arabic/middleeast-41547700>*
>
>
>
> 4) logout
>
> 5) login as user with Persian language
>
>
>
> Arabic string look to me the same (Chrome browser) ...
>
> Additionally I have checked Application_fa.properties.xml (with vim Linux
> text editor), the string also displayed as above
>
>
>
> What am I doing wrong?
>
>
>
>
>
> On Mon, Oct 9, 2017 at 2:45 PM, Maxim Solodovnik <[email protected]>
> wrote:
>
> Can I use copy/paste from here: http://www.bbc.com/arabic to test it?
>
> Is it reproducible if user with RTL language is used to change the labels?
>
>
>
> Thanks a lot for testing :))
>
>
>
> On Mon, Oct 9, 2017 at 2:40 PM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> Hi maxim
>
>
>
> ok as you said, when i change the labels in "Application_fa.properties.xml"
> all things will be right (I usded Notepad++ to edit the file).
>
>
>
> the only problem is when you are using language editor (menu ->
> administration -> language editor) to edit the labels. all labels are saved
> in reversed order.
>
>
>
> On Mon, Oct 9, 2017 at 10:49 AM, Maxim Solodovnik <[email protected]>
> wrote:
>
> Hello Hossein,
>
>
>
> I would like to clarify :)
>
> Can I "reverse" all text labels in Application_fa.properties.xml ? i.e.
> all labels with arabic letters will be modified. Could you check this file
> as soon as this will be done?
>
>
>
> According to "menu -> administration -> language editor"
>
> Am I right thinking labels manually entered in Admin are also being
> "reversed"?
>
>
>
> What GUI language are you using while editing labels?
>
>
>
> On Mon, Oct 9, 2017 at 12:43 PM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> hi
>
> regarding to the first question, yes all labels are reverted in
> application_fa.properties.xml .
>
>
>
> note that I myself had translated some labels through the menu ->
> administration -> language editor, but the result is reverted labels.
>
>
>
> let me to check more for you second question.
>
> thank you.
>
>
>
> On Sat, Oct 7, 2017 at 12:59 PM, Maxim Solodovnik <[email protected]>
> wrote:
>
> Thanks for checking :)
>
> Could you please check if labels are not reverted in language file:
> https://github.com/apache/openmeetings/blob/master/openmeetings-web/src/
> main/java/org/apache/openmeetings/web/app/Application_fa.properties.xml ?
>
>
>
> In on of the previous versions we have updated dashboard work as expected
> with RTL languages, but Room was not checked :((
>
> Is it OK? or maybe some elements and badly positioned?
>
>
>
>
>
> On Sat, Oct 7, 2017 at 4:10 PM, Hossein Dehghanpoor <
> [email protected]> wrote:
>
> dear maxim
>
> i hope you the bests/
>
> here is a issue with rtl css.
>
> when i change the language to persian (which needs rtl css) all things go
> right (like menu position,text position and etc) except the language typo.
>
> to make it clear, see the screen shot.
>
> as you can see, texts are written vice a versa.
>
> texts should be written from right to left.
>
> thank you
>
>
>
>
>
> On Sat, Sep 30, 2017 at 7:22 AM, Maxim Solodovnik <[email protected]>
> wrote:
>
> Mobile client is available on google play :)
>
> 4.0.0 is not released this is why it is not listed
>
> The main changes are: the whiteboard is in html5, amount of flash
> components is greatly reduced.
>
> You can check it it using our demo server :)
>
> WBR, Maxim
> (from mobile, sorry for the typos)
>
>
>
> On Sep 30, 2017 10:45, "Robert Cooley" <[email protected]> wrote:
>
> I want to see full list of features in OM 4.
> 1) Mobile Client
> 2) Whiteboard
>
> https://openmeetings.apache.org/   Shows new features for 3.3.2, but
> there is nothing I can find with the features in 4.0..
>
> On 9/30/2017 9:40 AM, Maxim Solodovnik wrote:
>
> Hello Robert,
>
> I'm afraid I don't get your question :(
> Could you please re-phrase it?
>
> On Sat, Sep 30, 2017 at 7:53 AM, Robert Cooley <[email protected]
> <mailto:[email protected]>> wrote:
>
>     I would be interested in an up to list of all features but I can
>     find no mention of om 4 on the website..
>
>     Thanks in advance
>
>
>     On 9/30/2017 1:46 AM, Hossein Dehghanpoor wrote:
>
>         Hi
>         does OM have mobile client?
>         if yes, what is that?
>
>
>
>
> --
> WBR
> Maxim aka solomax
>
>
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
> ------------------------------
>
> [image: AVG logo] <http://www.avg.com/internet-security>
>
> This email has been checked for viruses by AVG antivirus software.
> www.avg.com <http://www.avg.com/internet-security>
>
>
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
>
>
> --
>
> WBR
> Maxim aka solomax
>
>
>
>
>
>
> ------------------------------
> [image: AVG logo] <http://www.avg.com/internet-security>
>
> This email has been checked for viruses by AVG antivirus software.
> www.avg.com <http://www.avg.com/internet-security>
>
> <#m_8022308864546854432_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>

Reply via email to