Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12099
  • Joined

  • Last visited

  • Days Won

    801

Everything posted by Farshad Mohajeri

  1. You must put PDF file either under application files folder or application cache folder. Please see our PDFViewer demo.
  2. Hi, These paths are automatically added by the installer.
  3. It depends on account your app is running. There is no difference between a unigui app & other Delphi apps. For Windows Service and IIS ISAPI check the account which is used to run your app. For example, normally it is Local System for Windows Services.
  4. It is Delphi behavior. The last added unit will take precedence. You must make sure VCL.Graphics is added after Windows unit in your Units list.
  5. Please specify the media you have used to install RAD Studio. Have you used the official ISO or the Web installer?
  6. Hi, As soon as you run HyperServer it will automatically update the build number in the CFG file.
  7. Make sure your D12 version is the latest release published by Embarcadero.
  8. package uniTools29; {$R *.res} {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} {$ALIGN 8} {$ASSERTIONS OFF} {$BOOLEVAL OFF} {$DEBUGINFO OFF} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS OFF} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION ON} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO OFF} {$SAFEDIVIDE OFF} {$STACKFRAMES OFF} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DEFINE RELEASE} {$ENDIF IMPLICITBUILDING} {$DESCRIPTION 'FMSoft uniTools Library'} {$RUNONLY} {$IMPLICITBUILD OFF} requires rtl {$ifndef MSWINDOWS} ,uniPlatform {$endif} ; contains {$ifdef MSWINDOWS} InstDecode in 'InstDecode.pas', CPUID in 'CPUID.pas', DDetours in 'DDetours.pas', {$endif} uniStrUtils in 'uniStrUtils.pas', uniWinUtils in 'uniWinUtils.pas', uniLogger in 'uniLogger.pas', uniStreamer in 'uniStreamer.pas', uniSimpleEnc in 'uniSimpleEnc.pas', uniDateUtils in 'uniDateUtils.pas', uniZLibExApi in 'uniZLibExApi.pas', uniZLibEx in 'uniZLibEx.pas'; end. Hello, The DPK file for uniTools29 library should look like this.
  9. Thanks Marlon. Another new feature is that you can have separate Persistent Nodes for each application to perform background tasks specifics to that application.
  10. Our license terms don't allow this. I wanted to admire your work, but I can not do that because you are using a pirated copy to develop your applications.
  11. It seems that slow down occurs when peak request is above 300. It indicates that requests are coming faster than the speed system can process them. It can be the database back-end which is not able process too many concurrent requests as fast as it must be done.
  12. It can happen when incoming traffic is faster than what your system can handle in a timely manner. Looking at above attached pic I can say that Idle Secs is always 0 which means there's a fast rate of incoming requests which means server and the related DB services never become idle. Can you also send the SS of the Resources tab?
  13. We use the official version from Indy's official repository. It can be the problem because there is no indication that it is a finished and working TLS 1.3 port.
  14. Yes, but it is not an official Indy patch.
  15. It may be a momentary observation. Please continue observation and see if it is the case. Thanks
  16. Hello, Thank you for your interest in uniGUI. Regarding your request please send us an email to orders@fmsoft.net.
  17. 1,800,000 = 1800 secs = 30 minutes It is too high! Please set to a value no longer than 3 minutes. Unless you have a reason for such a long Ajax request timeout.
  18. [172.68.191.153,191.253.106.125] In logs there are two IP addresses. First one is the Remote IP address and the 2nd one is the Forwarded IP address of the client. It shows that server is behind a proxy server. Maybe it is the proxy server that causes these issues.
×
×
  • Create New...