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.


Topics - lanmicro

Pages: 1 [2] 3
16
Web Server - Share Knowledge / Adding JavaScript To A Timer
« on: June 24, 2010, 05:01:53 PM »
Hi Guys,

Someone here posted a javascript that puts a countdown until the session ends.  Here it is.  How do I implement this into my NetTalk project?

<form name="counter">
    <p align="center">
    <input type="text" size="82" name="d2" style="font-weight: bold; border: 3px solid #FF0000; color:#FF0000; background-color:#FFFF00; text-align:center">
</form>
<script>
<!--
var seconds=60
var minutes = 1
document.counter.d2.value="If you do not work you will automatically be logged out in "+minutes+" minutes and "+seconds+" seconds."
function display(){
if (seconds<=0){
    seconds=60
    minutes-=1
}
if (minutes<0){
    seconds=0
    minutes=0
    window.open('http://www.dynamicdrive.com/forums/showthread.php?t=6138','_top');
}
else
    seconds-=1
    document.counter.d2.value="If you do not work you will automatically be logged out in "+minutes+" minutes and "+seconds+" seconds."
    setTimeout("display()",1000)
}
display()
-->
</script>


 

17
Web Server - Ask For Help / Server listening on all ports.
« on: March 31, 2010, 08:38:22 AM »
Hi Guys,

It appears that a webserver listens on all IPs for port 443.  Is there a method to tell the program to only listen on a single IP?

18
FTP - Ask For Help / Secure FTP uploads
« on: February 22, 2010, 11:48:54 AM »
Can an upload to a secure FTP site be done with NetTalk these days?  FTPS server.

19
Web Server - Ask For Help / Calling a page in my site
« on: February 20, 2009, 11:56:39 AM »
I want to call a page in my site when called directly from the address bar like: http://www.XXXXXX.net:91/FramePage?URLtoGoTo=yyyyyyyyy

When the framepage starts I know that I can interogate URLtoGoTo to find the name of the page.  How can I start that page and allow it to interact with the user as if started from the menuontheleft?

It would also be nice if the page could start without the page headers, frames etc of the website.  Possible?

20
Web Server - Ask For Help / Server Connection Failed
« on: August 06, 2008, 10:11:28 AM »
Hi Guys,

Sometimes I get a
"Server Connection Failed

An error occurred during a connection to www.mx247.net.

SSL received a record that exceeded the maximum permissible length.

(Error code: ssl_error_rx_record_too_long)"

This message occurs on FireFox (latest version).  Just minutes before attempted same form from IE with no problems.  Using NETTalk v4.24.

Any clues?

21
Web Server - Ask For Help / SSL record too long error
« on: July 08, 2008, 09:37:44 AM »
I got an error indicating that my SSL record was too long.  What is the message referring to and what might I do to attempt a resolution?

NetTalk 4.24
Clarion 6.3 9058

22
Web Server - Ask For Help / How do I remove acceptance of a certificate?
« on: September 10, 2007, 08:50:17 AM »
Hi Guys,

Once you accept a certificate from your browser it stops asking you for validation. 

How can I remove my acceptance of the certificate?

In fact how can I find the certificate information that I just accepted?

23
Web Server - Ask For Help / Website Certified by an Unknown Authority
« on: August 28, 2007, 05:57:48 PM »
Hi Guys,

I pulled the .crt and .key files from the certificate sent by Verisign (thanks Alan), and put them in the Web\Certificates directory, but I am getting a "Website Certified by an Unknown Authority" message when running the site. 

What might be the problem?

24
Web Server - Ask For Help / Verisign secure html
« on: August 25, 2007, 10:28:35 AM »
Hi Guys,

I would like to include the verising html under the outlook menu in the menuonleft pane.  I can't seem to determine where to include the html code.  It always seem to want to appear between the left_fram and the right_fram.

What am I doing wrong?

25
Web Server - Ask For Help / Versign SSL certificates
« on: August 23, 2007, 10:12:57 AM »
Hi Guys,

VeriSign seems to only send one file back when you buy a certificate from them.  They tell you to name the thing something.cer.  This does not jibe with what I read in the NetTalk documentation.  I don't have and did not receive a private key and the file they sent has a "-----BEGIN CERTIFICATE-----" and a "----END CERTIFICATE----" but nothing extra that might be a private key. 

What am I missing?

26
Web Server - Ask For Help / Drop Lists in IE vs FF
« on: August 19, 2007, 02:21:36 PM »
Hi Guys,

I have some drop lists on a form that work just fine in Mozilla FF.  When using IE pressing the down or up arrows cause the cursor to move to the next field instead of allowing staying in the drop to allow more movement within the list.

Using NT 4.25 any suggestions?

27
Hi Guys,

I would like to refresh the menu after login (some items are dependent on whether the user is logged in) and choose one of the newly exposed menu items to display in the right_frame.

Is this possible?

28
Web Server - Ask For Help / Login from another web page
« on: August 08, 2007, 09:27:20 AM »
Hi Guys,

I am interfacing with another website that has the user sign in.  This sign in information must be passed to my site. 

How do I form the url that must be passed to me so that it contains the user name and
password?

Where in my site do I examine what has "possibly" been passed and do the login validation stuff?

When attempting an url that looks like this:  127.0.0.1:91?login=junk,password=junk
I get page not found errors.

29
Web Server - Ask For Help / reselecting field after incorrect entry.
« on: July 26, 2007, 05:53:36 PM »
Hi Guys,

I have found a method to change the comment after a user makes an incorrect entry but the cursor moves from the field with the bad information in it to the next field.  How can I reselect the same field.

I don't want to validate the entire record just the field that I am currently on.

Any ideas?

30
Hi Guys,

I am having a problem with fields being filled in with Internet Explorers autofill capability.  They appear filled in on the screen, but the validate routine is not being executed.  I have the "Send New Value To Server" check and the "refresh Value" on change checked. 

What am I missing?

Pages: 1 [2] 3