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 - TimR

Pages: [1] 2
1
I have not implemented any prop:disconnect techniques, I spent some time searching for them, but they appear to be in an old (2020?) CIDC conference session, so I didn't have any idea what they were about. I will continue looking.

2
I'm getting random errors where my nettalk webserver program(multisite/multi-dll) will say it can't find some mssql file (not consistent which file is picked), then crash. Does that sound like it is a file disconnection issue, it might run for days or hours before the problem manifests.

It might be related to friendly people hammering the server with many requests trying to gain access, which also happens frequently. Anyone have any tips on how to deal with the bad actors trying to gain access. While blocking IP's via firewall, works, something a bit less manual would be handy. There are way more IP's available then I care to deal with 1 by 1


3
Web Server - Ask For Help / Mssql Driver options
« on: March 15, 2024, 10:21:25 AM »
Are these Driver options still recommended for MSSQL tables?
/BUSYHANDLING=2 /LOGONSCREEN=FALSE /MULTIPLEACTIVERESULTSETS=TRUE

I saw some posts from years ago and wanted to make sure a better way hasn't arrived.


4
Web Server - Ask For Help / Re: Too Many SegDef
« on: October 05, 2023, 12:58:32 PM »
You can separate the form into multiple procedures and place them together on another unified form. I had an issue with doing this that was easily solved, I'll just point you to the message instead of repeating the info
https://www.nettalkcentral.com/forum/index.php?topic=9211.msg37753#msg37753

5
Web Server - Ask For Help / Re: Splitting up large netwebform
« on: May 19, 2023, 08:56:41 AM »
That fixed the issue, thank you

6
Web Server - Ask For Help / Splitting up large netwebform
« on: May 16, 2023, 08:27:56 AM »
I have reached a limit on adding new controls to a webform, so I was going to copy the webform to a new procedure , remove extra controls and include the new webform (minus duplicate controls) back into the original procedure, to get around the limit.   Which seemed to work, except all the lookups stopped working, and by stopped I mean the popup lookups open and close, but the fields never get updated. I've tried deleting and recreating the controls but the lookup fields refuse to get updated with the selected values.  Can anyone offer an insight as to why they quit working in the new procedure?

7
Web Server - Ask For Help / Multihost Global Extensions Question
« on: December 01, 2022, 05:41:22 PM »
How should the global extensions be setup in the host exe? For the capesoft extensions I'm assuming that the "This is a part of a Multi-DLL program" checkbox should not be checked in the host, but checked in the sub websites (app's) if they are multi dll, correct?

8
I used your Pages(47) example as a starting point, I just changed the default action for the form and edited the index.htm to display the form instead of the browse.

9
I have a memory form embedded in a web page for some simple data collection. There are a few required fields on the form, if the validation for the form fails, then only the memory form appears, is there a way to keep the whole page displayed, with the form still embedded?

10
I figured out the issue, I had a Net web form with a lot of fields, as soon as I removed some of them, the issue went away. I'll just have to reconfigure the form layout.

11
I was using Nettalk version no: 12.33 and was going to upgrade 12.38, however when I compile one of my apps in a multi-dll application I'm getting the "Too many segdef in file:..." error.  This is occurring not on the largest app, just a middle sized one, it only has around 20 procedures (excluding external procedures), it is not the "data" DLL. The data dll and other DLLs in this app compile fine, just this particular one is giving me grief.  Any thoughts on this?

12
Web Server - Ask For Help / Re: LetsEncrypt eror
« on: February 22, 2021, 12:17:11 PM »
I had the same error and bruce fixed it. I don't remember well enough to repeat the steps he did to "fix" the problem. I believe he was going to make changes to the next update to prevent this issue.  Hope that helps, even though I have no solution, at least you know it's not just you

13
Web Server - Ask For Help / Multisite Host app Referer
« on: February 19, 2021, 09:53:05 AM »
What is the intended use for the wsReferer table, curious minds would like to know, thanks

14
Web Server - Ask For Help / Re: Headings on Browse on the left
« on: July 13, 2020, 04:19:14 PM »
Any word on this issue, I'm having the same problem?

15
Web Server - Ask For Help / Re: Report Security?
« on: January 10, 2020, 12:55:47 PM »
I created a little template to handle this. It assumes a NetWebServerWorker called p_web is present, I usually pass this into the procedure anyway, it's not perfect but works, feel free to use/modify as you like.

#TEMPLATE(MyTemplate,'My Templates'),FAMILY('ABC')
#EXTENSION(ReportLoginRequired,'Require Login for Nettalk Reports')
#AT(%AdditionalDebugHooks),PRIORITY(1000)
  If p_web.GetSessionLoggedIn() = 0
    p_web.SendError (401,'Unauthorized', 'A login is required to view this page')
    Return
  End
#ENDAT

Pages: [1] 2