• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. Jenny
    3. Topics

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 10
    • Posts 21
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by Jenny

    • J

      Failed to send email via SMTP

      User help
      • • • Jenny
      2
      0
      Votes
      2
      Posts
      484
      Views

      J

      Hi!

      This issue was solved today.
      The Exchange 2016 server opened port 25 with TLS.
      Tested mail was sent success.

    • J

      Store account password reset

      User help
      • • • Jenny
      2
      0
      Votes
      2
      Posts
      962
      Views

      phildunlapP

      Hi Jenny,

      I have sent you an email about this. For license and accounts issues, we prefer to conduct those via email.

    • J

      How to set a datapoint value by XID ?

      User help
      • mangoapi • • Jenny
      9
      0
      Votes
      9
      Posts
      3.1k
      Views

      phildunlapP

      It should, but it doesn't look like it does in all cases. For instance, scripting appears to, but meta data points don't. I will bring this up, thanks for bringing it to our attention.

    • J

      Mango V3 Navigation sidebar menu switching error

      User help
      • • • Jenny
      6
      0
      Votes
      6
      Posts
      2.3k
      Views

      J

      @Jared-Wiltshire Thak you for kindly reply.
      I'll recheck the pages HTML <html> or <head> tags.
      And try to decrease additional JavaScript.
      Fix to load font awesome of same versions in different places.

    • J

      MangoES covert Database from H2 to mysql?

      User help
      • • • Jenny
      3
      0
      Votes
      3
      Posts
      1.8k
      Views

      JoelHaggarJ

      Also, If you are trying to access historical data via MySQL you would need to also uninstall the Mango NoSQL modules. On the MangoES and Enterprise Mango the historical data is stored in the NoSQL database which is separate. Here is a follow up video that explains more: https://help.infiniteautomation.com/support/solutions/articles/14000022517-enterprise-nosql-database

      Note that by removing the NoSQL module you will not have access to your existing history. Also the MangoES will lose performance because MySQL is not as efficient at storing and retrieving time series data.

    • J

      IPv6 & IPv4

      User help
      • • • Jenny
      4
      0
      Votes
      4
      Posts
      2.5k
      Views

      J

      Hello Phildunlap,

      Thanks for kindly reply.
      I have disable IPv6 in webmin.
      webmin capture
      In MangoES system configure page eth0 IPv4 shows ip in IPv6 style.
      configure ip capture

    • J

      Send Email and SMS on alert issue

      Mango Automation general Discussion
      • • • Jenny
      2
      0
      Votes
      2
      Posts
      2.1k
      Views

      phildunlapP

      Hi Jenny,

      If I'm understanding you correctly, you would like to only send messages for certain values and conditions. This can be accomplished by using a Script, and then using points on the Scripting Data Source as output for the publisher. So your script could be...
      AutoWindowDoorController - Windows1Status ==> context point p

      if( p.value == 1 && !alarmActive.value ) {
      publishAlarm.set(true);
      alarmActive.set(true);
      } else if( p.value != 1 ) {
      alarmActive.set(false);
      }

      And create a settable, binary point called 'publishAlarm' on the script and publish it instead. Have a second settable binary point called alarmActive, to prevent updating the published point each time the script runs. The Twilio publisher was envisioned working with a Meta Point or a script, which is why there are the features to do multiple replacements as suggested in the Twilio Publisher's help documents.

      I removed your image so that the settings for your Twilio account aren't visible to everyone wandering by. The "Type" column is a read-only display of what module the point comes from. It looks like I may need to check that it's still working.....

    • J

      Modbus RTU

      User help
      • • • Jenny
      5
      0
      Votes
      5
      Posts
      2.1k
      Views

      jeremyhJ

      What is your device?

      "Modbus TCP" and "Modbus RTU over TCP" are actually two different things.

    • J

      How to upgrade core on MangoES?

      MangoES Hardware
      • • • Jenny
      14
      0
      Votes
      14
      Posts
      6.4k
      Views

      J

      Hi Joel,

      Thank you for kindly reply.

      This is work, this solved SNMP issue.