

allenchow
uniGUI Subscriber-
Content Count
221 -
Joined
-
Last visited
-
Days Won
3
allenchow last won the day on August 23 2018
allenchow had the most liked content!
Community Reputation
12 GoodAbout allenchow
-
Rank
Advanced Member
Recent Profile Visitors
153 profile views
-
Is it possible to enter emoji from edit and show on HTML ?
-
cannot download file inside cache folders when using hyper server
allenchow replied to allenchow's topic in General
It works ! Thanks ! Previously I put 'msg' and 'text' -
cannot download file inside cache folders when using hyper server
allenchow posted a topic in General
Before using hyper server, I can download a file which was generated by program and store inside cache folder. But now (using hyper server) , it says access denied. Inside the log of hyper server, I found something like this : hyper_server.exe: 00001974: 14:38:52 [HandleFileRequest[192.168.0.134]]:Access denied: G:\WEBERP\cache\weberp_exe\n2\2_2HZl52ZHTv102608721\Tmp_180905143850.506.msg. hyper_server.exe: 00001864: 14:39:14 [HandleFileRequest[192.168.0.134]]:Access denied: G:\WEBERP\cache\weberp_exe\n2\2_2HZl52ZHTv102608721\Tmp_180905143907.866.msg. hyper_server.exe: 00001864: 14:39:20 [HandleFileRequest[192.168.0.134]]:Access denied: G:\WEBERP\cache\weberp_exe\n2\2_2HZl52ZHTv102608721\Tmp_180905143907.866.msg. hyper_server.exe: 0000164C: 14:40:00 [HandleFileRequest[192.168.0.123]]:Access denied: G:\WEBERP\cache\weberp_exe\n0\0_qqxr2uoVKc10260BB25\Tmp_180905143957.937.msg. hyper_server.exe: 00001840: 14:40:17 [HandleFileRequest[192.168.0.123]]:Access denied: G:\WEBERP\cache\weberp_exe\n0\0_qqxr2uoVKc10260BB25\Tmp_180905144004.183.msg. hyper_server.exe: 00001858: 14:42:38 [HandleFileRequest[192.168.0.123]]:Access denied: G:\WEBERP\cache\weberp_exe\n0\0_qqxr2uoVKc10260BB25\Tmp_180905144217.262.msg. hyper_server.exe: 00000BE8: 14:43:12 [HandleFileRequest[192.168.0.250]]:Access denied: G:\WEBERP\cache\weberp_exe\n0\0_qqxr2uoVKc10260BB25\Tmp_180905144217.262.msg. hyper_server.exe: 00001544: 14:47:13 [HandleFileRequest[192.168.0.123]]:Access denied: G:\WEBERP\cache\weberp_exe\n0\0_qqxr2uoVKc10260BB25\Tmp_180905144711.618.msg. hyper_server.exe: 000012EC: 14:48:52 [HandleFileRequest[192.168.0.123]]:Access denied: G:\WEBERP\cache\weberp_exe\n5\5_rxree27e6D10260BD92\Tmp_180905144851.135.msg. Please advice how to fix it ? Thanks p.s. I'm using UniURLFrame -
I think the investment for UNIGUI is really small and worth ! The main concern is Embarcadero Delphi whcih is too expensive !
-
Try using Letsencrypt SSL, it's free. I used it without any problem
-
Auto clear bak files and folder inside hyperserver directory ?
allenchow replied to allenchow's topic in General
OK . Noted -
As subject, will hyperserver clean up all bak files and folders automatically ? Or we need to delete manually by ourselves ? Thanks
-
How do I get all the active sections in Hyper Server?
allenchow replied to eduardosuruagy's topic in General
It should work even the user refresh the browser. I implement it into a table : qysession : procedure TUniMainModule.UniGUIMainModuleCreate(Sender: TObject); var formattedDateTime : String; begin qysession.Open; qysession.append; qysession.FieldByName('ID').AsString := UniSession.SessionId; qysession.FieldByName('IP').AsString := UniSession.RemoteIP; DateTimeToString(formattedDateTime, 'dd/mm/yy hh:nn:ss', UniSession.LastTimeStamp); qysession.FieldByName('logdate').AsString := formattedDateTime; qysession.Post; qysession.Close; end; procedure TUniMainModule.UniGUIMainModuleDestroy(Sender: TObject); begin qysession.Open; if qysession.Locate('ID',UniSession.SessionId,[loCaseInsensitive]) then qysession.delete; qysession.Close; end; -
How do I get all the active sections in Hyper Server?
allenchow replied to eduardosuruagy's topic in General
ANyone can show us an example or demo code for implementing this case ? When I can get session id and his IP when someone is login and quit ? -
Any solution ? 1. for selected color 2. for wordwarp cell
-
Change tabsheet font color with different condition
allenchow replied to allenchow's topic in General
OK ~THX -
Change tabsheet font color with different condition
allenchow replied to allenchow's topic in General
Similar like this one Project1.zip -
Don't know if it relates to this error : WebERP.exe: 00000188: 16:20:11 [indy]:EIdOSSLUnderlyingCryptoError : Error accepting connection with SSL. error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number : Addr: $007BC2C1 But I can connect with HTTPS with no problem.
-
Change tabsheet font color with different condition
allenchow replied to allenchow's topic in General
The latest build. I think the problem is I put the code under a table afterscroll and check the value of current records. Maybe there are too many records inside the table, it gives me the error, and I dound the error contents are very long (with all record datas inside ) !!!