NetTalk Central

Recent Posts

Pages: 1 ... 8 9 [10]
91
Web Server - Ask For Help / Re: Download file from menu
« Last post by seanh on April 09, 2024, 10:40:58 PM »
Is there a file limit to the size that can be downloaded?
My exe is 162 MB  I've also tried a similar sized 'just data'  file in case the exe bit was causing problems and I have similar issues
92
Web Server - Ask For Help / Re: Download file from menu
« Last post by seanh on April 09, 2024, 09:58:20 PM »
Problem is: There is no downloading icon. 
The downloads list doesn't contain anything new, the browser looks like it's doing something... but nothing ever happens

Update: Ichanged the file to download to favicon512.png and it worked.
But the exe does nothing, even if left for 10mins
93
Web Server - Ask For Help / Re: Download file from menu
« Last post by Bruce on April 09, 2024, 08:45:22 PM »
The browser may appear to just hang, but perhaps it is downloading? see the downloading icon to see what's happening under there.
94
Web Server - Ask For Help / Download file from menu
« Last post by seanh on April 09, 2024, 08:22:33 PM »
I have a label printer helper program that I want to make available to be downloaded from the help menu of my website.

I'm trying but nothing seems to work.
I've tryed a variation of Web40 download and also just putting the exe name in the URL
The browser just hangs and seems to do nothing.

This should be simple, and I'm sure it is once I find out what I'm doing wrong
So how should I do this?
95
Web Server - Ask For Help / Re: The URL for the Fetch command was blank
« Last post by Bruce on April 09, 2024, 05:58:42 AM »
update to at least the latest NT12, or better yet, NT14.

Cheers
Bruce
96
Web Server - Ask For Help / The URL for the Fetch command was blank
« Last post by GordonF on April 08, 2024, 06:49:39 AM »
Hi, I'm hoping someone can help.

I've suddenly ran into a certificate generation problem for any site renewing their certificate for web server. I get the the response "The URL for the Fetch command was blank", a section of the log is below.

I'm using NetTalk 12.17, I know I need to update but I've held off as I have some mods in the templates, if it's a known problem that requires an update then I'll move to NetTalk 14 but I would appreciate any help to get it working in the meantime.


[ 4/08/24-15:46:00]  The URL for the Fetch command was blank
[ 4/08/24-15:46:00]  Requesting Certificate For staging.edgeanywhere.co.uk
[ 4/08/24-15:46:00]  Finalized. Will now fetch certificate
[ 4/08/24-15:46:00]  Finalize Request staging.edgeanywhere.co.uk
[ 4/08/24-15:45:59]  Hostname resolved to: 45.8.225.229
[ 4/08/24-15:45:59]  Challenge was valid. Will now finalize
[ 4/08/24-15:45:59]  Status: "valid"
[ 4/08/24-15:45:59]  Get Authorize staging.edgeanywhere.co.uk
[ 4/08/24-15:45:59]  Checking Status
[ 4/08/24-15:45:52]  Setting Folders for Domain [staging.edgeanywhere.co.uk]
[ 4/08/24-15:45:49]  Status: "pending"
[ 4/08/24-15:45:48]  Get Authorize staging.edgeanywhere.co.uk
[ 4/08/24-15:45:48]  Checking Status
[ 4/08/24-15:45:43]  Status: "pending"
[ 4/08/24-15:45:43]  Setting Folders for Domain [staging.edgeanywhere.co.uk]
[ 4/08/24-15:45:43]  Setting Folders for Domain [staging.edgeanywhere.co.uk]
[ 4/08/24-15:45:43]  Setting Folders for Domain [staging.edgeanywhere.co.uk]
[ 4/08/24-15:45:43]  Setting Folders for Domain [staging.edgeanywhere.co.uk]
[ 4/08/24-15:45:43]  Get Authorize staging.edgeanywhere.co.uk
[ 4/08/24-15:45:42]  Checking Status
[ 4/08/24-15:45:42]  Notify Server Challenge is Ready
[ 4/08/24-15:45:42]  LE Server will now fetch http://staging.edgeanywhere.co.uk:80/.well-known/acme-challenge/lB-U9m6_enz102MB6pIzlRfHONa9CAgvYnm2Z0opi6s
[ 4/08/24-15:45:42]  Challenge Token Saved C:\Dentsys\Server\web\.well-known\acme-challenge\lB-U9m6_enz102MB6pIzlRfHONa9CAgvYnm2Z0opi6s
[ 4/08/24-15:45:41]  Get Authorize staging.edgeanywhere.co.uk
[ 4/08/24-15:45:41]  Authorize Request staging.edgeanywhere.co.uk
[ 4/08/24-15:45:40]  Registering Account Dentsys at  https://acme-staging-v02.api.letsencrypt.org/acme/new-acct
[ 4/08/24-15:45:38]  Time to update the certificate staging.edgeanywhere.co.uk
[ 4/08/24-15:45:38]  C:\Dentsys\Server\certificates\staging.edgeanywhere.co.uk.crt does not exist
[ 4/08/24-15:45:38]  Setting Folders for Domain [staging.edgeanywhere.co.uk]
[ 4/08/24-15:45:38]  Created C:\Dentsys\Server\certificates\staging.edgeanywhere.co.uk.csr.der
[ 4/08/24-15:45:38]  Created C:\Dentsys\Server\certificates\staging.edgeanywhere.co.uk.csr
[ 4/08/24-15:45:38]  Created C:\Dentsys\Server\certificates\staging.edgeanywhere.co.uk.key
[ 4/08/24-15:45:29]  Setting Folders for Domain [staging.edgeanywhere.co.uk]
[ 4/08/24-15:45:29]  Created C:\Dentsys\Server\certificates\Dentsys-LE.key
[ 4/08/24-15:45:27]  Created C:\Dentsys\Server\certificates\Dentsys-CA.crt
[ 4/08/24-15:45:27]  Created C:\Dentsys\Server\certificates\Dentsys-CA.key
97
Web Server - Ask For Help / Re: Different menu if they log on from mobile phone.
« Last post by Bruce on April 08, 2024, 02:38:11 AM »
>> However, I want to change some behavior of the app on mobile screen.

I think you need to define "mobile screen". Is my laptop mobile? is my 13" ipad?

>> I want to change the menu items - some so display and some not to display.  How does that  get done?

if you are basing the "mobileness" on resolution, then attach a css class to the menu item, and use css to set
display:none
when that resolution is met (ie with a media query).

Cheers
Bruce
98
Web Server - Ask For Help / Different menu if they log on from mobile phone.
« Last post by rjolda on April 06, 2024, 06:18:02 AM »
Hi,
I want to display a different menu and possibly a different start screen when the users log onto my program with a mobile phone.  I am using @media <600 to trap small screens.  My menus do change to the hamburg menu.  I have created custom css for the small screens to display correctly.  However, I want to change some behavior of the app on mobile scren.

1. I want to change the menu items - some so display and some not to display.  How does that  get done?  I doubt that i can capture @media < 600 and use it as a condition.  The other way that I can think of is to add a class attribute to the menu items and change their properties in the css.  Which is doaboe or better?

2. I want to display a page with "3 Action Buttons" when they log in on a mobile phone.  One way would be to give it a class name and hide it and use CSS to display if it is in on a small screen.

Any help will be appreciated.
Thanks,
Ron
99
Fresh day with fresh results.  ;D. I used the name of the view 'MSCView' and not what I was shown in debugview++ 'View|1'. Once I changed this I saw the translation take place for my return results.

What worked is in BuildResultsFields at Priority 5000 I added code similar to the following.

        renameView = 'view|1'
        renameViewField = UPPER('MSCVER:VersionSequence')
        renameViewJson = 'VersionSequence'
        json.reflection.SetRename(renameView, renameViewField, renameViewJson)

Jeff
100
Web Server - Ask For Help / Clarionlive not secure
« Last post by osquiabro on April 05, 2024, 05:36:54 AM »
Bruce check your certificate for clarionlive
Pages: 1 ... 8 9 [10]