RE: Witango-Talk: RE: Counter in an object loop

2003-11-06 Thread Ben Johansen
Oh, I see what you mean, looking through the docs :-b Have you tried the old faithful @CURROW? Ben Johansen http://www.pcforge.com -Original Message- From: Niall Merrigan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Thu, 6 Nov 2003 09:09:12 - Subject: RE: Witango-Talk: RE: Counter

Witango-Talk: Simple Form Question

2003-11-06 Thread OSullivan. Jerry (IT Solutions)
Can you tell me what the TANGO equivalent to the ASP code Request.Form(id), i.e. how do tango files (.taf) read form data that is submitted to it Much Thanks, Jerry * ** *** ** * ** *** ** * ** *** ** * This email and any files transmitted with it are confidential and intended solely for

RE: Witango-Talk: Simple Form Question

2003-11-06 Thread Niall Merrigan
It would be @ARG id Also the @ARG is equivelent to the Request() object in ASP. Rather than splitting into Querystring and Post parts @ARG examines both. Best regards Niall -Original Message- From: OSullivan. Jerry (IT Solutions) [mailto:[EMAIL PROTECTED] Sent: 06 November 2003

RE: Witango-Talk: RE: Counter in an object loop

2003-11-06 Thread Niall Merrigan
@CURROW returns 0 at each loop stage. Suppose the easiest way is just increment the count as I go along -Original Message- From: Ben Johansen [mailto:[EMAIL PROTECTED] Sent: 06 November 2003 10:12 To: [EMAIL PROTECTED] Subject: RE: Witango-Talk: RE: Counter in an object loop Oh, I

RE: Witango-Talk: Simple Form Question

2003-11-06 Thread Robert Shubert
Witango does allow for specific use of Query and Post arguments as well with @SEARCHARG and @POSTARG, but these are less used since @ARG examines both. -Original Message- From: Niall Merrigan [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 5:26 AM To: [EMAIL PROTECTED]

Witango-Talk: Fomatting Fields within Forms

2003-11-06 Thread Cecilia Cos
Hello, I am using Tango2000 for NT and SQL 2000 I would like to create a form with 2 fields, Style and Definition, that get stored in a SQL 2000 db. This will basically be a look up dictionary that users can add new styles and definitions as well as search for them. I have 2 questions. 1. I

RE: Witango-Talk: Simple Form Question

2003-11-06 Thread Scott Cadillac
Here's a tip for everyone, Although @SEARCHARG and @POSTARG could almost be considered obsolete when we have @ARG, there is a subtle importance to @POSTARG. The web will probably never be 100% secure, but it is in your best interest to always pass Passwords and other sensitive information

Re: Witango-Talk: RE: Counter in an object loop

2003-11-06 Thread Dave Machin
If you're using the For Loop action, one of the parameters is the 'counter variable' that you define - it should contain the current loop iteration... Otherwise, if it's a @for tag, according to the docs: Inside a for loop, @CURROW can be used to get the value of the index. - Original

Re: Witango-Talk: Fomatting Fields within Forms

2003-11-06 Thread Dave Machin
On # 2, we've had trouble using nchar and nvarchar data types and returning the data properly in WiTango (given that it's double-byte, although I don't think you need double-byte just for accented characters). We've had better success sticking with char and varchar fields. We've had no

RE: Witango-Talk: RE: Counter in an object loop

2003-11-06 Thread Niall Merrigan
I am using Object Loop not a for loop. @CURROW returns 0. For the moment I have a manual incrementing counter. -Original Message- From: Dave Machin [mailto:[EMAIL PROTECTED] Sent: 06 November 2003 16:47 To: [EMAIL PROTECTED] Subject: Re: Witango-Talk: RE: Counter in an object loop

Re: Witango-Talk: Fomatting Fields within Forms

2003-11-06 Thread webdude
Title: Re: Witango-Talk: Fomatting Fields within Forms You cannot use bold or italics using any of the char fields as far as I know. However, if you fomat the returned text as encoding=none, you can add html to the database and have it returned correctly. Not exactly sure if this is what you are

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Jim Kass
So, then by that reational - if I test and use the startupurl with 'http://www.website.com/startup.taf' domain... then any domain var assignments there should be able to impact domain vars on http://www.website.com/index.taf. The problem is... they don't! With the exception of writing code

RE: Witango-Talk: [OT] See Ben get Locked Up

2003-11-06 Thread Tom Ferguson
Good Luck, Ben... Say hi to Bubba, and don't drop the soap! -Original Message- From: Ben Johansen [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 2:23 PM To: 'WiTango List'; [EMAIL PROTECTED] Subject: Witango-Talk: [OT] See Ben get Locked Up Hi All Someone

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Scott Cadillac
Hi Jim, I admit I haven't read every post on this thread, but I can confirm that the method you just described does work. There must be some other problem getting in the way for you. Although you can likely reach 'http://www.website.com/' from the browser on your workstation, it does not

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Jim Kass
Here is the problem exactly: I use a taf to purge all domain variables, then restart the server. I can see in the log file that my domain variable IS BEING SET(and thus the URL is being hit), but then when I try to use a taf that reads the domain vars, it shows that they are still purged. If I

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Scott Cadillac
Hi Jim, Does your logfile show under which @DOMAIN the TAF executed under? And is the code that writes to your logfile at the end of your startup.taf? Excuse me if you've already answered this - just trying to help :-) Let us know, when you have a moment. Cheers... Scott Cadillac,

RE: Witango-Talk: Fomatting Fields within Forms

2003-11-06 Thread Jim Kass
Title: Re: Witango-Talk: Fomatting Fields within Forms Yeah, I agree... I'm pretty sure that "formatted" text is not really something that can be considered a "character" of any type - double, single or otherwise. However, accented or other special languagecharacters would be able to be

Witango-Talk: Re: Multi-tier Referral Program

2003-11-06 Thread two2witango
Hi. I wish to develop a Multi-tier Referral Program system. The First person who starts the referral chain needs to be disconnected from the chain when it reaches the fifth-tier. At that point the Second person becomes the Primary. It goes on till the seventh tier. I am not sure how the

Re: Witango-Talk: Re: Multi-tier Referral Program

2003-11-06 Thread Alan Wolfe
Hi Aseem, What happens to the person that becomes detached from the chain? - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 06, 2003 12:32 PM Subject: Witango-Talk: Re: Multi-tier Referral Program Hi. I wish to develop a Multi-tier Referral

Witango-Talk: Catching post data

2003-11-06 Thread Bryan Hughes
Have some large text area text fields being truncated when received in my taf's. I'm sure its some kind of cache or buffer that I need to allot some space to but not sure which configuration variable. Please help. TO

RE: Witango-Talk: Catching post data

2003-11-06 Thread Ben Johansen
Itembuffersize is the only one I can think of but that is set to 64k, Man those are some large text fields ;-) Ben Johansen - http://www.pcforge.com I am going behind bars for the MDA come to my site for details on how to bail me out http://www.pcforge.com/MDALockup.htm Authorized Witango

Re: Witango-Talk: Catching post data

2003-11-06 Thread Alan Wolfe
Hey Bryan, How much text are you talkin about? Your problem might actualy be if theres a ' or in your data it could be cutting something off somewhere so it looks like its being truncated but its not really. If you are able to reproduce the truncation you might try printing out the @arg on the

Re: Witango-Talk: Re: Multi-tier Referral Program

2003-11-06 Thread two2witango
I am attaching a word doc that contains answers to all your questions. Still, Let me know if you have any questions. Hi Aseem, What happens to the person that becomes detached from the chain? - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday,

RE: Witango-Talk: Catching post data

2003-11-06 Thread Stefan Gonick
Which version of Tango are you using and which database? T2000/WiT4 both have a bug that truncates the insertion of data in long varchar fields in MS SQL Server. Stefan At 12:57 PM 11/6/2003 -0800, you wrote: Itembuffersize is the only one I can think of but that is set to 64k, Man those are

Re: Witango-Talk: Catching post data

2003-11-06 Thread Bryan Hughes
I'm on Witango Server v5 inserting into MySQL. It's for a CMS the text is bloated with html formatting. On Nov 6, 2003, at 4:03 PM, Stefan Gonick wrote: Which version of Tango are you using and which database? T2000/WiT4 both have a bug that truncates the insertion of data in long varchar

Re: Witango-Talk: Catching post data

2003-11-06 Thread Alan Wolfe
html formatting eh? I bet your having a formatting issue somewhere between where its being submitted and where its being printed out again after being saved. If i were you and could duplicate the truncation, I'd print out the arg after it was submitted and verify that yes, the arg is being sent

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Robert Shubert
It still sounds like either the startupurl is not firing on the proper domain. Add to your startupurl TAF to email you @DOMAIN and see what it responds from both executions (statup and browser) Robert -Original Message- From: Jim Kass [mailto:[EMAIL PROTECTED] Sent: Thursday, November

Witango-Talk: Multi-tier Referral Program

2003-11-06 Thread Aseem Mal
Hi. I wish to develop a Multi-tier Referral Program system. The First person who starts the referral chain needs to be disconnected from the chain when it reaches the fifth-tier. At that point the Second person becomes the Primary. It goes on till the seventh tier. I am not sure how the referral

Re: Witango-Talk: Catching post data

2003-11-06 Thread Phil Wade
This may not be a bug it may be a system configuration variable setting. itemBufferSize System scope only Specifies the size, in bytes, of the largest column value that can be retrieved from a data source. You need to increase this value only if you need to retrieve large values. The default

Witango-Talk: Simple Form Question

2003-11-06 Thread Russell Stephany
Return Receipt Your Witango-Talk: Simple Form Question document :

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Jim Kass
Robert, EXCELLENT TEST! I determined that the STARTUPURL version is showing www.mydomain.com:80 and the browser version is showing www.mydomain.com Also.. I'm noticing that the :80 version is runs serveral times after the server gets started (the variableTimeoutTrigger is also set to the same

Witango-Talk: Anyone have any ideas?

2003-11-06 Thread Wolf, Gene
We just upgraded to the Professional server and a bat command (Windows 2000 Server) that was working to list the files in a directory is now causing the following error message to be generated: HTTP/1.1 500 Application Server Error Server: Microsoft-IIS/5.0 Date: Thu, 06 Nov 2003 22:31:04

Re: Witango-Talk: Anyone have any ideas?

2003-11-06 Thread Scott Cadillac
Hi Gene, Maybe a permissions thing? By default the Witango Service will use the LocalSystem account, so maybe it doesn't have rights to that particular *.bat file, or the rights on the file have to be reset. By the way, the Witango Service can run under an Administrator's account, but you

RE: Witango-Talk: Anyone have any ideas?

2003-11-06 Thread Ben Johansen
Do you mean you just upgrade Windows 2000 to Windows 2000 Professional? Does CMD.EXE have the same level of permissions as Witango Server? Have you tried \\ServerName\OpenWO or C:\\OpenWO Ben Johansen - http://www.pcforge.com I am going behind bars for the MDA come to my site for details on

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Scott Cadillac
Hi Jim, See, two different domains - as far as Witango is concerned. Just so you know, you don't have to configure the domain.ini file to make use of Domain Scope variables. Unless you're using domain.ini for something specific, maybe remove the domain entries and see what happens. The

RE: Witango-Talk: Anyone have any ideas?

2003-11-06 Thread Jan Magnusson
Ben, I doubt Gene meant upgrading W2000 to W2000 Pro ??? My interpretion would probably be upgrading WiTango Standard to Pro on W2000 Server Jan -Original Message- From: Ben Johansen [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 00:49 To: [EMAIL PROTECTED] Subject:

Re: Witango-Talk: Multi-tier Referral Program

2003-11-06 Thread Alan Wolfe
Well Aseem, It looks like you have some work cut out for you! What your trying to do is somewhat complicated but very doable. Im not sure if this matches what you need to do, but if not hopefully it will inspire some ideas. I think how id go about doing this would be storing these tree

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Jim Kass
Folks, With or without the domain.ini file (or with it blank), the :80 is not recognized as the same domain... so I give up. My fix is to use a custom scoped var. If someone has a better idea (I'd prefer to use domain vars, because I've already started writing my tafs to use them), please

Witango-Talk: Killing the server process

2003-11-06 Thread John McGowan
On WinNT, is there a more forcefull way of killing the Witango Server than clicking on Stop in the services control panel. I've got a problem with the server that causes it to hang on me occasionally, and I have to stop and start the service, but because the service is in a kind of a

RE: Witango-Talk: Killing the server process

2003-11-06 Thread Ben Johansen
There is c:net stop Service Name c:net start Service Name from the command prompt Ben Johansen - http://www.pcforge.com I am going behind bars for the MDA come to my site for details on how to bail me out http://www.pcforge.com/MDALockup.htm Authorized Witango MDaemon Reseller -Original

Witango-Talk: WiTango OS X to MySQL

2003-11-06 Thread Wayne Irvine
Can anyone provide a shopping list or white paper for setting up WiTango OS X talking to MySQL both on the same box and on a remote Windows or Linux machine? By way of detail the OS X box is running 10.2.8. The MySQL is set up and running and I have a test table ready to go. Do I require 3rd

Re: Witango-Talk: Multi-tier Referral Program

2003-11-06 Thread Aseem Mal
Thanks Alan.. that sure gives me the right direction to work in. - Aseem. - Original Message - From: Alan Wolfe [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 06, 2003 3:19 PM Subject: Re: Witango-Talk: Multi-tier Referral Program Well Aseem, It looks like you

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Scott Cadillac
Hi Jim, ~ Try another STARTUPURL TAF like callstartup.taf that has @URL in to call 'http://www.website.com/startup.taf' Or, ~ Try Custom Scope variables instead which can be access from http://www.website.com or http://website.com - and you only have to one variable store because Custom

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Robert Shubert
Jim, just use your startupurl to call a TAF that runs an @URL with the correct domain. Robert -Original Message- From: Jim Kass [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 6:26 PM To: [EMAIL PROTECTED] Subject: RE: Witango-Talk: STARTUPURL configuration var. Folks,

RE: Witango-Talk: Killing the server process

2003-11-06 Thread Robert Shubert
There is a KILL.EXE that MS distributed with the NT4 resource kit. It might be a pain to find but it's out on the web in places. If you can't locate, I can get it to you from my server (which isn't here, sorry). Robert -Original Message- From: John McGowan [mailto:[EMAIL PROTECTED]

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Robert Shubert
Doh, too slow on that last post!!! Just for the record: custom variables can be quite useful in this case. It's unlikely that you want to recode, but I would recommend them. Robert Hi Jim, ~ Try another STARTUPURL TAF like callstartup.taf that has @URL in to call

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Robert Shubert
My domains.ini file looks like: [Domains] www.mydomain.com www.mydomain.com:80 Jim, This isn't a complete domains.ini and if this is what you have, it wouldn't do anything, the whole text of the file should be: [Domains] www.mydomain.com= [www.mydomain.com] www.mydomain.com

RE: Witango-Talk: STARTUPURL configuration var.

2003-11-06 Thread Robert Shubert
I goofed this post a bit, the domains.ini should read: [Domains] www.mydomain.com= [www.mydomain.com] 1=www.mydomain.com 2=www.mydomain.com:80 3=mydomain.com 4=mydomain.com:80 Robert -Original Message- From: Robert Shubert [mailto:[EMAIL PROTECTED] Sent: Thursday, November

Re: Witango-Talk: WiTango OS X to MySQL

2003-11-06 Thread Chris Millet
I'm running OSX 10.2.6/MySQL with MacODBC and it seems to be running fine. (Witango will crash occasionally without a trace, but I have come to understand the same will happen with iODBC.) I went with macODBC because it was the easiest to get up and running, and I know next to nothing about

Witango-Talk: [OT] See Ben get Locked Up

2003-11-06 Thread Ben Johansen
Hi All Someone nominated me to be locked up for Good ;-) This is a fund raising event for the MDA (Muscular Dystrophy Association) Please if you would like to donate to this go to my website and click on MDA-Lockup link I am sure some of you would love to get photos of me being arrested, so