receiving MMS from CF

2005-05-05 Thread Andrea Veggiani
Hi, actually i had to implement a way to update a blog using MMS. Someone has alreay tried to interact with MMS using CF? Bye Andrea Veggiani -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.308 / Virus Database: 266.11.3 - Release Date: 03/05/2005

RE: CF Version # after Updater

2005-05-05 Thread kola.oyedeji
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18515 HTH ~K -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: 04 May 2005 22:35 To: CF-Talk Subject: CF Version # after Updater Guys, How can I tell if the CFMX 6.1 Updater has been installed?

Re: Good Miva Merchant Store replacement

2005-05-05 Thread Ken Ferguson
Check out X-cart www.x-cart.com It's a PHP/MySQL app. I've used this package several times and for less than $200 it's got everything you could need and, in my opinion, could be priced much higher. Let me know if you have questions about X-Cart -- features, requirements... --Ferg Burns, John

Re: Good Miva Merchant Store replacement

2005-05-05 Thread Cutter (CF-Talk)
The online boutique at seacrets.com is a customized cfwebstore. Yes, the FB3 code took me a while to figure (and to think I'm trying to learn mach-ii now;), but I was able to put together a custom layout in a fairly short period of time. I've seen several code updates come out in the few

OT: SQL Drop Table using Variable?

2005-05-05 Thread Jeff Chastain
Sorry for the off-topic, but I am having a bit of a query issue. I have a dynamically created table that is named ' _crData123 ' where the 123 is some numeric identifier. Now, I need to be able to drop this table. The following query finds the table name and stores that name in a variable, but

RE: SQL Drop Table using Variable?

2005-05-05 Thread Robertson-Ravo, Neil (RX)
Have you outputted @crDataTable to see what the values is? Also, what is the syntax error? -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: 05 May 2005 13:35 To: CF-Talk Subject: OT: SQL Drop Table using Variable? Sorry for the off-topic, but I am having a bit

RE: SQL Drop Table using Variable?

2005-05-05 Thread Jeff Chastain
Yep, if I change 'DROP TABLE' to 'PRINT', I get '_crData4012'. The error message just says 'Line 8: Incorrect syntax near '@crDataTable'.' -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Thursday, May 05, 2005 7:41 AM To: CF-Talk Subject: RE: SQL Drop

RE: SQL Drop Table using Variable?

2005-05-05 Thread Robertson-Ravo, Neil (RX)
Only way to do it would be to sp_execsql or EXEC it as a string. -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: 05 May 2005 13:54 To: CF-Talk Subject: RE: SQL Drop Table using Variable? Yep, if I change 'DROP TABLE' to 'PRINT', I get '_crData4012'. The error

RE: Have A Client with A Specific Need. Read On to See If You're the Right CF Expert for the Job

2005-05-05 Thread Patrick McGeehan
I know I have gotten that error message before, either on 4.5 or 5. I found this after searching a little while - paraming a variable with a scope but without a variable name CFPARAM default= name=url. will cause

(YIKES) Parse someone else's CF Exception Log File

2005-05-05 Thread C. Hatton Humphrey
I've got an app that went live yesterday and even after a lot of testing I am getting reports that people are experiencing errors all over the place. I asked that the client send me his CF log folder from his server, now is there an easier way to parse through the files to see where the errors

RE: (YIKES) Parse someone else's CF Exception Log File

2005-05-05 Thread Robertson-Ravo, Neil (RX)
Extended Find in Homesite? -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] Sent: 05 May 2005 14:09 To: CF-Talk Subject: (YIKES) Parse someone else's CF Exception Log File I've got an app that went live yesterday and even after a lot of testing I am getting

RE: SQL Drop Table using Variable?

2005-05-05 Thread S . Isaac Dealey
You can't use variables in SQL server to represent objects (tables, view. etc) -- you can only use them to represent columns. If you need to use one to represent an object, then you have to either use exec() the sp_executeSQL stored procedure or an ad-hoc query in CFML using a CF variable for the

RE: (YIKES) Parse someone else's CF Exception Log File

2005-05-05 Thread COLLIE David
his CF log folder from his server, now is there an easier way to parse through the files to see where the errors are occurring than just opening them up in Notepad? If you use eclipse you could use the log file watcher that has been suggested by someone else and I bookmarked (altho as usual

Re: receiving MMS from CF

2005-05-05 Thread Douglas Knudsen
Using CF7, I'd imagine you could write, or coerce someone to write, an MMS gateway much like the SMS gateway that comes with CF7. DK On 5/4/05, Andrea Veggiani [EMAIL PROTECTED] wrote: Hi, actually i had to implement a way to update a blog using MMS. Someone has alreay tried to

CF Performance

2005-05-05 Thread Chad McCue
I will be developing a site that will be on its own dedicated server running coldfusion 7 enterprise. This site will allow people to register and once they are registered it will develope a template site for them based on the domain name they choose. There will be about 2000 registered users

RE: SQL Drop Table using Variable?

2005-05-05 Thread Jeff Chastain
Cool. I am just looking for quick and dirty right now, so this syntax did it. You learn something new everyday. Thanks everyone. -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Thursday, May 05, 2005 8:17 AM To: CF-Talk Subject: RE: SQL Drop Table using

RE: CF Performance

2005-05-05 Thread Robertson-Ravo, Neil (RX)
The latter, it would be totally unmanageable otherwise... -Original Message- From: Chad McCue [mailto:[EMAIL PROTECTED] Sent: 05 May 2005 14:25 To: CF-Talk Subject: CF Performance I will be developing a site that will be on its own dedicated server running coldfusion 7 enterprise.

Re: OT: SQL Drop Table using Variable?

2005-05-05 Thread JediHomer
try something like DECLARE @sSQL VarChar DECLARE @crDataTable char(30) SELECT @crDataTable = name FROM sysobjects WHERE xtype='U' AND name LIKE '[_]crData%' SET @sSQL = 'DROP TABLE ' + @crDataTable exec (@sSQL) HTH On 5/5/05, Jeff Chastain [EMAIL PROTECTED] wrote: Sorry for the off-topic,

Re: (YIKES) Parse someone else's CF Exception Log File

2005-05-05 Thread C. Hatton Humphrey
his CF log folder from his server, now is there an easier way to parse through the files to see where the errors are occurring than just opening them up in Notepad? If you use eclipse you could use the log file watcher that has been suggested by someone else and I bookmarked (altho as

Re: ColdFusion/Java/JSP error

2005-05-05 Thread Adam Haskell
that looks like a local package name look for a class named something like that (only replace the / with .) course if the error is non-existent entity you'll be likely to not find it...or find it in thw wrong place. Adam H On 5/4/05, Ian Skinner [EMAIL PROTECTED] wrote: If I'm getting an error

Re: SQL Drop Table using Variable?

2005-05-05 Thread Ken Ferguson
if you can't use the var to refer directly to an object... could you backdoor it and just use the var in a subselect? I know it looks a little redundant: (select name from names where name = 'ken'), but it seems like you may be able to fake the funk. (I forget what the 'obj' table is in SQL

RE: CF Performance

2005-05-05 Thread Calvin Ward
I could see someone using the server scope for this -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Thursday, May 05, 2005 9:23 AM To: CF-Talk Subject: RE: CF Performance The latter, it would be totally unmanageable otherwise... -Original

Re: (YIKES) Parse someone else's CF Exception Log File

2005-05-05 Thread Douglas Knudsen
you have these log files on your own server now? Use CF, I do this to give developers access to the logs without giving access to CFAdmin tool. Use cffile or cfhttp to read the file in and cfdump it outbamm! Easier to read then notepad for sure. DK On 5/5/05, C. Hatton Humphrey [EMAIL

RE: SQL Drop Table using Variable?

2005-05-05 Thread Robertson-Ravo, Neil (RX)
Yep, you should always executeSQL over EXEC. -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: 05 May 2005 14:28 To: CF-Talk Subject: RE: SQL Drop Table using Variable? Cool. I am just looking for quick and dirty right now, so this syntax did it. You learn

RE: SQL Drop Table using Variable?

2005-05-05 Thread Robertson-Ravo, Neil (RX)
Yep, you should always executeSQL over EXEC. -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: 05 May 2005 14:28 To: CF-Talk Subject: RE: SQL Drop Table using Variable? Cool. I am just looking for quick and dirty right now, so this syntax did it. You learn

RE: (YIKES) Parse someone else's CF Exception Log File

2005-05-05 Thread COLLIE David
If you use eclipse you could use the log file watcher that has been suggested by someone else and I bookmarked (altho as usual I haven't used it much yet but it is working in my 3.1 Eclipse). That's a really cool tool and I've added it to the list of things to install for Eclipse;

Re: (YIKES) Parse someone else's CF Exception Log File

2005-05-05 Thread JediHomer
Mike Nimer has build a CF Log Tail plugin for Eclipse which is pretty cool... http://www.mikenimer.com/eclipse/logviewer/index.cfm On 5/5/05, C. Hatton Humphrey [EMAIL PROTECTED] wrote: his CF log folder from his server, now is there an easier way to parse through the files to see

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-05 Thread Adrocknaphobia
But C# and Java are taught in the area of desktop application development. Colleges do not do enough to teach web application development, which is where ColdFusion would be a useful medium. I don't have any exact numbers, but I can only imagine that more web applications are being developed than

RE: CF Performance

2005-05-05 Thread Justin D. Scott
My question is what would be more taxing on the server, to have 2000 seperate instances of the same cfcs for each site or to have one main folder with all the cfcs and each 2000 template sites running them. Remember, ColdFusion will cache the compiled code in memory, so if you have 2000

RE: Column Header Sorting - WDDX

2005-05-05 Thread Taavon, James
Option A, columns be sortable. Only reason why I mentioned WDDX is someone told they had done it that way, client-side. I was just looking for options. If you have any, I would appreciate your suggestions. Thanks... -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]

RE: (YIKES) Parse someone else's CF Exception Log File

2005-05-05 Thread COLLIE David
Mike Nimer has build a CF Log Tail plugin for Eclipse which is pretty cool... http://www.mikenimer.com/eclipse/logviewer/index.cfm Cheers jedihomer... Might go and have to get that one too :) -- dc ~| Find out how

include not included with application variable

2005-05-05 Thread Daniel Kessler
go to: http://hhp.umd.edu/empower/consult_on_tap/why.cfm in my Application.cfm file, I have: cfset request.template_blocks = http://hhp.umd.edu/empower/template_blocks/; On that page, I have the following code: cfoutput cfinclude template=#request.template_blocks#banner.cfm cfinclude

RE: include not included with application variable

2005-05-05 Thread Justin D. Scott
in my Application.cfm file, I have: cfset request.template_blocks = http://hhp.umd.edu/empower/template_blocks/; On that page, I have the following code: cfoutput cfinclude template=#request.template_blocks#banner.cfm cfinclude template=#request.template_blocks#nav_none.cfm

Re: SQL Drop Table using Variable?

2005-05-05 Thread S . Isaac Dealey
if you can't use the var to refer directly to an object... could you backdoor it and just use the var in a subselect? I know it looks a little redundant: (select name from names where name = 'ken'), but it seems like you may be able to fake the funk. (I forget what the 'obj' table is in

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-05 Thread Matthew Small
CS programs don't worry where the output is going to, only the result. Web applications are only a subset of programming. The skills gained in college are transferable to any application type. Furthermore, web programming does not usually use the skills learned at higher levels (and CF in

RE: include not included with application variable

2005-05-05 Thread Damien McKenna
-Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] CFINCLUDE only works with file system paths (full path or relative, or with CF mappings). It does not use URLs. If you must use a URL, use CFHTTP to pull it down instead. And also remember that you cannot CFHTTP

IIS LockDown Tool UrlScan runs after/before Jrun.dll ISAPI?

2005-05-05 Thread David Manriquez
hi ppl.. i hope someone has been on the same situation before.. i need to restrict for security reason the access to /CFIDE/main/ide.cfm for RDS in CF/IIS mixture :-) my question is URlScan runs after or before Jrun.dll ISAPI FILTER? anyone knows? Thanks in advance.

RE: Column Header Sorting - WDDX

2005-05-05 Thread S . Isaac Dealey
Option A, columns be sortable. Only reason why I mentioned WDDX is someone told they had done it that way, client-side. I was just looking for options. If you have any, I would appreciate your suggestions. Thanks... Ahh client side... okay... I just needed clarification before I could

Re: CFSCHEDULE ability to log in

2005-05-05 Thread Thomas Chiverton
On Tuesday 03 May 2005 00:03, Jim McAtee wrote: Can CFSCHEDULE login to this site properly using the username and password tag attributes or is it a bit more involved? IIRC, if Windows can't auto locate your domain details, if falls back to the normal security method of prompting for them, so

Re: IIS LockDown Tool UrlScan runs after/before Jrun.dll ISAPI?

2005-05-05 Thread Adrocknaphobia
The most secure model is not to deploy the CFAdmin at all to production systems. -Adam On 5/5/05, Adrocknaphobia [EMAIL PROTECTED] wrote: To my knowledge it executes before. -Adam On 5/5/05, David Manriquez [EMAIL PROTECTED] wrote: hi ppl.. i hope someone has been on the same

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-05 Thread Adrocknaphobia
True. But I'm not saying _not_ to teach C# and Java for overall CS skills. I'm saying after the general knowledge of CS is taught, colleges should focus on web applications as they make up the majority of the jobs. There are quite a bit of skills that need to be aquired to develop enterprise web

Re: IIS LockDown Tool UrlScan runs after/before Jrun.dll ISAPI?

2005-05-05 Thread Adrocknaphobia
To my knowledge it executes before. -Adam On 5/5/05, David Manriquez [EMAIL PROTECTED] wrote: hi ppl.. i hope someone has been on the same situation before.. i need to restrict for security reason the access to /CFIDE/main/ide.cfm for RDS in CF/IIS mixture :-) my question is

RE: CF Performance

2005-05-05 Thread Burns, John D
I think he's talking about instantiating the CFC once or 2000 times, not actually writing 2000 copies of the CFC to the server. John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original Message- From: Justin D. Scott [mailto:[EMAIL

Re: (YIKES) Parse someone else's CF Exception Log File

2005-05-05 Thread Scott Weikert
I've got a little script I wrote for my own use that's similar - it's just coded to look for the exception log file in its normal place, and then display out errors 20 at a time, all grouped by the same error - viewing that log in CF Admin shows each line in the log separately, mine will group

RE: include not included with application variable

2005-05-05 Thread daniel kessler
k, thanks all. good to know as I go forward. in my Application.cfm file, I have: CFINCLUDE only works with file system paths (full path or relative, or with CF mappings). It does not use URLs. If you must use a URL, use CFHTTP to pull it down instead.

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-05 Thread Calvin Ward
However, that doesn't mean that CS programs shouldn't include web application technology and methodology, even if only as elective. I think part of the point is that web development languages are already in play at colleges and university, and as CF developers, we would like to see CF be the

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-05 Thread Matthew Small
I worked with fresh CS students, [and] they were not equipped to develop web applications as someone who had been using CF for a few years. Agreed - but that's true for any job. Experience usually trumps knowledge. But consider how many people who have been using CF for a few years, with no CS

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-05 Thread Calvin Ward
I thought he said that the majority of new corporate apps are going to be web apps... I could agree with that prediction. -Original Message- From: Matthew Small [mailto:[EMAIL PROTECTED] Sent: Thursday, May 05, 2005 10:56 AM To: CF-Talk Subject: RE: CFMX: Dissed by Breeze and FlashLite?

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-05 Thread Sean Corfield
On 5/5/05, Adrocknaphobia [EMAIL PROTECTED] wrote: I'm just saying that in the many times I worked with fresh CS students, they were not equipped to develop web applications as someone who had been using CF for a few years. My experience is that most CS students aren't equipped to build *any*

RE: Controlling printers

2005-05-05 Thread Andy Ousterhout
For posterity CFDocument lets me set print size, I can replicate number of copies functionality with a loop, so basically gives me what I need without paying $500 for an ActiveX, which seems to be the current price for this functionality Andy -Original Message- From: Andy Ousterhout

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-05 Thread Alex Sherwood
agADave Watts wrote: Get the shit out of your eyes, you simpleton. While this wasn't directed at me, this kind of response really isn't called for. Personally, when I want to insult someone on a mailing list, I try to reach for the rapier rather than the cudgel, if you know what I mean.

RE: include not included with application variable

2005-05-05 Thread S . Isaac Dealey
in my Application.cfm file, I have: cfset request.template_blocks = http://hhp.umd.edu/empower/template_blocks/; On that page, I have the following code: cfoutput cfinclude template=#request.template_blocks#banner.cfm cfinclude

RE: Basic web interface question

2005-05-05 Thread Dawson, Michael
How about an iframe on the same page? When you search for an item, then click on it, the iframe is populated with the detailed data. Then, you can submit that form, but stay on the search results as well. M!ke -Original Message- From: Dave Merrill [mailto:[EMAIL PROTECTED] Sent:

RE: Basic web interface question

2005-05-05 Thread Dawson, Michael
Other ideas? This is somewhat related, but I usually provide two save buttons: Save and Close and Save and New. Close will take you back to a list. New will submit the form and then present a blank form for the next entry. M!ke

RE: IIS LockDown Tool UrlScan runs after/before Jrun.dll ISAPI?

2005-05-05 Thread Andy Mcshane
This may be a daft question but how do you prevent/disable/uninstall the CFAdmin when installing Coldfusion? From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: Thu 05/05/2005 15:39 To: CF-Talk Subject: Re: IIS LockDown Tool UrlScan runs after/before Jrun.dll

RE: IIS LockDown Tool UrlScan runs after/before Jrun.dll ISAPI?

2005-05-05 Thread Robertson-Ravo, Neil (RX)
Delete the folder will remove it. Or a safer option is to rename or move it to a secure location. -Original Message- From: Andy Mcshane [mailto:[EMAIL PROTECTED] Sent: 05 May 2005 17:04 To: CF-Talk Subject: RE: IIS LockDown Tool UrlScan runs after/before Jrun.dll ISAPI? This may be a

OT: Color Spies

2005-05-05 Thread Greg Morphis
You guys know of any good tools which has a color spy and also shows similar - related colors (colors that go well with the color you spied)? Free would be best.. -- Auxilium meum a Domino ~| Logware (www.logware.us): a new and

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-05 Thread Calvin Ward
I completely disagree. There's never a good enough reason to start throwing around profanity and insulting people on a list intended for a group of professionals. -Original Message- From: Alex Sherwood [mailto:[EMAIL PROTECTED] Sent: Thursday, May 05, 2005 11:33 AM To: CF-Talk Subject:

Re: Column Header Sorting - WDDX

2005-05-05 Thread Rick Mason
James, Perhaps this would help do what you need: http://www.kryogenix.org/code/browser/sorttable/ Rick Mason On 5/5/05, Taavon, James [EMAIL PROTECTED] wrote: Option A, columns be sortable. Only reason why I mentioned WDDX is someone told they had done it that way, client-side. I was

RE: Color Spies

2005-05-05 Thread COLLIE David
You guys know of any good tools which has a color spy and also shows similar - related colors (colors that go well with the color you spied)? Free would be best.. One I used and a decent article for the color-ly challenged. http://www.ficml.org/jemimap/style/color/wheel.html

Re: OT: Color Spies

2005-05-05 Thread Rick Mason
Greg, This is the best one that I've found: http://wellstyled.com/tools/colorscheme2/index-en.html Rick Mason On 5/5/05, Greg Morphis [EMAIL PROTECTED] wrote: You guys know of any good tools which has a color spy and also shows similar - related colors (colors that go well with the

RE: Good Miva Merchant Store replacement

2005-05-05 Thread Connie DeCinko
I thing I hate, not about CFWebStore, but about Fusebox, is the URLs that it forces you to use. Is there no way to hide that complexity and use simple URLs? -Original Message- From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] Sent: Thursday, May 05, 2005 5:13 AM To: CF-Talk Subject:

Re: OT: Color Spies

2005-05-05 Thread Rob
Firefox has an extension https://addons.update.mozilla.org/extensions/moreinfo.php?application=firefoxcategory=Developer%20Toolsnumpg=10id=271 I think that's what you mean. As for suggesting colors, isn't that a bit subjective? I don't know how it would do that, but that plug in does not

Re: Good Miva Merchant Store replacement

2005-05-05 Thread Ray Champagne
What's wrong with using SES URL's? They aren't as simple, but if they are indexed by the SE's, then who cares? And Connie, I think you just opened up Pandora's box. Let the Fusebox debates begin! :) Ray Connie DeCinko wrote: I thing I hate, not about CFWebStore, but about Fusebox, is the

Re: OT: Color Spies

2005-05-05 Thread Greg Morphis
Yeah, I really like that one too. I can use a color spy and get a hex value and plug it into that and get a few difference variances. Thanks! On 5/5/05, Rick Mason [EMAIL PROTECTED] wrote: Greg, This is the best one that I've found: http://wellstyled.com/tools/colorscheme2/index-en.html

RE: OT: Color Spies

2005-05-05 Thread David Manriquez
Isn't free but nifty Color Wheel Pro http://www.color-wheel-pro.com/ David Manriquez Desarrollador [EMAIL PROTECTED] (+56-2) 43 00 155 -Mensaje original- De: Rick Mason [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 05 de Mayo de 2005 12:31 Para: CF-Talk

RE: Column Header Sorting - WDDX

2005-05-05 Thread Taavon, James
Rick, at first glance this looks like it will satisfy my needs. I will let you know if I have any questions. Thanks. James -Original Message- From: Rick Mason [mailto:[EMAIL PROTECTED] Sent: Thursday, May 05, 2005 12:24 PM To: CF-Talk Subject: Re: Column Header Sorting - WDDX

Re: OT: Color Spies

2005-05-05 Thread Greg Morphis
Not really suggest colors but given a color give various shades of that color that go together, colors that play well. On 5/5/05, Rob [EMAIL PROTECTED] wrote: Firefox has an extension

CFML tool similar to Horde?

2005-05-05 Thread Damien McKenna
Does anyone know of a CFML tool that is similar to Horde? Horde (http://www.horde.org/) is a PHP application framework that has lots of powerful features - authentication, authorization, file management, etc. The cool thing is that there are lots of canned applications that are available to

SQL Designer for MS SQL-Server

2005-05-05 Thread Richard Colman
Does anyone know if there is a SQL query designer (maybe similar to ACCESS designer) buried somewhere in the SQL-Server 2000 package. I have looked and looked and can't seem to find it. TNX. Rick Colman ~| Discover CFTicket

Re: CFMX: Dissed by Breeze and FlashLite?

2005-05-05 Thread Alex Sherwood
This was also after Adrocknaphobia said the following: --- Yes, your rants and paranoid conspiracy theories belong on a personal blog... for which I will avoid. --- Calling him a simpleton was warranted. -=-=-= Alex Calvin Ward wrote: I completely disagree. There's never a good enough

Re: OT: Color Spies

2005-05-05 Thread Douglas Knudsen
besides teh firefox plugin, I use stuff from here http://www.sitepoint.com/article/free-web-design-apps http://afpwebworks.com/colourschemer/ is an online colour schemer thingy DK On 5/5/05, Greg Morphis [EMAIL PROTECTED] wrote: Not really suggest colors but given a color give various

import from MySQL to MS SQL

2005-05-05 Thread Bryan Stevenson
Hey All, I've taken over a MySQL based project and I need to suck the tables and data in MS SQL Server 2000. I fired up DTS and don't see any options for importing from MySQL (and I'm not sure how MySQL stores data...what kind of file extension etc.). So...anybody have a few pointers to get

RE: SQL Designer for MS SQL-Server

2005-05-05 Thread Connie DeCinko
Might not help but the CF Report Builder has such an animal. Very easy for someone used to drag and drop like in Access. -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Thursday, May 05, 2005 9:47 AM To: CF-Talk Subject: SQL Designer for MS SQL-Server Does

RE: Good Miva Merchant Store replacement

2005-05-05 Thread Mary Jo Sminkey
I thing I hate, not about CFWebStore, but about Fusebox, is the URLs that it forces you to use. Is there no way to hide that complexity and use simple URLs? Guess I might as weigh in on this, since it's my product we are discussing! I wasn't a huge Fusebox fan before, but I have to admit, it

RE: CFML tool similar to Horde?

2005-05-05 Thread Justin D. Scott
Does anyone know of a CFML tool that is similar to Horde? I don't know how similar it is to Horde (since I've never used it), but EcoBuilder has a lot of the features you mentioned. http://www.ecobuilder.com/ --- Justin D. Scott Vice President Sceiron

Re: import from MySQL to MS SQL

2005-05-05 Thread Jochem van Dieten
Bryan Stevenson wrote: I've taken over a MySQL based project and I need to suck the tables and data in MS SQL Server 2000. I fired up DTS and don't see any options for importing from MySQL (and I'm not sure how MySQL stores data...what kind of file extension etc.). MySQL is not file

java.net.SocketException Error?

2005-05-05 Thread Deanna Schneider
Hey all, I've recently started getting this error on a site that we're testing. I haven't found much on google. The error is thrown by this function, which is in a cfc. It's intermittent, though. I can use it to browse the same file, and I don't get the error. cffunction name=serveDocument

RE: Color Spies

2005-05-05 Thread Rebecca Wells
Here's a nice one: http://www.wellstyled.com/tools/colorscheme2/index-en.html ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with

CFHTTP problem

2005-05-05 Thread David Critchley
I am trying to extract data from a textfile database, using CFHTTP. The problem I am running into is that there are null fields in the textfile database and CFHTTP is then counting two fields as one (tab seperated). For example, in my textfile there will be something like this: field1 field2

Re: import from MySQL to MS SQL

2005-05-05 Thread Bryan Stevenson
MySQL is not file based like Access. You need to have a copy of MySQL installed and running. I do JochemMySQL 4.1.11...with an imported copy of the live database ;-) As I mentionedI can't figure out how to setup the ODBC connection to my local copy of the MySQL DBthere do not seem

RE: Basic web interface question

2005-05-05 Thread Dave Merrill
In my own applications I tend to send the user back to the list page (typically not a search page, just a sortable list that's optionally paginated based on their user preferences -- these pages can become search pages pretty easily because the framework automates filters on their columns,

RE: Good Miva Merchant Store replacement

2005-05-05 Thread Connie DeCinko
That's my main concern, the guy who emails a page and says, go buy this, or check this out! Otherwise, no one looks at the URL other than to type in the location of your home page. Even via search engine, it could be 800 characters long but who cares if you just click a link to it.

Re: import from MySQL to MS SQL

2005-05-05 Thread Matt Robertson
Go to the mysql site and download myODBC. Install it and then make your ODBC connection via the Windows ODBC control panel applet. Once myODBC is in you'll have a mySQL choice on the dbtype list. -- --mattRobertson-- Janitor, MSB Web Systems mysecretbase.com

RE: import from MySQL to MS SQL

2005-05-05 Thread Connie DeCinko
Or go the other way, export out of MySQL and import into MSSQL instead of pulling in. You should be able to export in many different flavors. ~| Find out how CFTicket can increase your company's customer support efficiency

Re: SQL Designer for MS SQL-Server

2005-05-05 Thread Lee
Have you tried the built in tools in Enterprise Manager? Open Enterprise Manager and navigate down to your one of the tables and right click to open table / Query. You can visually add tables and query parameters etc. Lee On Thu, 5 May 2005 09:47:07 -0700 Richard Colman [EMAIL PROTECTED]

RE: import from MySQL to MS SQL

2005-05-05 Thread Connie DeCinko
You have to download the ODBC drivers from the MySQL web site. -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Thursday, May 05, 2005 10:32 AM To: CF-Talk Subject: Re: import from MySQL to MS SQL As I mentionedI can't figure out how to setup the ODBC

Re: import from MySQL to MS SQL

2005-05-05 Thread Richard Crawford
On Thursday 05 May 2005 10:32, Bryan Stevenson wrote: MySQL is not file based like Access. You need to have a copy of MySQL installed and running. I do JochemMySQL 4.1.11...with an imported copy of the live database ;-);-) As I mentionedI can't figure out how to setup the ODBC

Re: import from MySQL to MS SQL

2005-05-05 Thread Bryan Stevenson
Or go the other way, export out of MySQL and import into MSSQL instead of pulling in. You should be able to export in many different flavors. The 30 day eval of the MySQL admin tool I'm using only exports 1 table at a time!!so I'll go the ODBC route...but thanks Connie Cheers Bryan

Re: import from MySQL to MS SQL

2005-05-05 Thread Adrian Moreno
Bryan, CFMX ships with a MySQL driver compatible with MySQL 3.23 - 4.0.x. MySQL 4.1 changed the password algorithm, so the driver doesn't work as-is with 4.1+. Read this Technote for how setup CFMX with MySQL 4.1: http://www.macromedia.com/go/6ef0253 Alternately, you can configure MySQL to

Re: import from MySQL to MS SQL

2005-05-05 Thread Bryan Stevenson
If you insist on converting from MySQL to MS SQL Server (a concept which boggles me, to be honest), LMAO...I was waiting for this one...umm Richard...it's because MySQL no matter what anybody says is not an enterprise level DB (yet)refrerential integrity comes to mind ;-) Please...lets

Re: CFML tool similar to Horde?

2005-05-05 Thread S . Isaac Dealey
Does anyone know of a CFML tool that is similar to Horde? Horde (http://www.horde.org/) is a PHP application framework that has lots of powerful features - authentication, authorization, file management, etc. The cool thing is that there are lots of canned applications that are available

SOLVED Re: import from MySQL to MS SQL

2005-05-05 Thread Bryan Stevenson
Thanks Matt...that's sounds like the missing piece (new it would be simple) ;-) Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web:

Re: import from MySQL to MS SQL

2005-05-05 Thread Ken Ferguson
go to the mysql bin directory on the cmd line. mysqldump -u username -p -d databasename c:\dumpfile.sql password:** Now go look at that file. It's all the creates and inserts you need. I would assume this would work for you Bryan Stevenson wrote: Or go the other way, export out of MySQL

Re: import from MySQL to MS SQL

2005-05-05 Thread Adrian Moreno
If you insist on converting from MySQL to MS SQL Server (a concept which boggles me, to be honest), LMAO...I was waiting for this one...umm Richard...it's because MySQL no matter what anybody says is not an enterprise level DB (yet)refrerential integrity comes to mind ;-) I think Sabre

Re: Good Miva Merchant Store replacement

2005-05-05 Thread James Edmunds
I have had good success with Cartweaver: http://cartweaver.com/ I began using it originally because it was all CF, with all the code being very well documented, which meant that I could customize it easily. I have it in use on two web sites now, in neither case out of the box, but rather

Re: import from MySQL to MS SQL

2005-05-05 Thread Stephen Moretti
Bryan Stevenson wrote: Or go the other way, export out of MySQL and import into MSSQL instead of pulling in. You should be able to export in many different flavors. The 30 day eval of the MySQL admin tool I'm using only exports 1 table at a time!!so I'll go the ODBC route...but

RE: CFML tool similar to Horde?

2005-05-05 Thread Damien McKenna
Very interesting, S. I'll keep an eye on it. Thanks. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Thursday, May

Re: import from MySQL to MS SQL

2005-05-05 Thread Matt Woodward
I'm not sure ODBC drivers exist for MySQL. Although I work with both platforms, I've never had a need to connect a SQL Server database to a MySQL database. As others have suggested, by far the simplest way to do this is to download the ODBC drivers from the MySQL web site. Install those on

Re: import from MySQL to MS SQL

2005-05-05 Thread Richard Crawford
On Thursday 05 May 2005 10:53, Bryan Stevenson wrote: LMAO...I was waiting for this one...umm Richard...it's because MySQL no matter what anybody says is not an enterprise level DB (yet)refrerential integrity comes to mind ;-);-) Heh. Well, note that I didn't go into *why* it boggled my

  1   2   >