Jump to content

donlego

uniGUI Subscriber
  • Posts

    231
  • Joined

  • Last visited

Posts posted by donlego

  1. On 5/21/2020 at 3:55 PM, wkotze said:

    any news on this

    hello i found the way  just empty your ulr href like this

    image.png.738b2b89eab4a064b9e906fef4b36ec2.png 

    replace server message on server module & mainmodule

  2. On 5/16/2020 at 1:42 PM, wkotze said:

    Hi Sherzod,  on session  terminate i want go the user a link to log back in with his url parameters

    if session started with  http:/ip/?prodid=100,  on session terminate i watn to hoew messgae : "Terminated, click here to return to http:/ip/?prodid=100"
    if session started with  http:/ip/?prodid=200,  on session terminate i watn to hoew messgae : "Terminated, click here to return to http:/ip/?prodid=200"
    if session started with  http:/ip/?prodid=300,  on session terminate i watn to hoew messgae : "Terminated, click here to return to http:/ip/?prodid=300"

    The maninmodule. servermessages is howver ingonred, and the servermodule.servermessages  is displayed

     

    termmsg.dpr

    i need the solution to ,for this case

  3. helo how to get the label of series on unichart click

    i want to get the label on the series

    ex :

    0-30 hari

    31-60

    61-90

    >90

     

    i use this event, but just get value of the series, i want to get the label of the series

    procedure TFrmDefaultList.chartnya_listSeriesClick(Sender: TUniCustomChart;
      Series: TUniChartSeries; Index: Integer; Value: Variant;
      X, Y, PageX, PageY: Integer);

    begin

    showmessage(vartostr(value));


    end;

     

     

    Untitled.png

  4. 17 minutes ago, andyhill said:

    I have found that StandAlone MOBILE webapps do not honour ServerModule timings so as a work around I catch the MainModule Session TimeOut Event and extend it by 3 minutes (forever). 

    i still need  session expire / timeout ,

    my app limiting the user count acces , so if the user session never expire it can be problem to other user who want to login to the app

  5. 19 minutes ago, Sherzod said:

    Sorry, it’s not very clear to me what you are asking.

    Please make a simple testcase by specifying what should work and how?

    step :

    1. on the browser url type  localhost:8077/?cust_id=1000

    2. try move the form until the session timeout (+-1 second)

    3. click the restart application link

    the url i want back like first 1 opened the url

    localhost:8077/?cust_id=1000

    when user clikc restart application

     

    session.rar

  6. On 10/9/2019 at 7:45 PM, jahlxx said:

    I have some apps in same server without problem.

    My Alias lines are similar to yours, bat have some diferences.

    You can try the way that I do, perhaps works for you:

    Alias /my_app_1 "C:/my_app_1"
    Alias /my_app_2 "C:/my_app_2"

     

    If don't work, try this:

     

    <Directory "C:/my_app_1">
        Options FollowSymLinks ExecCGI
        AllowOverride None
        Order allow,deny
        Allow from all
        DirectoryIndex hyper_app.dll
    </Directory>
    Alias /my_app_1 "C:/my_app_1"

    <Directory "C:/my_app_2">
        Options FollowSymLinks ExecCGI
        AllowOverride None
        Order allow,deny
        Allow from all
        DirectoryIndex hyper_app.dll
    </Directory>
    Alias /my_app_2 "C:/my_app_2"

     

    I hope this helps.

     

    hello jahlxx

    image.png.e7e49b05ed14e1f3f3a73c44bd435679.png

    the app url is work but the server url is not work with error object is not found

    i try both url

    ip_address/my_app_1/server

    ip_address/my_app_2/server

    is there any miss configuration ?

  7. 13 hours ago, jahlxx said:

    I have some apps in same server without problem.

    My Alias lines are similar to yours, bat have some diferences.

    You can try the way that I do, perhaps works for you:

    Alias /my_app_1 "C:/my_app_1"
    Alias /my_app_2 "C:/my_app_2"

     

    If don't work, try this:

     

    <Directory "C:/my_app_1">
        Options FollowSymLinks ExecCGI
        AllowOverride None
        Order allow,deny
        Allow from all
        DirectoryIndex hyper_app.dll
    </Directory>
    Alias /my_app_1 "C:/my_app_1"

    <Directory "C:/my_app_2">
        Options FollowSymLinks ExecCGI
        AllowOverride None
        Order allow,deny
        Allow from all
        DirectoryIndex hyper_app.dll
    </Directory>
    Alias /my_app_2 "C:/my_app_2"

     

    I hope this helps.

     

    hello jahlxx

    its work thank you jahlxx
     

×
×
  • Create New...