manjey73

Forum Replies Created

Viewing 15 posts - 271 through 285 (of 974 total)
  • Author
    Posts
  • in reply to: Daily Archive #16007
    manjey73
    Participant

    It seems to me that this is impossible. Most likely, this is how the regular table plugin works. Which can show columns of the selected time period only for one day, while reading archives only from the Sentinel.

    That is, in principle, he will not be able to make 30 or 31 columns based on the number of days in the current month. (or 28, 29 if the month is February)

    in reply to: Daily Archive #15999
    manjey73
    Participant

    The project is not downloading. It leads nowhere. Can you put it on some kind of Google drive and give it a link?

    in reply to: Daily Archive #15990
    manjey73
    Participant

    The server is running in UTC time, your time corresponds to UTC, maybe that’s the reason?
    Can you upload a primitive project with settings?.

    sometimes I don’t understand how it works either, I have to constantly calculate the time in my head 🙂

    in reply to: Daily Archive #15984
    manjey73
    Participant

    Share the table settings, how did you create the column in just one day?
    It’s interesting to try. Perhaps the regular tables plugin itself can’t do this and you need another plugin?

    in reply to: Daily Archive #15982
    manjey73
    Participant

    It’s not entirely clear what you want. Should I write the amount for that day in the cell of the Daily Database, or just the current value of the specified day?

    in reply to: HTTP Error 404.0 – Not Found #15955
    manjey73
    Participant

    IIS runtime support (ASP.NET Core Module v2) Check that the module is installed

    You need a Hosting Bundle
    and
    .NET Runtime 8.0.11

    in reply to: HTTP Error 404.0 – Not Found #15952
    manjey73
    Participant

    Do you have the version 2 module for IIS installed?

    Well, you have installed the necessary component for the WEB from ASP.NET ?

    in reply to: No sign-in #15950
    manjey73
    Participant

    The administrator account allows you to send commands and sees all the views.

    in reply to: HTTP Error 404.0 – Not Found #15949
    manjey73
    Participant

    in version 6, you don’t need to write /scada

    or just localhost or specifying the default port 10008

    in reply to: No sign-in #15945
    manjey73
    Participant

    Do I set up autologin in the SacadWeb instance settings?

    in reply to: Daily Data #15943
    manjey73
    Participant

    https://ibb.co/8290Y5J

    By default, the table takes data from a minute archive, perhaps choosing an archive will help in this case.

    You also need to set up Graph calls for this archive.

    • This reply was modified 1 year, 8 months ago by manjey73.
    in reply to: How to know the network connection status of a device #15929
    manjey73
    Participant

    Sorry – For the Divice – service Tag code – Status

    in reply to: How to know the network connection status of a device #15926
    manjey73
    Participant

    For the user, this is the service code of the tag – Status
    Create a channel with this tag code.

    Where the value 0 = Normal, 1 = Error

    There is no equivalent for Communication Lines in the current version yet, if I’m not mistaken.

    in reply to: InitScripts() use #15916
    manjey73
    Participant

    Just create your own formula in the script table, in which you can initialize any variables.
    I was doing something similar to version 5 to simulate non-volatile variables through files.
    In a simple version, it looks like this

    bool initVal = false;
    public double InitValues()
    {
    if (!initVal)
    {
    SetData(1153, 0, 1);
    SetData(1154, 0, 1);
    SetData(1155, 0, 1);
    SetVal(1031, 0);
    SetVal(1032, 1);
    initVal = true;
    }
    return Convert.ToDouble(initVal);
    }

    And most importantly, place the channel with the call of this formula at the very first in the channel database.
    Moreover, the formulas in the channels themselves can be any.

    in reply to: InitScripts() use #15915
    manjey73
    Participant

    I checked, there are no errors during compilation, but it seems to me that you are trying to use an internal formula even before the server starts processing formula data. Most likely InitScripts is intended for other things.

Viewing 15 posts - 271 through 285 (of 974 total)