Re: Witango-Talk: tcf files going bad

2004-03-03 Thread John McGowan
Roland, Did you figure out the corruption with your TCF? /John John McGowan wrote: Roland, have you "diffed" the two different tcf files? when tango refers to the tcf as being corrupt it's talking about the XML structure of the file, so you would still be able to open it up in BBEdit, but so

Re: Witango-Talk: how many instances does it take

2004-03-03 Thread John McGowan
first of all, what scope did you instanciate your object in? I'll assume it was Request. If it was request, what name was it instantiated as? Make sure that that scope and name are in the "Object instance variable." part of the Call Method Action You are calling the second method in the same

Witango-Talk: Redirects (OT)

2004-03-03 Thread Fogelson, Steve
Windows 2003 Web Edition, R:Tango 5.0 Still rewriting all to multi domains/one set of apps. Some of my tafs had to move to different folders. I want to make sure that browsers are redirected to the new location, but that search engines will discover page no longer exists and delete from search eng

Re: Witango-Talk: tcf files going bad

2004-03-03 Thread Roland Dumas
No, I backed up again, dragged my methods into a new file and started modifying, just like before, and it didn't go bad. I'm testing frequently as I go, now. Not a clue what it might have been. I'm not doing anything fancy, but something caused the editor to write xml that the editor doesn'

Re: Witango-Talk: how many instances does it take

2004-03-03 Thread Roland Dumas
Instantiated object in request scope gave it a name that was descriptive but not being used "tax_shipping" called a method, using same name called a second method, using same name, which doesn't fly no actions between that might destroy searched for the name 'tax_shipping' to make sure I didn't

Re: Witango-Talk: Redirects (OT)

2004-03-03 Thread webdude
Do not use a 404. This will kill a robot immediately (google at least). A 404 is a page not found and will stop the bot in its tracks. You should use a 301 redirect. To do this in IIS, go to properties/Home Directory. Click a "redirection to a URL." Fill in the complete URL including "http://";

Re: Witango-Talk: Redirects (OT)

2004-03-03 Thread webdude
p.s. This is a permanent 301 redirect. Do not use a 404. This will kill a robot immediately (google at least). A 404 is a page not found and will stop the bot in its tracks. You should use a 301 redirect. To do this in IIS, go to properties/Home Directory. Click a "redirection to a URL." Fill

Re: Witango-Talk: how many instances does it take

2004-03-03 Thread Roland Dumas
My Error: Instantiated object with a variable name called method with return variable as same name as object, therefore wiping out object. mea culpa On Mar 3, 2004, at 6:49 AM, Roland Dumas wrote: Instantiated object in request scope gave it a name that was descriptive but not being used "tax

Witango-Talk: Sun Servers (OT)

2004-03-03 Thread Jon van der Raadt
Our conversion to Witango 5 of our classified ad system is almost complete. It has been running under Tango 2000 on two Sun Solaris boxes (one for the app server the other for the database). The system has performed very well but we do not own the hardware and cannot justify purchasing the ha

RE: Witango-Talk: Redirects (OT)

2004-03-03 Thread Fogelson, Steve
Thanks for the response. Can you do this with a HTTP redirect with httpHeader? Or is IIS the only way to do this? <@assign request$httpHeader "HTTP/1.1 301 Moved Permanently<@CRLF>Location: <@var method$URL encoding=metahtml><@crlf><@setcookies><@userreferencecookie><@crlf><@crlf>"> Thanks Stev

Re: Witango-Talk: Looking for a T2000 Server

2004-03-03 Thread Dan Stein
9.2.1 should be fine although 8.5 was also very stable in general. 9.2.2 is problematic for lots of software and was an update mostly to allow classic to run in OSX so I would not use it. on 3/2/04 23:31, Mark Weiss at [EMAIL PROTECTED] wrote: > I got to thinking. Can anyone tell me the last stab

Witango-Talk: Zipping files with Witango

2004-03-03 Thread Wolf, Gene
Are there any zip programs that can be executed from Witango to zip a file that is created on the fly? We have a need to allow a user to select records, create excel spreadsheets from the results, write the file to a directory, zip that file, and then mail that zipped file to the user. We can do

Re: Witango-Talk: Zipping files with Witango

2004-03-03 Thread Jason Pamental
Gene, I think PKZip (windows) can be controlled from the command-line. You could do an external action/batch file bit to control it. Jason On Mar 3, 2004, at 3:33 PM, Wolf, Gene wrote: Are there any zip programs that can be executed from Witango to zip a file that is created on the fly?

RE: Witango-Talk: Zipping files with Witango

2004-03-03 Thread Michael Dittbrenner
Gene WinZip has a command line add-on that can be installed. WinZip Command Line Support Add-On Use WinZip directly from the command prompt and scripts. WinZip Command Line Support Add-On Use WinZip directly from the command prompt and scripts. It can be found at http://www.winzip.com/daddo

RE: Witango-Talk: Zipping files with Witango

2004-03-03 Thread Wilcox, Jamileh (HSC)
Any zip program that has a command-line interface should work. I've done it with pkzip (www.pkzip.com) and WinZip (www.winzip.com). You'd write the excel file to disk, then use an External Action to run the zip command line & create a zipfile on disk, then attach that file to the email. You mi

RE: Witango-Talk: Redirects (OT)

2004-03-03 Thread webdude
I believe this would work, but have never tried it in Witango. Another method would be to use the ASP method. I have used this and it works also... <% Response.Status = "301 Moved Permanently" Response.addheader "Location", "http://www.yourdomain.com/newpageurl/"; Response.End %> Need to name yo

RE: Witango-Talk: Zipping files with Witango

2004-03-03 Thread Ian Daniel
Hi Gene: The Winzip Command Line Support Add-On requires that you have a licensed copy of Winzip before you can use it. As an alternative, if you just require simple zipping capabilities, you may consider Freezip which is freeware for commercial and non-commercial use. Freezip also allows you to

RE: Witango-Talk: Redirects (OT)

2004-03-03 Thread Scott Cadillac
Whether you sent "HTTP/1.1 301 Moved Permanently" from Witango, ASP, ASP.NET or configured under IIS directly - they all work basically the same, as far as Browsers or search engines are concerned. Remember, HTTP is a layer independent from Witango, the Webserver or the client (browser). Recen

RE: Witango-Talk: Zipping files with Witango

2004-03-03 Thread Michael Dittbrenner
Gene Also there is another program that zips called winrar. Its main compression is .rar but also does .zip and it is on several different operating systems if that is an issue at all. Mike D Educational Directories Unlimited, Inc. Michael Dittbrenner Pr

RE: Witango-Talk: Zipping files with Witango

2004-03-03 Thread Wolf, Gene
Thanks folks! This is just the directional nudge I needed! I knew someone else out there must have come up against this at some point or another! -Original Message- From: Ian Daniel [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 03, 2004 3:58 PM To: [EMAIL PROTECTED] Subject: RE: Wita

Witango-Talk: Using VSS 6 w/Witango

2004-03-03 Thread stan
Has anyone out there successfully integrated Witango with Visual Sourcesafe 6?  It appears that Microsoft has removed the option to share VSS except with Visual Studio.  If there is a trick I would certainly appreciate some input. Otherwise is there a repository that works with Witango on the Win

RE: Witango-Talk: Zipping files with Witango

2004-03-03 Thread Steve Campbell
I have written many using pkzip. You can get a list of commands from their website. Steve -Original Message- From: Wilcox, Jamileh (HSC) [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 03, 2004 2:41 PM To: [EMAIL PROTECTED] Subject: RE: Witango-Talk: Zipping files with Witango Any zip

Re: Witango-Talk: Using VSS 6 w/Witango

2004-03-03 Thread John McGowan
Stan, I like to use CVS for source code control, specifically using TortiseCVS as a client. /John [EMAIL PROTECTED] wrote: Has anyone out there successfully integrated Witango with Visual Sourcesafe 6? It appears that Microsoft has removed the option to share VSS except with Visual Studio.

Witango-Talk: String Replace

2004-03-03 Thread webdude
A couple of years ago, in the old component zone, I downloaded a nifty taf that replaced carriage returns with and double carriage returns with , etc. I am still using this and it works great for posting text into a database keeping the html inplace for display. One part of this I deleted, wa

Witango-Talk: Unable to open to odbc

2004-03-03 Thread Fogelson, Steve
Windows 2003 Web Edition, R:Tango 5 (standard edition), Oterro 3.0 update 3 running on a 2.8 GHz single processor - multi thread turned on. Dual 30 gig SCSI drives. DB server 700 MHz dual processor dual 18 gig SCSI drives. Currently I have a few sites running on this server that are running a Wita

Re: Witango-Talk: Using VSS 6 w/Witango

2004-03-03 Thread stan
John, I like CVS also but have a few more questions: 1)  Do they have a Windows server yet? 2)  Can it be integrated directly into Witango or do you have to use a separate client? Thanks for your help! Stan TO UNSUBSCR

Witango-Talk: Problem with inserting textarea arg - truncating

2004-03-03 Thread Noel Estabrook
I am having an issue (Tango 2000 on Windows2000 Server using MS Access 2000) and can't seem to find if this is a known issue anywhere. I have some memo fields in an access database I'm writing to from a Textarea field in my form. I have wrap=virtual on. For some reason, however, if a user hap

Re: Witango-Talk: Using VSS 6 w/Witango

2004-03-03 Thread Dan Stein
Title: Re: Witango-Talk: Using VSS 6 w/Witango Did you check allow integration with other... During install. With 5.0 you need to do that or it won’t work. on 3/3/04 16:41, [EMAIL PROTECTED] at [EMAIL PROTECTED] wrote: Has anyone out there successfully integrated Witango with Visual Sourcesaf

Re: Witango-Talk: Using VSS 6 w/Witango

2004-03-03 Thread Dan Stein
Title: Re: Witango-Talk: Using VSS 6 w/Witango They have a windows server and Mac and windows clients. I too wonder if it can be integrated directly with Witango like source sage. on 3/3/04 18:50, [EMAIL PROTECTED] at [EMAIL PROTECTED] wrote: John, I like CVS also but have a few more quest

RE: Witango-Talk: Unable to open to odbc

2004-03-03 Thread Robert Shubert
Is it possible that your db is set to only allow X simultaneous connections from any one client/application per database? This type of error occurs for me when the database is unavailable (no new connections can be made). Build an ODBC connection to an Access file, then move it, Witango will give

RE: Witango-Talk: Zipping files with Witango

2004-03-03 Thread Ben Johansen
I had good luck with Info-zip http://www.info-zip.org/pub/infozip/ but, zip with pass wasn't one of the things I did with it. Here is that contents of a batch file I used c:\infozip\unzip.exe -cqq -o %fromfile% content.xml > %tofile% might help Ben Johansen - http://www.pcforge.com Authorized