Witango-Talk: Help with displaying results?

2004-11-01 Thread Dan Stein
I am puling this text from a FMP 7 database. It is using a getassCSS function to take formatted text and translate it to a style sheet. What do I need to do in the results page to get it to display as text formatted rather then the code. This is what is in the column and display when I call the

Re: Witango-Talk: REPLACE

2004-11-01 Thread Anthony M. Humphreys
JavaScript is case sensitive. And you can run it on the server side inside @SCRIPT/@SCRIPT You could use the String.replace() method and the RegExp object. Something like: myString.replace(/ö/g, 'a');myString.replace(/ä/g, 'a');myString.replace(/å/g, 'a'); And the same again for uppercase:

Re: Witango-Talk: Help with displaying results?

2004-11-01 Thread Dan Stein
Just to be clear. If I take this text and paste it into Dreamweaver it displays fine. So I just need the tag or whatever that will make this display as HTML. on 11/1/04 6:01, Dan Stein at [EMAIL PROTECTED] wrote: I am puling this text from a FMP 7 database. It is using a getassCSS function to

Witango-Talk: Urgent Help Needed

2004-11-01 Thread webdude
Win2k IIS5 SQL7 I got here this morning, and on my production server I get this error whenever a database call is made... Client Error Configuration file does not specify a host and port correctly. It happens across the board for all my sites. I desparately need help with this Thanks

Re: Witango-Talk: Help with displaying results?

2004-11-01 Thread Dan Stein
I got it Encoding=multilinehtml on 11/1/04 7:28, Dan Stein at [EMAIL PROTECTED] wrote: Just to be clear. If I take this text and paste it into Dreamweaver it displays fine. So I just need the tag or whatever that will make this display as HTML. on 11/1/04 6:01, Dan Stein at [EMAIL

RE: Witango-Talk: Urgent Help Needed

2004-11-01 Thread Robert Shubert
Make sure the client.ini file on the web server is configured to reach the IP/Port of the Witango server, and the Witango.ini file is configured to listen to same IP/Port and that the valid hosts is set to the webserver. If you are all on the same machine, the IP should be 127.0.0.1 The

Witango-Talk: Source control

2004-11-01 Thread Dan Stein
I have a very old version of source Safe 5.0 which I have never been able to get to work right so I can work from different machines. Is there an open source or another alternative that works with witango. I like the way source safe works but with history and rollback and it is easy to set up

RE: Witango-Talk: Distance Calculations - Sort on..., search on...

2004-11-01 Thread Ben Johansen
Ok, I am at the computer that had my test file. Here it is Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Witango Developement From: Ben Johansen [mailto:[EMAIL PROTECTED] Sent: Sunday, October 31, 2004 3:01 PM To: [EMAIL

Re: Witango-Talk: Distance Calculations - Sort on..., search on...

2004-11-01 Thread [EMAIL PROTECTED]
Number of Users: between 1.500 an 20.000 Number of locations: Over 17.000 Used Database: MySQL Storing the data's is not possible. Each user have a different start-point. See my prev. mail. Do the calculation inside the database will be possible, but then I must stored the result a new

Re: Witango-Talk: Distance Calculations - Sort on..., search on...

2004-11-01 Thread [EMAIL PROTECTED]
Ben, the calculation for the distance is very fast, it will be done on the flight. But thx for the suggestion with the server side script. This will be faster rs Daniel - Original Message - From: Ben Johansen To: [EMAIL PROTECTED] Sent: Sunday, October 31,

Re: Witango-Talk: Distance Calculations - Sort on..., search on...

2004-11-01 Thread [EMAIL PROTECTED]
Thank you Ben ! This will work on the sort problem, but not on the search... BTW.: Do you know a way to store the formula directly in the database (and not only the result) ? rs Daniel - Original Message - From: Ben Johansen To: [EMAIL PROTECTED] Sent: Monday,

Re: Witango-Talk: Distance Calculations - Sort on..., search on...

2004-11-01 Thread Alan Wolfe
heres an optomization if you use the other distance formula: distance = squareroot((x2-x1)^2 + (y2-y1)^2) the square root takes a long time to compute, but the other math doesnt take too long. You might thing about squaring both sides and getting.. distance^2 = (x2-x1)^2 + (y2-y1)^2 that

Re: Witango-Talk: Urgent Help Needed

2004-11-01 Thread Brian Mowers
I have seen this error recently. Have you done any updates to the Operating System? Automatic or otherwise? CHANGE THE TANGO Port number (T4Server.ini) from default 18100 to another Port Number (LISTENERPORT=18200) Restart the Tango Service. Test, That should take care of it. ~Brian Mowers At

Witango-Talk: WiTango Email

2004-11-01 Thread Rick Sanders
I have a client who's having email relay problems. Basically, people are relaying off his email server. He's turned off relay for local sender addresses, and enabled SMTP authentication. However, he's had to let his local machine IP 127.0.0.1 for access to the mail server, because WiTango

Re: Witango-Talk: Urgent Help Needed

2004-11-01 Thread webdude
Title: Re: Witango-Talk: Urgent Help Needed I ended up rebooting the machine and it is now running correctly. But why would this happen? I checked several sites before I went home on Friday, and on Monday morning, I got nothing but this error. Did my server update ITSELF during the weekend?

Witango-Talk: Number Generate

2004-11-01 Thread Steve Campbell
Hello I have a table that I am going to insert info into 4 of the 5 fields into the table. In the 5th field, I just want the application to automatically generate a number or a number with some prefixes I choose, and insert that number into the 5th field. I seem to remember in the

RE: Witango-Talk: Number Generate

2004-11-01 Thread Robert Shubert
@RANDOM LOW=lowest_possible_value HIGH=highest_possible_value -Original Message- From: Steve Campbell [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 2:37 PM To: [EMAIL PROTECTED] Subject: Witango-Talk: Number Generate Hello I have a table that I am going to

RE: Witango-Talk: Number Generate

2004-11-01 Thread Wilcox, Jamileh \(HSC\)
Title: Message @RANDOM will generate a random number; you can set high low limiters in the tag attributes. -Original Message-From: Steve Campbell [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 1:37 PMTo: [EMAIL PROTECTED]Subject: Witango-Talk: Number

Re: Witango-Talk: WiTango Email

2004-11-01 Thread Roland Dumas
Title: Re: Witango-Talk: WiTango Email Hold on. Somethings amiss in your mail server setup. IF you have relay enabled from 127.0.0.1 AND you have a mail server on the same machine AND you have authentication turned on for outside IP addresses, the mail server should still be requiring

RE: Witango-Talk: WiTango Email

2004-11-01 Thread Ben Johansen
If you are using Witango Server 5 and above you can do it though the @EMAILSESSION Ben Johansen - http://www.pcforge.com Authorized Witango MDaemon Reseller Available for Witango Developement From: Rick Sanders [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004

Re: Witango-Talk: WiTango Email

2004-11-01 Thread Rick Sanders
Title: Re: Witango-Talk: WiTango & Email Hi Roland, Thanks for your reply. Unfortunately, it's a little more complicated than that. The people relaying off the server, are using the email address of the domain hosted on the server. So, the spammers are using [EMAIL

Re: Witango-Talk: WiTango Email

2004-11-01 Thread John McGowan
If the mail is going to an account on the local machine, then the spammers aren't relaying at all... They are simply using a generic account name at the local domain as the return address. The definition of mail relaying means that the mail would be relayed to another server. Typically relay

Re: Witango-Talk: WiTango Email

2004-11-01 Thread Roland Dumas
Title: Re: Witango-Talk: WiTango Email I understand what is going on, but this SHOULDNT, unless youve left a door open. I suspect you have authentication off for your whole domain, rather than turn it off for a handful of trusted IPs When they send something through [EMAIL PROTECTED] and

Re: Witango-Talk: WiTango Email

2004-11-01 Thread John McGowan
By the way, if your mail server forces authentication for everybody that tires to send mail through it, a solution that I've used in the past has been to is an intermediary mail server (typically on the same machine) that accepts connection from only localhost, that is setup to relay all it's

Re: Witango-Talk: WiTango Email

2004-11-01 Thread Roland Dumas
Title: Re: Witango-Talk: WiTango Email One other thought: The server has been compromised. Has some sort of spamming virus on it. On 11/1/04 12:31 PM, Roland Dumas [EMAIL PROTECTED] wrote: I understand what is going on, but this SHOULDNT, unless youve left a door open. I suspect you have

Re: Witango-Talk: WiTango Email

2004-11-01 Thread Rick Sanders
Hey John, Yep, that's what seems to be happening. However, after checking the logs, the reason why other users at the same domain were getting email from [EMAIL PROTECTED] was because relay is on for mail sent within the same domain since both the sender and receiver are local. So,

Re: Witango-Talk: WiTango Email

2004-11-01 Thread Rick Sanders
That's how it was set up. Everyone has to send authentication to send out email. Or they're denied. By the way, if your mail server forces authentication for everybody that tires to send mail through it, a solution that I've used in the past has been to is an intermediary mail server (typically

Re: Witango-Talk: WiTango Email

2004-11-01 Thread Rick Sanders
Title: Re: Witango-Talk: WiTango & Email Nope, there's no door left open, however it's all happening on port 25. So, I redirected to port 26, same thing. 127.0.0.1 isn't the problem anymore. I found some spyware, and a trojan on a client machine. Arg! I excluded the IP's from

Witango-Talk: ASP, JSP work needed

2004-11-01 Thread Dan Stein
My friend in Austin is looking for someone local to help him with a relative small project that could be done with Access or MySQL and JSP or ASP it seems to me. You can contact him at Ric Sternberg AiM Productions 830-825-0133 www.aimproductions.com Ric Sternberg [EMAIL PROTECTED] -- Dan

RE: Witango-Talk: Number Generate

2004-11-01 Thread Ben Johansen
Can you send a debug output that shows the insert statement or an excerpt of the taf in a file and attach it. Ben Johansen From: Steve Campbell [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 8:00 PM To: [EMAIL PROTECTED] Subject: RE: Witango-Talk: Number Generate