Re: Flat File as a Database?

2009-01-26 Thread Kym Kovan
Bob Wright wrote: Hi Kym, thanks for the reply. Very good question. The criteria is really No Database. There is more detailed and specific language than that, but it pretty much sums it up. As you pointed out, a filesystem is certainly a database, of sorts. I have been pondering it.

Re: Image Gallery/Scroller from Recordset

2009-01-26 Thread Anthony Doherty
Azadi, could you explain it a little more, i need to do something similar to the scroller you have on your site! do u have an email address i can reach you at possibly?? thanks Anthony ~| Adobe® ColdFusion® 8 software 8 is

RE: Flat File as a Database?

2009-01-26 Thread William Seiter
Curious, you mentioned that a database can't be 'installed' here. Someone had mentioned earlier that you might be able to use an Access database. I have very limited exposure to them, but beyond creating the connection in the CF Administrator, I think all that is done is the database file is

Re: Image Gallery/Scroller from Recordset

2009-01-26 Thread Azadi Saryev
Anthony, sorry, had no Internet here for 1/2 a day... you can email me to azadi at sabai-dee dot com if you want to. i will need to see the styles you have defined for your #carshow div tag - please include those. i have also just seen your post on EE and requested the same there... Azadi

Re: Flat File as a Database?

2009-01-26 Thread Maureen Barnett
You can use a delimited text file (flat file) by setting up an ODBC data source that uses the Microsoft text driver for .txt or .csv files. I find it easier to use tab delimited files instead of comma delimited because occasionally you'll encounter commas in the data. The Microsoft text

Re: CF 8 verity collections disappearing

2009-01-26 Thread Tim Mixell
We recently upgraded to CF8 in our production environment and have begun experiencing the exact same issue w/ Verity going missing for no apparent reason. Did you ever find a solution? ~| Adobe® ColdFusion® 8 software 8 is the

Re: Flat File as a Database?

2009-01-26 Thread Mike Chabot
The terminology you are using is inconsistent since you say no database but flat file is a type of database. Back before the Web existed, flat file databases were the most common types of databases. FileMaker Pro was a flat file database product, and it was the top selling database product for a

RE: Flat File as a Database?

2009-01-26 Thread Andy Matthews
Bob... You never did clarify if by flat file you mean text file? andy -Original Message- From: Bob Wright [mailto:thecfprogram...@gmail.com] Sent: Monday, January 26, 2009 1:00 AM To: cf-talk Subject: Re: Flat File as a Database? Thanks all for the replies. It sounds like some of

Re: CF 8 verity collections disappearing

2009-01-26 Thread Tim Mixell
Well, it turns out that we neglected to uninstall CF7 from one of the production servers... That'll do it!!! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Flat File as a Database?

2009-01-26 Thread Scott Stewart
MX 7 has some decent capabilities with XML, if that's a viable option, I've done basic CRUD with XML, however if you have data that's in any way relational it gets complicated really quickly; not to mention, the XML files can be cumbersome and get huge pretty quickly if you're capturing data

Re: Image Gallery/Scroller from Recordset

2009-01-26 Thread Anthony Doherty
Hi Azadi, No Problem i just replied to your comments on EE as well! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f

RE: SQL query sorting problem

2009-01-26 Thread Dawson, Michael
The proper solution would be a separate table that contains the state codes with their desired sort order. That table is joined to the main table. This is probably best if you have to list all 50+ states. If you only need to list three states, then I would use CASE as Azadi suggested. In

redirect question SERVER_NAME script_name

2009-01-26 Thread Paul Ihrig
hey guys.. trying to set up a ton of redirects in application.cfm they don't seem to be working. i want if url is www.morel/tasty/ to goto a addy... cfif #CGI.SERVER_NAME# CONTAINS www.morel.com/tasty/ cflocation url=/products/index.cfm?n1Id=1n2Id=7 addtoken=no /cfif not sure if i

RE: redirect question SERVER_NAME script_name

2009-01-26 Thread Adrian Lynch
Just out put it. Dump the CGI scope to see the parts you need. SCRIPT_NAME will include the file name. Also be careful of case. Why not FindNoCase()? Adrian -Original Message- From: Paul Ihrig [mailto:pih...@gmail.com] Sent: 26 January 2009 15:13 To: cf-talk Subject: redirect

Re: Flat File as a Database?

2009-01-26 Thread Claude Schneegans
the flat file will be effectively a database. May be the problem is your interpretation of the term flat file. A database is a structured set of data. A flat file is an unstructured file, then by definition cannot be a database. May be you (your non idiot client) means independent file or stand

RE: Removing spaces from a string?

2009-01-26 Thread Adrian Lynch
Trim() removes all white space, front and back. So you'll need to do many replaces or use REReplace to get at the tabs, carriage returns and linefeeds too. Adrian -Original Message- From: Joel Polsky [mailto:jsp2...@hotmail.com] Sent: 25 January 2009 22:49 To: cf-talk Subject: Re:

Re: redirect question SERVER_NAME script_name

2009-01-26 Thread Casey Dougall
On Mon, Jan 26, 2009 at 10:12 AM, Paul Ihrig pih...@gmail.com wrote: hey guys.. trying to set up a ton of redirects in application.cfm they don't seem to be working. i want if url is www.morel/tasty/ to goto a addy... cfif #CGI.SERVER_NAME# CONTAINS www.morel.com/tasty/

Re: redirect question SERVER_NAME script_name

2009-01-26 Thread Paul Ihrig
nm... cfif #CGI.SERVER_NAME# CONTAINS www.morel.ca AND #SCRIPT_NAME# CONTAINS /tasty/ cflocation url=/products/index.cfm?n1Id=1n2Id=7 addtoken=no /cfif On Mon, Jan 26, 2009 at 10:12 AM, Paul Ihrig pih...@gmail.com wrote: hey guys.. trying to set up a ton of redirects in application.cfm

Re: redirect question SERVER_NAME script_name

2009-01-26 Thread Casey Dougall
On Mon, Jan 26, 2009 at 10:23 AM, Paul Ihrig pih...@gmail.com wrote: nm... cfif #CGI.SERVER_NAME# CONTAINS www.morel.ca AND #SCRIPT_NAME# CONTAINS /tasty/ cflocation url=/products/index.cfm?n1Id=1n2Id=7 addtoken=no /cfif I'd still do that in a cfswitch instead, and get rid of www

Re: Flat File as a Database?

2009-01-26 Thread Claude Schneegans
flat file databases were the most common types of databases. I may be wrong, but I think that by definition, a flat file contains unstructured data and a database contains structured data. Even a GIF or a JPEG image is not a flat file. Filemaker, Access, dBase, Clipper, Foxpro use stand alone

Re: redirect question SERVER_NAME script_name

2009-01-26 Thread Jason Fisher
cgi.server_name will only give you the www.morel.com part, so you'll need to look at parts of cgi.sript_name as well to get subdir's ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the

Re: Flat File as a Database?

2009-01-26 Thread Dave Watts
May be the problem is your interpretation of the term flat file. A database is a structured set of data. A flat file is an unstructured file, then by definition cannot be a database. Well, no, that's not correct. The structure of a database can be as simple as a file format. A flat file can

Re: Flat File as a Database?

2009-01-26 Thread Claude Schneegans
Please correct me if I am wrong on this. You're perfectly correct. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f

Re: redirect question SERVER_NAME script_name

2009-01-26 Thread Greg Luce
Yeah, SERVER_NAME is only going to have the server name, not the subdirectory. You'll have to look at CF_TEMPLATE_PATH or PATH_TRANSLATED I think to find tasty. Greg On Mon, Jan 26, 2009 at 10:12 AM, Paul Ihrig pih...@gmail.com wrote: hey guys.. trying to set up a ton of redirects in

Re: Flat File as a Database?

2009-01-26 Thread Dave Watts
I may be wrong, but I think that by definition, a flat file contains unstructured data and a database contains structured data. A flat file can contain structured data, but it is not relational. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest

Re: redirect question SERVER_NAME script_name

2009-01-26 Thread Paul Ihrig
man.. this only works if there is a folder called /tasty/ i need it to work with out the folder being there., On Mon, Jan 26, 2009 at 10:23 AM, Paul Ihrig pih...@gmail.com wrote: nm... cfif #CGI.SERVER_NAME# CONTAINS www.morel.ca AND #SCRIPT_NAME# CONTAINS /tasty/ cflocation

Re: redirect question SERVER_NAME script_name

2009-01-26 Thread Greg Luce
You forgot the CGI scope on the second condition here: cfif #CGI.SERVER_NAME# CONTAINS www.morel.ca AND #SCRIPT_NAME# CONTAINS /tasty/ cflocation url=/products/index.cfm?n1Id=1n2Id=7 addtoken=no /cfif Should be CGI.SCRIPT_NAME Greg On Mon, Jan 26, 2009 at 10:31 AM, Greg Luce

RE: Flat File as a Database?

2009-01-26 Thread Terry Troxel
Bob, I realize I am coming in late here, but what about a tab or comma delimited file? You can link it to an Access Data source and by doing that you can add/edit/delete records easily as long as your delimited list contains a unique key column. Terry Troxel -Original Message- From: Bob

Re: SQL query sorting problem

2009-01-26 Thread Chris Blackwell
DBMS is MySQL 5. I have a report that is generated for cities within several states. The states are designated by their two letter postal abbreviations and are in a certain order. For example: 1. NY 2. CA 3. FL I would like the records of the report sorted by the original state order, then

Printing out a List of all my servers data sources

2009-01-26 Thread Terry Troxel
How do I go about printing out a list of all my CFadmin data sources with the location of the source files as well? I would like it for back up purposes in order to recreate the dsn's if I want to move the server. Terry Troxel

Re: CFENCODE Decoder

2009-01-26 Thread Ennio Bozzetti
How can I decode a CFENCODE.exe file? One of my developers deleted a file w/o backing it up. *_* Do any of you out there have one of those handy litte tools to decode a CFENDODE.exe'ed file? You can email me of list if you want to remain anonymous :) Thanks! -- Scott Van Vliet

Re: Flat File as a Database?

2009-01-26 Thread Bob Wright
You never did clarify if by flat file you mean text file? Yes, you are correct about that, sorry. I mean a delimited text file. Specifically, I am precluded from installing any database, including using access database files. bob

Re: Printing out a List of all my servers data sources

2009-01-26 Thread Jason Fisher
You can get the list of DSNs like so: /* Get factory */ variables.fObj = createObject(java, coldfusion.server.ServiceFactory); /* Get datasource service */ variables.dsService = variables.fObj.getDataSourceService(); /* Get data sources */ var dsFull = variables.dsService.getNames(); That will

Re: Flat File as a Database?

2009-01-26 Thread Greg Morphis
What about databases you dont have to install? Like sqlite? I don't think CF has the greatest compability with it (I think I ran into problems with using cfqueryparam and OOP) but it'd certainly be better than working with a freaking .txt file. Just my 2 pennies.. and yea, I'll take the change On

Re: Flat File as a Database?

2009-01-26 Thread Rizal Firmansyah
Just an idea: I think you can use MS ODBC to deal with delimited text file as a database or You can do this: 1. Convert the text file as a recordset. This can be done by converting your delimited text file (CSV) to CF Query (recordset) 2. Use QoQ for select operation against the recordset. 3.

Re: redirect question SERVER_NAME script_name

2009-01-26 Thread Paul Ihrig
ok. it dosnt work if there is no folder on the server called tasty CGI.SCRIPT_NAME it does work if there is a folder. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Flat File as a Database?

2009-01-26 Thread Mike Soultanian
I'm not sure exactly how it's done, but I know fusebuilder stores all of its data in WDDX format in a text file. Might work for your purposes. http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-c20.htm Mike Bob Wright wrote: Thanks all for the replies. It sounds like some of you are in

Re: Printing out a List of all my servers data sources

2009-01-26 Thread Paul Kukiel
Can't you get all that using the Admin API? http://livedocs.adobe.com/coldfusion/8/htmldocs/basiconfig_37.html Paul. On Mon, Jan 26, 2009 at 11:18 AM, Jason Fisher ja...@wanax.com wrote: You can get the list of DSNs like so: /* Get factory */ variables.fObj = createObject(java,

Re: Flat File as a Database?

2009-01-26 Thread Dave Watts
Yes, you are correct about that, sorry. I mean a delimited text file. Specifically, I am precluded from installing any database, including using access database files. I would second Greg's suggestion, except that I'd recommend you look at Apache Derby, which is included with CF 8. You can

Re: CFENCODE Decoder

2009-01-26 Thread Alan Rother
What version of CF was it encoded with? It makes a difference... On Mon, Jan 26, 2009 at 9:08 AM, Ennio Bozzetti enniobozze...@gmail.comwrote: How can I decode a CFENCODE.exe file? One of my developers deleted a file w/o backing it up. *_* Do any of you out there have one of those handy

Re: Flat File as a Database?

2009-01-26 Thread Shannon Peevey
What about creating a CFC which handles your delimited text file (using CFFILE)? just mimic the sql commands if its easier to remember: insert delete update select Within your select you would wrap your matching line in a ListToArray() function and pass your result sets back as a query. Then it

Re: Flat File as a Database?

2009-01-26 Thread Shannon Peevey
Within your select you would wrap your matching line in a ListToArray() function and pass your result sets back as a query. Just to clarify, you would split the line into and array, and build a custom query: http://www.devx.com/webdev/Article/27963

Re: Flat File as a Database?

2009-01-26 Thread Brian Love
Not sure if this got mentioned already, but there are DBs that run off a single file, such as sqlite. I found sqlite incredibly fast and easy to use with Adobe Air. There is also a jdbc sqlite connection, so talking to it with CF is cake. Not sure if that will qualify in your case (as a

Re: Printing out a List of all my servers data sources

2009-01-26 Thread Gerald Guido
QD cfset conn = createObject(java,coldfusion.server.ServiceFactory) !--- Create a List to loop over --- cfset dbList = listSort(structKeyList(conn.DataSourceService.getDatasources()),textnocase) cfoutput cfloop list=#dbList# index=dsnName #dsnName# br / /cfloop /cfoutput

Cfwindow caching

2009-01-26 Thread Tony Bentley
Has anyone experienced the same issue I have had? I have to create a time stamp to keep the window from caching and then remove the window from cache every time. There is nothing in CFdocs that says you have to do this. However, if you do not then the window object caches the contents and

RE: Printing out a List of all my servers data sources

2009-01-26 Thread Terry Troxel
Gerald, This works great. Now where do I go to print the source file name and location as that's the reason for all this as I can print the page in CFAdmin that lists all my datasources. Terry -Original Message- From: Gerald Guido [mailto:gerald.gu...@gmail.com] Sent: Monday, January

Copying files to a network directory

2009-01-26 Thread Nupur Gupta
This may be an obvious question. There is a file what I want to copy using coldfusion to a directory that I have write permission to -. However when I try this, I get an access denied error. Do I need to use ftp to copy files over, or the like? Thanks a great deal. NG

Re: Flat File as a Database?

2009-01-26 Thread Jochem van Dieten
On Sun, Jan 25, 2009 at 6:51 PM, Bob Wright wrote: I have a need to build a site which will not have access to a database. Instead, the client has specified that I must use a flat file. On this flat file, I need to be able insert, update, and select Honestly, I don't even know where to

Re: Flat File as a Database?

2009-01-26 Thread Shannon Peevey
ie /etc/{group,passwd,resolv.conf} On Mon, Jan 26, 2009 at 9:27 AM, Dave Watts dwa...@figleaf.com wrote: May be the problem is your interpretation of the term flat file. A database is a structured set of data. A flat file is an unstructured file, then by definition cannot be a database.

Re: Printing out a List of all my servers data sources

2009-01-26 Thread Dave Watts
How do I go about printing out a list of all my CFadmin data sources with the location of the source files as well? I would like it for back up purposes in order to recreate the dsn's if I want to move the server. If you have access to the server's filesystem, just grab neo-datasource.xml if

RE: Copying files to a network directory

2009-01-26 Thread Andy Matthews
Nope. As long as the user under which CF us running has permissions to the file server you're golden. Just remember that CF probably isn't running as you. -Original Message- From: Nupur Gupta [mailto:nupurgupta0...@gmail.com] Sent: Monday, January 26, 2009 1:23 PM To: cf-talk Subject:

Re: How do I traverse XML using ColdFusion?

2009-01-26 Thread Chris Jordan
I'd like to hit the list up again on this subject if I could. Ezra helped me immensley, but I'm still having trouble. First, just so Ezra knows, this authHeader business you gave me worked just fine. I'm authenticating and am able to call methods. BUT, it's not working like I expected -- or

RE: From and ReplyTo address, CFMAIL and Spam filters...

2009-01-26 Thread Mosh Teitelbaum
Les Mizzell wrote: They suggested switching all cfmail from parameters to a trusted address like fo...@mysite.com, and simply having the address of the sender in the body somewhere. Les: So long as CF is authenticating against their mail server with a username and password, it shouldn't

RE: Copying files to a network directory

2009-01-26 Thread Mosh Teitelbaum
Nupur Gupta wrote: This may be an obvious question. There is a file what I want to copy using coldfusion to a directory that I have write permission to -. However when I try this, I get an access denied error. Do I need to use ftp to copy files over, or the like? Nupur: When trying to access

Re: Copying files to a network directory

2009-01-26 Thread Dave Watts
When trying to access a network share, you have to either have the CF service run as a user with a mapped drive to the share or use the file's UNC path (\\server\share) in your CF code. By default, ColdFusion does not run as a standard user account (which can have mapped drives); instead, it

Re: From and ReplyTo address, CFMAIL and Spam filters...

2009-01-26 Thread Dave Watts
Oftentimes, SMTP servers are configured to only accept messages with a From header that includes the SMTP server's domain. However, if the server supports authentication (as they all should to better prevent Spam), the authentication tends to override the previous requirement. If the domain

Re: How do I traverse XML using ColdFusion?

2009-01-26 Thread Chris Jordan
bump? :o/ On Mon, Jan 26, 2009 at 1:49 PM, Chris Jordan chris.s.jor...@gmail.comwrote: I'd like to hit the list up again on this subject if I could. Ezra helped me immensley, but I'm still having trouble. First, just so Ezra knows, this authHeader business you gave me worked just fine. I'm

Re: How do I traverse XML using ColdFusion?

2009-01-26 Thread Ezra Parker
This is a bit of a stab in the dark, as I believe that I am seeing an empty response due to the fact that I am not authenticated, but give this a try (continuing from the last line of your script block): response = ws.getYears(args); result = response.getYearsResult().get_any(); At this point,

Re: How do I traverse XML using ColdFusion?

2009-01-26 Thread Chris Jordan
Ezra! Bless you for responding with even a stab in the dark. If this is it, I'll scream because I thought I tried that already, but I'm gonna give it a go right now. Stay tuned... :o) Chris On Mon, Jan 26, 2009 at 4:27 PM, Ezra Parker e...@cfgrok.com wrote: This is a bit of a stab in the dark,

Re: From and ReplyTo address, CFMAIL and Spam filters...

2009-01-26 Thread Les Mizzell
So long as CF is authenticating against their mail server with a username and password, it shouldn't matter what address is in the From header. Make sure that CF logs in to the SMTP server with a valid username/passw] According to HostMySite - sending from the server isn't the problem. All

Re: From and ReplyTo address, CFMAIL and Spam filters...

2009-01-26 Thread Dave Watts
However, heavy handed spam/spoof filters elsewhere on the way to the final destination are looking at email being sent by mail server A, but a from address of mail server B, and are filtering because of the domain mismatch. That's not heavy handed, it's proper configuration. That's why we

Re: From and ReplyTo address, CFMAIL and Spam filters...

2009-01-26 Thread Les Mizzell
That's not heavy handed, it's proper configuration. That's why we have things like SPF. Bad choice of words! My bad! We all know what I meant though... ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

Re: SQL query sorting problem

2009-01-26 Thread Azadi Saryev
Mike, the way i read OP's question is that the order of states is not fixed, but user-defined: i.e. a user selects several states in several select lists and the data returned must be in the order of selected states. but in case of pre-defined order of states, your suggestion will be perfect.

Re: SQL query sorting problem

2009-01-26 Thread Azadi Saryev
that's very neat, chris! i didn't think one could use FIND_IN_SET in ORDER BY clause - live and learn! Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Chris Blackwell wrote: You can do this in a very easy and elegant manner with MySQL. No need for join or nasty case statements SELECT *

Re: Cfwindow caching

2009-01-26 Thread Azadi Saryev
try adding refreshOnShow:true to your cfwindow's parameters ? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Tony Bentley wrote: Has anyone experienced the same issue I have had? I have to create a time stamp to keep the window from caching and then remove the window from cache

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Torrent Girl
I am having the same problem with DW I found this posting online http://kb.adobe.com/selfservice/viewContent.do?externalId=kb402776 followed the directions and it is still crashing. I have been so unproductive behind this that i decided to install eclipse. That became a nightmare as there is

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Torrent Girl
I am having the same problem with DW I found this posting online http://kb.adobe. com/selfservice/viewContent.do?externalId=kb402776 followed the directions and it is still crashing. I have been so unproductive behind this that i decided to install eclipse. That became a nightmare as

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Matthew Williams
At what point is your CFEclipse install not working? Matthew Williams Geodesic GraFX ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Rob Parkhill
You can try this if you are still interested in Eclipse http://www.yoxos.com/ondemand/ it basically allows you to choose what plugins/whatever you want for Eclipse, and then puts it all into a single package that you download and install (1 step, pretty sure anyways) HTH Rob On Mon, Jan 26,

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Mike Kear
I have found Dreamweaver to be a very stable application. From version 8 to CS3 to CS4.If you were really interested in solving your problem, I'd get rid of it completely and start again from the beginning. I'd adivise: [1] Uninstalling it completely. [2] Delete any folders or files that

Submitting larger data using cfajaxproxy

2009-01-26 Thread dev losh
Hi all, I'm submitting my form using cfajaxproxy(using remote method invocation). it is working fine with small data. my page is having a text area. if we give larger text say like 500 chars, the sumbit action is throwing javascript error. the CFC is not able to handle it. is there any

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Matthew Williams
But, does it actually explain how to set up a project and actually use the UI? ;) I'm already in the middle of getting a tutorial together for setting up a new CFEclipse project. I don't mind releasing it, but it won't be finished until at least tomorrow. Matthew Williams Geodesic GraFX

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Aaron Rouse
I have been using DW from 8 to CS4 and the only times I had major problems with it was when I had a computer issue unrelated to the software. Although I will admit sometimes uninstalling it completely and putting DW back on would fix things for awhile. On Mon, Jan 26, 2009 at 10:04 PM, Mike Kear

Submitting larger data using cfajaxproxy: throwing error

2009-01-26 Thread dev losh
Hi all, I'm submitting my form using cfajaxproxy(using remote method invocation). it is working fine with small data. my page is having a text area. if we give larger text say like 500 chars, the sumbit action is throwing javascript error. the CFC is not able to handle it. is there any

Re: Submitting larger data using cfajaxproxy: throwing error

2009-01-26 Thread Brad Wood
Is there a CF error being thrown? (the CFC is not able to handle it) ~Brad - Original Message - From: dev losh devl...@gmail.com To: cf-talk cf-talk@houseoffusion.com Sent: Monday, January 26, 2009 10:14 PM Subject: Submitting larger data using cfajaxproxy: throwing error Hi all,

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Matthew Williams
I ditched DW when I switched to an AMD Turion 64x2 processor. DW spikes 50% on one of the dual cores and stays that way until a drop down menu is selected. The issue showed up on the Adobe boards, but there was never a resolution that I saw. I'm pretty sure this was only with CS3... but I

Re: Submitting larger data using cfajaxproxy: throwing error

2009-01-26 Thread Kumar Shah
Does the Text Area have new lines in it. I remember reading about there being an issue with JS and Textarea with afajaxproxy when the text has newlines. -- Kumar Shah http://www.coldfusion-ria.com/Blog/ On Mon, Jan 26, 2009 at 11:22 PM, Brad Wood b...@bradwood.com wrote: Is there a CF error

Re: Submitting larger data using cfajaxproxy

2009-01-26 Thread James Holmes
I assume the code sends a GET to the proxy - convert this to a POST and you should be fine: http://www.cfquickdocs.com/cf8/?getDoc=cfajaxproxy setHTTPMethod(method) Sets the HTTP method to use for the call. The function parameter is a case-insensitive string, and must have one of the following

Re: SQL query sorting problem

2009-01-26 Thread Jim McAtee
Michael, Thanks. That worked perfectly. Jim - Original Message - From: Dawson, Michael m...@evansville.edu To: cf-talk cf-talk@houseoffusion.com Sent: Monday, January 26, 2009 8:07 AM Subject: RE: SQL query sorting problem The proper solution would be a separate table that contains

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Eric Roberts
I have experienced DW crashing...but i don't think that was since the first or second version (5 6 I believe)that came out after Macromedia bought Allaire. I don't recall having that issue with 8. As far as eclipse...I have had a problem with an install just not being right. All i had to

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Dave l
surely it couldn't be vista! ;) cfeclipse isn't difficult and there are plenty of blogs that show you how. 1. dl install eclipse 2. install cfeclipse, follow instructions on http://www.cfeclipse.org/download.cfm 1. Select the Help-Software Updates-Find and install menu option. 2. On

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Torrent Girl
I have found Dreamweaver to be a very stable application. From version 8 to CS3 to CS4.If you were really interested in solving your problem, I'd get rid of it completely and start again from the beginning. I'd adivise: [1] Uninstalling it completely. [2] Delete any folders or files that

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Torrent Girl
surely it couldn't be vista! ;) Nope I am on XP. Ok let's start with your instructions. You said go download eclipse. I have one question - WHICH VERSION? I downloaded the classic which i assumed i needed since I am not working in java but apparently I got the wrong

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Torrent Girl
surely it couldn't be vista! ;) cfeclipse isn't difficult and there are plenty of blogs that show you how. 1. dl install eclipse 2. install cfeclipse, follow instructions on http://www.cfeclipse. org/download.cfm Sorry I meant - WHCIH VERSION OF ECLIPSE DO I DOWNLOAD?

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Torrent Girl
At what point is your CFEclipse install not working? Matthew Williams Geodesic GraFX Ok let's start with the tut posted on this thread. here is the link: http://www.cfeclipse.org/download.cfm here is step 1 Select the Help-Software Updates-Find and install menu option. Ok here is the

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Torrent Girl
But, does it actually explain how to set up a project and actually use the UI? ;) I'm already in the middle of getting a tutorial together for setting up a new CFEclipse project. I don't mind releasing it, but it won't be finished until at least tomorrow. Matthew Williams Geodesic GraFX No

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Torrent Girl
I have experienced DW crashing...but i don't think that was since the first or second version (5 6 I believe)that came out after Macromedia bought Allaire. I don't recall having that issue with 8. As far as eclipse...I have had a problem with an install just not being right. All i had to

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Mike Soultanian
Torrent Girl wrote: Not in the mood for jokes. My name has nothing to do with software. Why should I have to I would have thought it did. My guess is that you installed hacked software and that's causing your problems. That, or you've downloaded hacked software and are trying to get a fix

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread James Holmes
http://trac.cfeclipse.org/cfeclipse/ Currently CFEclipse does not work well with Ganymede (line numbers are broken). If you want stable - we recommend you continue using Eclipse 3.3 (Europa) for a stable user experience. http://trac.cfeclipse.org/cfeclipse/wiki/InstallingCfeclipse You must

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Dave l
Sorry I meant - WHCIH VERSION OF ECLIPSE DO I DOWNLOAD? ummm, any of them... classic is fine ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Peter Boughton
I would have thought it did. My guess is that you installed hacked software and that's causing your problems. That, or you've downloaded hacked software and are trying to get a fix for it. WTF? BitTorrent is just a distribution method. Where did this hacked software crap come from? Not

Re: Dreamweaver CRASHES!!!

2009-01-26 Thread Peter Boughton
Sorry I meant - WHICH VERSION OF ECLIPSE DO I DOWNLOAD? Best to grab 3.3 Classic. It is possible to use 3.4, but there are more issues that way. ~| Adobe® ColdFusion® 8 software 8 is the most important and