91
Web Server - Ask For Help / web26 example File Upload
« Last post by Richard I on March 13, 2025, 07:08:14 PM »When running the example" File Upload" ,The message box is telling me on "Start" that the nominated file is Uploaded and displays its size,
and for a larger file I can see the progress bar.
The file is not being uploaded to the webserver\uploads
In the webserver settings Scripts tab I have "File Upload" Ticked, ran Gzipall from here OK compiled and run
What am I missing please?
Thanks
Richard NT 14.28
and for a larger file I can see the progress bar.
The file is not being uploaded to the webserver\uploads
In the webserver settings Scripts tab I have "File Upload" Ticked, ran Gzipall from here OK compiled and run
What am I missing please?
Thanks
Richard NT 14.28
92
Web Server - Ask For Help / Re: reload page before or after an alert message
« Last post by hectorp on March 13, 2025, 02:21:02 PM »Hi Bruce,
Never mind. I have two page headers and two footers in my application. One set is for when the user is not logged in and the other set for when the user is logged in.
I change the approach leaving one header and one footer and place a condition to display buttons and text depending on when the user is logged in or when is logged out.
Never mind. I have two page headers and two footers in my application. One set is for when the user is not logged in and the other set for when the user is logged in.
I change the approach leaving one header and one footer and place a condition to display buttons and text depending on when the user is logged in or when is logged out.
93
Web Server - Ask For Help / Re: Error code: SSL_ERROR_NO_CYPHER_OVERLAP
« Last post by rjolda on March 13, 2025, 03:25:47 AM »HI All,
Got my keys mixed up. Squared them away and now running!
ROn
Got my keys mixed up. Squared them away and now running!
ROn
94
Web Server - Ask For Help / Wrong encoding of text on maps
« Last post by Poul Jensen on March 13, 2025, 12:10:59 AM »Hi,
In Webserver procedure, Webserver settings, General I have this to correctly work with the tables in the database that is shared with a desktop app:
Charset: utf-8
Store data as: Scandinavian (windows 1252)
But on the map, the tooltip text is wrong. See attached image.
The table containing the points are dynamically filled, so I thought I could encode the textfield there, so it would show properly. But no luck so far.
Any ideas most welcome.
tia
/Poul
In Webserver procedure, Webserver settings, General I have this to correctly work with the tables in the database that is shared with a desktop app:
Charset: utf-8
Store data as: Scandinavian (windows 1252)
But on the map, the tooltip text is wrong. See attached image.
The table containing the points are dynamically filled, so I thought I could encode the textfield there, so it would show properly. But no luck so far.
Any ideas most welcome.
tia
/Poul
95
Web Server - Ask For Help / Re: NT Maps - update calling different table/record
« Last post by Poul Jensen on March 12, 2025, 01:06:19 PM »Hi Alberto,
Thanks - I am aware of those settings, but I need to update the related record (job card) and not the record with the point.
Normally the code would be something like this:
I have made a Memory Form with above code in the Beginning of Procedure/ After opening files embed.
The UpdateMobsagH procedure is the only field on the Memory form.
The correct job record is located, but the form opens up empty.
I must be missing something.....
Or the approach using the Memory form like this is wrong ?
Thanks - I am aware of those settings, but I need to update the related record (job card) and not the record with the point.
Normally the code would be something like this:
Code: [Select]
!Load the map point record:
Access:MobHEREmap.ClearKey(Mmap:KeyGUID)
Mmap:GUID = p_web.GSV('Mmap:GUID')
IF Access:MobHEREmap.TryFetch(Mmap:KeyGUID)
!failed
ELSE
!Load the job-card record
Access:MobSagH.ClearKey(MSagH:KeyGUID)
MSagH:GUID = Mmap:ID
NOMEMO(MobSagH)
IF Access:MobSagH.TryFetch(MSagH:KeyGUID)
!failed
ELSE
!Set the GUID for the update procedure:
p_web.SSV('MSagH:GUID', MSagH:GUID)
END
END
I have made a Memory Form with above code in the Beginning of Procedure/ After opening files embed.
The UpdateMobsagH procedure is the only field on the Memory form.
The correct job record is located, but the form opens up empty.
I must be missing something.....
Or the approach using the Memory form like this is wrong ?
96
Web Server - Ask For Help / Re: NT Maps - update calling different table/record
« Last post by Alberto on March 12, 2025, 10:07:21 AM »See pic
97
Web Server - Ask For Help / Error code: SSL_ERROR_NO_CYPHER_OVERLAP
« Last post by rjolda on March 12, 2025, 09:06:48 AM »HI All,
Using NT 14.21 and Clarion 11.0.136
I have a valid SSL certificate by Go Daddy on my server.
All of a sudden my server is giving the following error: Error code: SSL_ERROR_NO_CYPHER_OVERLAP
I can RDP into my server and NT app is running and listening on port 447
I checked my firewall and app is set to go through firewall.
What might be going on?
Thanks,
Ron
Using NT 14.21 and Clarion 11.0.136
I have a valid SSL certificate by Go Daddy on my server.
All of a sudden my server is giving the following error: Error code: SSL_ERROR_NO_CYPHER_OVERLAP
I can RDP into my server and NT app is running and listening on port 447
I checked my firewall and app is set to go through firewall.
What might be going on?
Thanks,
Ron
98
Web Server - Ask For Help / Re: NT Maps - update calling different table/record
« Last post by Poul Jensen on March 12, 2025, 07:46:16 AM »Hi Alberto,
So in that form - a memory form I guess - would I be able to locate the record in the points table, use the ID for the related table, lookup that record and finally call the related tables updateform?
In the desktop version it is all very simple, since there is an embed "MapClicked Procedure", but no such embed in the NT version of the map.
So how would I achieve this?
tia
/Poul
So in that form - a memory form I guess - would I be able to locate the record in the points table, use the ID for the related table, lookup that record and finally call the related tables updateform?
In the desktop version it is all very simple, since there is an embed "MapClicked Procedure", but no such embed in the NT version of the map.
So how would I achieve this?
tia
/Poul
99
Web Server - Ask For Help / Re: NT Maps - update calling different table/record
« Last post by Alberto on March 12, 2025, 06:48:38 AM »Hi, if I understand you... clicking on a pointer you can open a form, with this form you can do what you want.
100
Web Server - Ask For Help / NT Maps - update calling different table/record (RESOLVED)
« Last post by Poul Jensen on March 12, 2025, 12:50:11 AM »Hi,
I fill the points table to be shown in a NT map dynamically.
When user clicks a pointer on the map, I need to update a record from a related table, and not the point record itself.
Is this possible?
tia
/Poul
I fill the points table to be shown in a NT map dynamically.
When user clicks a pointer on the map, I need to update a record from a related table, and not the point record itself.
Is this possible?
tia
/Poul