NetTalk Central

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - osquiabro

Pages: [1] 2 3 ... 47
1
I have a button that rotate a image with ImageEx
 
If ThumbImage.iImage.Load(p_web.GSV('Loc:Path'))
    ThumbImage.iImage.Rotate(90)
    Loc:GuidFoto = st.MakeGuid() 
    ThumbImage.iImage.SaveAs(st.PathOnly(p_web.GSV('Loc:Path'))&'\'& clip(Loc:GuidFoto)&'.'&st.ExtensionOnly(p_web.GSV('Loc:Path')) )
    Loc:Path = st.PathOnly(p_web.GSV('Loc:Path'))&'\'& clip(Loc:GuidFoto)&'.'&st.ExtensionOnly(p_web.GSV('Loc:Path'))
    p_web.ssv('Loc:Path',Loc:Path)
    p_web.SetSessionValue('_save_Loc:Path',Loc:Path) 
    p_web.SaveFileToSession('Loc:Path','Mem:Foto')
   
   
End
loc:st_filename = '/uploads/'&clip(Loc:GuidFoto)&'.'&st.ExtensionOnly(p_web.GSV('Loc:Path'))
p_web.ssv('loc:st_filename',loc:st_filename)

2
Web Server - Ask For Help / Re: Refresh NWB Header
« on: April 30, 2025, 08:20:44 AM »
in GotFocusBack refresh your value or send to a routine that recalculate and then refresh,

other options in Reset other fields in your browse inside the memory form reset yor values

3
Web Server - Share Knowledge / reCAPTCHA v3 with NT
« on: April 29, 2025, 05:42:09 AM »
Hello, this is a small example to add reCAPTCHA v3 on NT, the .ini files must be copied to the web folder. And remeber change in the ini file with your secret key provide by reCAPTCHA, and only work with https

4
Web Server - Ask For Help / Re: Refresh NWB Header
« on: April 29, 2025, 04:37:26 AM »
I always use that approach that mention Alberto

5
Web Server - Ask For Help / Re: LetsEncrypt Certificate not auto renewing
« on: February 19, 2025, 05:11:53 AM »
I have always had this problem when it runs as a service and i have never found a solution, even when i have an account assigned with administrator privileges to the service.

6
Web Server - Ask For Help / Re: NT and Sftp?
« on: February 14, 2025, 04:31:14 AM »
Thanks, and yes, libcurl works with sftp, but just  of curiosity why is NT not supported sftp?

7
Web Server - Ask For Help / NT and Sftp?
« on: February 13, 2025, 06:36:34 AM »
if possible use sftp with NT? i have a client that move to sftp

"Please be informed that the MPMI system will be making changes to the FTP protocol and port as detailed below:
Protocol: FTP → SFTP
Port: 5010 or 21 → 9022 or 443
Effective Date: End of February"

8
Web Server - Ask For Help / Re: Microservices?
« on: February 09, 2025, 04:24:37 AM »
Generative by AI is experimental.


Microservices is a software development approach that breaks down applications into independent services that communicate with each other. This allows for faster development, easier scaling, and better business continuity.

How it works
Services: Each microservice is a small, independent service that handles a specific task or application feature.

Communication: Microservices communicate with each other using well-defined APIs.

Deployment: Microservices can be deployed independently, so updates can be made without rebuilding the entire application.

Scaling: Microservices can be scaled individually, so only the components that need it are scaled.

Data: Each microservice is responsible for its own data persistence.

Benefits
Faster development: Microservices can be developed faster than traditional monolithic applications.

Easier scaling: Microservices can be scaled more precisely than monolithic applications.

Better business continuity: Microservices can be located across different geographical locations, so a problem in one location won't take down the entire system.

According with amazon:

https://aws.amazon.com/microservices/

9
Web Server - Ask For Help / Re: Microservices?
« on: February 07, 2025, 04:17:31 AM »
Well, microservice is new for me and chatgpt said it is possible to create it with nettalk.

But chatgpt also says the following:

However, if you need to scale and handle high traffic, it is advisable to use modern languages ​​like Python, Node.js or C# along with Clarion in the backend.

10
Web Server - Ask For Help / Microservices?
« on: February 06, 2025, 12:01:00 PM »
Is possible create microservices with NT.

11
Web Server - Ask For Help / Re: Filtering two fields in a Net Web Browse
« on: January 17, 2025, 04:02:33 AM »
yes ;D ;D

12
Web Server - Ask For Help / Re: Filtering two fields in a Net Web Browse
« on: January 16, 2025, 03:51:07 AM »
I prefer to use <13> instead of '

13
Web Server - Ask For Help / Re: Close BROWSE procedure
« on: November 29, 2024, 04:11:37 AM »
maybe put your browse inside memory form, i have all my browses inside memory form

14
Web Server - Ask For Help / Re: Convert text to HTML text for display
« on: September 26, 2024, 04:18:54 AM »
Use the display field, Display tab and then in source select file tag <!--Net: F, or as Bruce says post example  :D

15
Web Server - Ask For Help / Re: Convert text to HTML text for display
« on: September 26, 2024, 03:07:14 AM »
if you use text field then check Allow xhtml and Allow UNSAFE Html

Pages: [1] 2 3 ... 47