Re: check validity of zip file with cfzip

2012-11-29 Thread Marco Antonio C. Santos
Seamus, after several problems regarding open corrupted zip files I'm using this code to validate before open that: cfscript var local = {}; local.pathZip = arguments.pathZip; local.pathEXE = application.dir_exe '7z '; /cfscript cfset local.command = 'cmd /c ' local.pathEXE ' t '

Re: Reading a certain range of a file

2012-03-07 Thread Marco Antonio C. Santos
cfflush(ie. interval=500) can't do that? On Wed, Mar 7, 2012 at 8:56 AM, Chad Baloga cbal...@gmail.com wrote: Does anyone know how I can read a certain byte range of a file. I am basically trying to read 1-500 bytes, 501-1000 bytes, etc then output each chunk with cfcontent. I have the

Re: Web Service Over SSL

2011-03-09 Thread Marco Antonio C. Santos
Certman is your friend: http://certman.riaforge.org/ Cheers Marco Antonio On Wed, Mar 9, 2011 at 11:48 AM, Brian Polackoff bpolack...@gmx.com wrote: Hey everyone. I have run into the age old issue that Coldfusion JRE does not have included a ssl certificate (from GoDaddy) used on a remote

Re: Web Service Over SSL

2011-03-09 Thread Marco Antonio C. Santos
- From: Marco Antonio C. Santos [mailto:marcoacsan...@gmail.com] Sent: Wednesday, March 09, 2011 11:44 AM To: cf-talk Subject: Re: Web Service Over SSL Certman is your friend: http://certman.riaforge.org/ Cheers Marco Antonio On Wed, Mar 9, 2011 at 11:48 AM, Brian Polackoff bpolack

Re: Big XML files processing Really s-l-o-w. Solution?

2011-02-17 Thread Marco Antonio C. Santos
In our company I found a solution to parse big XML files in ColdFusion applications: 1) using xml2csv(http://www.a7soft.com/xml2csv.html), a very fast application to convert XML to csv file; 2) with SQL Server BULK INSERT to insert in our database Using this approach reduced time in 100 times.

Re: iText PDF signature

2010-03-12 Thread Marco Antonio C. Santos
We're using iText-2.0.7.jar + javaLoader + CF 7 Std with success. Please take a look this code to insert an image and a description in your PDF signed: cffunction name=signPDF cfargument name=pathPDF required=yes cfargument name=pathPDFSigned required=yes cfargument name=pathArqPFX

Re: Best way to create an .xls file from a page

2008-10-28 Thread Marco Antonio C. Santos
Another good option is jExcel integration: http://www.cfinsider.com/index.cfm/2008/1/3/Modify-Excel-Spreadsheets-with-ColdFusion-the-easy-way Cheers Marco Antonio On Tue, Oct 28, 2008 at 5:37 AM, Stephane Vantroyen [EMAIL PROTECTED] wrote: Hi, another possibility is to use the POI Utility

Re: Execute a Perl script.

2008-10-06 Thread Marco Antonio C. Santos
Ian, do you can try with systemcommand.cfc: http://systemcommand.riaforge.org/ It's a very good application when do you need to execute bat files. Cheers Marco Antonio On Mon, Oct 6, 2008 at 1:49 PM, Ian Skinner [EMAIL PROTECTED] wrote: Yeah I see now... I wasn't paying enough attention.

Another open source CF CMS

2008-06-04 Thread Marco Antonio C. Santos
Looks like very interesting: http://www.gosava.com/sava/ Cheers Marco Antonio ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: problems with cflocation and redirect will never complete.

2008-04-25 Thread Marco Antonio C. Santos
Casey, my suggestion is to change your cflocation with Java redirect routine. Please try this: cfscript getPageContext().getResponse().sendRedirect(local.YourURL); /cfscript Cheers Marco Antonio On Fri, Apr 25, 2008 at 3:17 PM, Casey Dougall [EMAIL PROTECTED] wrote: Hi, I'm

Re: AutoSuggest from a database query

2008-02-16 Thread Marco Antonio C. Santos
Ali I'll suggest you to use jQuery. This javascript library haves very nice autocomplete examples: http://jquery.bassistance.de/autocomplete/ http://www.dyve.net/jquery/?autocomplete Dan G. Switzer creates this(with ColdFusion in server side):

Re: Reading Excel..

2008-02-15 Thread Marco Antonio C. Santos
I like jExcel. You could try this simple script with jExcel(instantiated with javaLoader): !--- path to Excel sheet --- cfset filepath = C:\Inetpub\wwwroot2\tryExcel_CF.xls cfscript wfile = createObject(java,java.io.File).init(filepath); workbookPai =

Re: Using JavaLoader with UJAC creates memory leak

2008-02-08 Thread Marco Antonio C. Santos
Tom, may be an OT but Mark Mandel recommends instantiate javaLoader in server scope. Please look this link: http://www.compoundtheory.com/?action=displayPostID=212 Cheers Marco Antonio On Feb 8, 2008 12:32 PM, Tom Chiverton [EMAIL PROTECTED] wrote: I am using JavaLoader to load the UJAC pdf

Re: Excel to Query

2008-01-31 Thread Marco Antonio C. Santos
Richard, this is the link to download that scripts: http://bennadel.com/index.cfm?dax=blog:474.downloadcodezip Cheers Marco Antonio On Jan 31, 2008 12:23 PM, Richard White [EMAIL PROTECTED] wrote: hi marco have you or anyone else used this, this does look very interesting? thanks do

Re: Excel to Query

2008-01-31 Thread Marco Antonio C. Santos
Richard I'm using jExcel with CF. Running an example with column formatted works fine. Please look this text from an Excel spreadsheet: MATRIC NAME LOT VALUE 8545558 JUNIOR VARGAS RIO LUZ 1.522,25 (Brazilian values have a comma to hundred and point to thousand, ok?) This is the result after

Re: Excel to Query

2008-01-31 Thread Marco Antonio C. Santos
Richard, my jExcel integration with CF haves 1 year! I tried to send my code for you( [EMAIL PROTECTED]) but mail returns an error. Do you have another mail account? Cheers Marco Antonio On Jan 31, 2008 2:39 PM, Richard White [EMAIL PROTECTED] wrote: hi marco, thanks for this, it sounds

Re: Excel to Query

2008-01-28 Thread Marco Antonio C. Santos
Ben Nadel created a very nice cfc called POIUtility.cfc. This ColdFusion component works with POI to read/write excel spreadsheets. Please look this link: http://www.bennadel.com/blog/474-ColdFusion-Component-Wrapper-For-POI-To-Read-And-Write-Excel-Files.htm Cheers Marco Antonio On Jan 28, 2008

Re: cfprint... in CF7... exists?

2008-01-11 Thread Marco Antonio C. Santos
Thanks Janet. This UDF is for CF8. That another suggestion(print.exe) could be a great start point. Cheers Marco Antonio On Jan 11, 2008 1:15 AM, Janet MacKay [EMAIL PROTECTED] wrote: Here is one suggestion Geez. I need to learn to read. I think this is closer to the mark.

cfprint... in CF7... exists?

2008-01-10 Thread Marco Antonio C. Santos
CF8 haves a nice feature called cfprint. I'm using CF7 and looking for any routine porting cfprint(how to know printers in a network) to use in CF7. Anyone knows? Cheers Marco Antonio ~| Adobe® ColdFusion® 8 software 8 is the

Re: SOT sql question

2008-01-09 Thread Marco Antonio C. Santos
Mark, I'll like to suggest you to use DataMgr. DataMgr is a great time saver tool and could be the answer to your needs. http://datamgr.riaforge.org/ Cheers Marco Antonio C. Santos On Jan 9, 2008 2:56 PM, Mark Fuqua [EMAIL PROTECTED] wrote: I think I need to be using 'IN' within my WHERE

Re: CFC, Custom tag, or something for tedious SQL Queries?

2008-01-09 Thread Marco Antonio C. Santos
George, I'll like to suggest you to use DataMgr. DataMgr is a great time saver tool and could be the answer to your needs. In your case just name your form fields with the same name in database and DataMgr will do the heavy work for you. http://datamgr.riaforge.org/ Cheers Marco Antonio C

Re: XML Signature and CF

2008-01-08 Thread Marco Antonio C. Santos
Taco, do you can send that class to sign XML to me? Cheers Marco Antonio Taco can you pass that class along I also have a requirement for this now on a single signon project. Thanks, Blaine Boyland Have you got a key that you need to sign with etc.? I should have a java class

Re: CF locks a file after read it using java.io.FileReader

2007-08-02 Thread Marco Antonio C. Santos
Works fine now. Solution: After read that file I needed to close that connection: cfset fileReader.close() Cheers On 8/2/07, Marco Antonio C. Santos [EMAIL PROTECTED] wrote: Hi all. This could be a CF 7 bug? After read a file using cfset fileReader = CreateObject(java

CF locks a file after read it using java.io.FileReader

2007-08-02 Thread Marco Antonio C. Santos
Hi all. This could be a CF 7 bug? After read a file using cfset fileReader = CreateObject(java, java.io.FileReader) cfset fileReader.init(arguments.pathToFile) I'll need to delete that file and recreate it with new content. But CF locks that file and doesn't allow to delete it. Any suggestions?

Using CFFTP under proxy - proxy password missing

2007-03-28 Thread Marco Antonio C. Santos
Hi all. How can I access a FTP server under a proxy. OK, ok: using proxyserver attribute, right? But where proxypassword enters? Whitout proxypassword is impossible to access a remote ftp server inside our intranet. Cheers ~|

CFC DAO/Bean Generator

2007-02-01 Thread Marco Antonio C. Santos
Anyone know a good CFC DAO and Bean generator other than CFCCreator? Cheers ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

Re: Using CFIF inside CFReport Builder

2005-05-16 Thread Marco Antonio C. Santos
Thanks Dave. On 5/16/05, Dave Watts [EMAIL PROTECTED] wrote: it's possible to use CFIF statements inside CF Report Builder? I need to use CFIF's for control titles and display selected informations. It's possible? How to? You can use the IIf function instead of CFIF. Dave Watts, CTO,

Re: OT: right click submit options

2005-02-08 Thread Marco Antonio C. Santos
I'll suggest to use Flash Forms with CFMX 7. Could be that very very easy. Cheers Marco On Tue, 8 Feb 2005 10:28:56 -0800, Tim Do [EMAIL PROTECTED] wrote: Hi All, I was wondering if its possible to right click a row and have multiple form submit options. I have a form which has many

Re: Outsourced support to India?

2005-02-08 Thread Marco Antonio C. Santos
MM helps the third world people with that. ;-) Cheers Marco On Tue, 8 Feb 2005 13:58:02 -0600, Ryan Kime [EMAIL PROTECTED] wrote: India? All joking aside, there are places in America where you can save labor costs. True, you won't get a PhD for $3.00/hr, but I digress. I have been waiting

Re: CF and Cloudscape/Derby

2005-01-25 Thread Marco Antonio C. Santos
Hi Chuck Portable? Or Embeddable? Postgre(30MB RAM space) and MySQL(50MB RAM space) may be Portable but Cloudscape(2MB RAM space), HSQLDB, etc are a good option for embeddable apps. And yes we're using PG for big apps and MySQL for smaller... PG is very very nice... Cheers Marco On Mon, 24

Re: CF and Cloudscape/Derby

2005-01-25 Thread Marco Antonio C. Santos
Hi Dave. Not. Yet!!! I'm waiting the 2nd part of Phil Cruz and Dick Applebaum article... ;-) Cheers Marco On Tue, 25 Jan 2005 05:55:54 -0500, Dave Merrill [EMAIL PROTECTED] wrote: Marco, do you have any experience using Cloudscape? With CF? If so, any comments on performance, features,

Re: CFMX + MySQL Query Problem

2004-12-15 Thread Marco Antonio C. Santos
GROUP_CONCAT works only for 4.1+ MySQL versions... http://dev.mysql.com/doc/mysql/en/GROUP-BY-Functions.html Cheers Marco On Tue, 14 Dec 2004 22:25:14 -0400, Jamie Price [EMAIL PROTECTED] wrote: Jamie Price wrote: SELECT o.UserID, GROUP_CONCAT(o.CardID) FROM mycards t INNER JOIN

Re: CFMX + MySQL Query Problem

2004-12-15 Thread Marco Antonio C. Santos
OK Jamie you could migrate to PostgreSQL? Do that... Cheers Marco On Wed, 15 Dec 2004 09:46:18 -0400, Jamie Price [EMAIL PROTECTED] wrote: Simon - Here's the dumps - the GetMatches dump has never returned results for me (though it seems like it is doing something since it's outputting

Re: Limiting SQL Results

2004-12-13 Thread Marco Antonio C. Santos
SELECT blablabla FROM blabla GROUP BY ID Try... Cheers Marco On Mon, 13 Dec 2004 13:59:34 -, James Smith [EMAIL PROTECTED] wrote: Ok, heres the thing. I have a table (actually multiple tables joined but for simplicity here we will call it one table) that looks something like... ID

Re: CFMX + MySQL Query Problem

2004-12-12 Thread Marco Antonio C. Santos
Jamie what you need? Cheers Marco On Sat, 11 Dec 2004 21:25:39 -0400, Jamie Price [EMAIL PROTECTED] wrote: I know that this sounds like a pretty wild problem, but I would REALLY appreciate any help you guys could give - I've been putting my head through a wall for about two weeks trying

Re: CFFM almost finished

2004-12-10 Thread Marco Antonio C. Santos
in how to do that... -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Thursday, December 09, 2004 4:51 PM To: CF-Talk Subject: Re: CFFM almost finished Marco Antonio C. Santos wrote: your page(http://www.webworksllc.com/cffm) give us 500 Error. It's

Re: passing many variables between pages

2004-12-10 Thread Marco Antonio C. Santos
Using SESSION structure could be the best answer for Tim questions... Best regards Marco On Fri, 10 Dec 2004 10:41:17 -0600, Aaron Rouse [EMAIL PROTECTED] wrote: One of our systems just creates a structure, with keys being the hidden field names and then they have their values. That is

Re: ColdFusion security framework

2004-12-09 Thread Marco Antonio C. Santos
http://tutorial67.easycfm.com/ Cheers Marco On Thu, 09 Dec 2004 20:11:19 +0100, The Wolf [EMAIL PROTECTED] wrote: Hi all, does anyone know any good ColdFusion security framework for implementing authentication and authorization (roles, permissions, etc.) available for download and

[SOT] Show number lines in Eclipse

2004-12-09 Thread Marco Antonio C. Santos
Sorry by SOT. How to show line numbers in Eclipse Java Editor like Homesite or CF Studio? Cheers Marco ~| Special thanks to the CF Community Suite Silver Sponsor - CFDynamics http://www.cfdynamics.com Message:

Re: [SOT] Show number lines in Eclipse

2004-12-09 Thread Marco Antonio C. Santos
Thanx Rob. Works fine now. Cheers Marco On Thu, 9 Dec 2004 11:39:07 -0800, Rob [EMAIL PROTECTED] wrote: WindowsPreferencesJavaEditor show line numbers check box. On Thu, 9 Dec 2004 17:31:24 -0200, Marco Antonio C. Santos [EMAIL PROTECTED] wrote: Sorry by SOT. How to show line

Re: CFFM almost finished

2004-12-09 Thread Marco Antonio C. Santos
Rick your page(http://www.webworksllc.com/cffm) give us 500 Error. It's possible to download CFFM once more? Cheers Marco On Wed, 08 Dec 2004 09:13:38 -0500, Rick Root [EMAIL PROTECTED] wrote: Pascal Peters wrote: You can do it with a single regexp if you want:

Re: OT JavaScript and Firefox

2004-12-08 Thread Marco Antonio C. Santos
Hi Fusetalk Forums uses dynarch calendar in your search form. Look this: http://www.macromedia.com/cfusion/webforums/forum/search.cfm and choose Start Date icon. Will open a very cool dhtml calendar. Cheers Marco On Tue, 7 Dec 2004 16:16:38 -0800, Rob [EMAIL PROTECTED] wrote: here is the

Re: CFFM almost finished

2004-12-07 Thread Marco Antonio C. Santos
Beautyfull... Great Job Rick... congratulations!!! Cheers Marco On Tue, 07 Dec 2004 14:09:43 -0500, Rick Root [EMAIL PROTECTED] wrote: Okay, i think I'm almost done with CFFM - the Coldfusion File Manager I've added just about all the features I've seen suggested cleaned and

Re: Mambo CMS server

2004-12-07 Thread Marco Antonio C. Santos
Hi Aaron Mambo is a very good PHP open source CMS. We build an application using Mambo menu model with CF. Works fine with users/groups roles like Mambo. Only this. Cheers Marco On Wed, 8 Dec 2004 08:31:46 +1100, Aaron DC [EMAIL PROTECTED] wrote: Has anyone had any experience extending /

Re: OpenSource Calendar

2004-12-03 Thread Marco Antonio C. Santos
Hi Mickael maybe this is the best web calendar on the web: http://dynarch.com/mishoo/calendar.epl Open source... Cheers Marco On Fri, 3 Dec 2004 07:50:37 -0500, Mickael [EMAIL PROTECTED] wrote: Hello All, I am donating some time to a charitable organization. They need a web calendar

Re: WYSIWIG web editor for CF (FREE)

2004-12-03 Thread Marco Antonio C. Santos
Russel www.fckeditor.NET rocks Cheers Marco On Fri, 3 Dec 2004 11:25:20 -0600, Russell Patterson [EMAIL PROTECTED] wrote: I am using fckEditor at several client sites. I am extremely please with it and so are my clients. I have customized it to fit their needs. I highly recommend

Re: HTM vs CFM Pages

2004-12-02 Thread Marco Antonio C. Santos
Dave that speed penalty only occurs in the firts load page right? After that the compiled class file will load very fast... right? Cheers Marco On Thu, 2 Dec 2004 12:37:31 -0500, Dave Watts [EMAIL PROTECTED] wrote: When developing an entire website, I occasionally develop a page with no

Using COMMIT inside cfquery with MySQL give error

2004-12-01 Thread Marco Antonio C. Santos
Hi all after insert a user record I need to show that same record to that user. But using SELECT statement in other cfquery don't show that user record. Please look this simple example: cfquery datasource=#application.dsn# name=insertuser INSERT INTO resourcebank ( userID,corpID,statusID,age1 )

Re: Slideshow like on news.bbc.co.uk

2004-11-30 Thread Marco Antonio C. Santos
Stuart please look this site: http://www.renatoimoveis.com/venda_detalhes.cfm?imovID=E117DE64-3472-FB8F-9FBE84A746D5F0D1 in the footer you could see a very nice slide show built with js and populate from CF. Click in iniciar to start the slide show. parar will stop, avançar and so on... If you

Creating zip files on the fly without CreateObject

2004-11-24 Thread Marco Antonio C. Santos
Hi all how to create zip files on the fly with CF and without use CreateObject statement? CFX_Zip could be an option but your price is proibitive... what you suggest? Cheers Win2K3 CFMX 6.1 ~| Special thanks to the CF

Backup MySQL DB... and restore ;-(

2004-11-17 Thread Marco Antonio C. Santos
Hi all I want to backup my database to a file that is just like a SQL dump. With mysqldump I can do that. Easy. Then, I just want to be able to execute that .sql file when I need to restore my database... with CF... What do you think about? Cheers Marco

Re: OT: ERD for MySQL

2004-11-17 Thread Marco Antonio C. Santos
Mark do you can test dbdesigner4, a open source MySQL modelling tool... http://www.fabforce.net/dbdesigner4/ Cheers Marco On Mon, 15 Nov 2004 10:23:42 +, Stephen Moretti (cfmaster) [EMAIL PROTECTED] wrote: Mark Drew wrote: Does anybody use any fornt ends to mysql that allow you to do

Re: Plum Pre-Testers Needed

2004-11-12 Thread Marco Antonio C. Santos
How to qualify Adam? Marco On Thu, 11 Nov 2004 20:33:21 -0500, Rick Faircloth [EMAIL PROTECTED] wrote: I know...I know...prehistoric...it's true. I'm just so busy trying to make money with what I already know. I'm a freelancer, you know...no salary here... I noticed, too, that Plum

Re: Plum Pre-Testers Needed

2004-11-12 Thread Marco Antonio C. Santos
Demo link? Yes, flash presentation. It's possible to download demo version? Cheers Marco On Thu, 11 Nov 2004 19:42:55 -0500, Adam Churvis [EMAIL PROTECTED] wrote: Sorry... Look at this: http://www.productivityenhancement.com/plum/WhatPlumCanDo.cfm There's a demo link at the bottom of

[OT] Right Click Context Menu

2004-11-07 Thread Marco Antonio C. Santos
Hi sorry by OT. Anyone has build applications with CF using right click context menu? It's possible to show howt to do that? Usability, client view, ... Thanx Marco ~| Special thanks to the CF Community Suite Gold Sponsor -

[SOT] DOS-like web application

2004-11-05 Thread Marco Antonio C. Santos
Hi all I'm looking for examples about how to develop web applications when users will use only(first choice) keyboard like old Clipper/DOS applications. What's the pro's? And con's? Thanks Marco ~| Special thanks to the CF

Where're PLUM????

2004-10-31 Thread Marco Antonio C. Santos
How are the development state for PLUM? Beta, Alpha? We're anxious to take it in our hands!!! ;-) Cheers Marco ~| Sams Teach Yourself Regular Expressions in 10 Minutes by Ben Forta

Re: cflogin - whats happened

2004-10-30 Thread Marco Antonio C. Santos
Thanks Raymond sorry for the code... post only the needed for my question Please looks once more... !---application.cfm BEGIN --- CFAPPLICATION name=life sessionmanagement=Yes sessiontimeout=#CreateTimeSpan(0,1,0,0)#

Re: synching local database with web

2004-10-29 Thread Marco Antonio C. Santos
Good look Joe but how to 'sync that 2 DB using MM Central? Cheers Marco On Thu, 28 Oct 2004 15:50:01 -0400, Joe Rinehart [EMAIL PROTECTED] wrote: One thing you may want to look at doing is developing the salesperson app in Macromedia Central. It's made to do occaisionally connected apps

Re: Survey Creation Application

2004-10-28 Thread Marco Antonio C. Santos
Do you can show that survey tool? Maybe a link? Cheers Marco On Wed, 27 Oct 2004 18:37:51 -0400, Nick Cabell [EMAIL PROTECTED] wrote: I built a survey creation system for a non-profit using CF. It is fairly customized and has been very difficult. It allows a variety of clients to create

Application framework - examples

2004-10-27 Thread Marco Antonio C. Santos
I'm looking for application frameworks for our CF application. Don't talk about CF application.cfm but models to construct navigations, menus like Farcry Admin, SmartCMS Admin, BlueShoes PHP framework, etc. Any examples? Thanx Marco

Re: Application framework - examples

2004-10-27 Thread Marco Antonio C. Santos
McKenna [EMAIL PROTECTED] wrote: Marco Antonio C. Santos wrote: I'm looking for application frameworks for our CF application. Don't talk about CF application.cfm but models to construct navigations, menus like Farcry Admin, SmartCMS Admin, BlueShoes PHP framework, etc. What are your

HTMLDOC - I'm looking for...

2004-10-20 Thread Marco Antonio C. Santos
Yesterday open source, HTMLDOC now is paid. Anyone have ghtmldoc.exe previous version(1.8.23) to send for me? Thanx ~| The annual ColdFusion User Conference is being held Sat 6/26 - Sun 6/27/04 8am-5pm in the Washington DC

Re: HTMLDOC - I'm looking for...

2004-10-20 Thread Marco Antonio C. Santos
/ Marco Antonio C. Santos wrote: Yesterday open source, HTMLDOC now is paid. Anyone have ghtmldoc.exe previous version(1.8.23) to send for me? Thanx ~| Purchase from House of Fusion, a Macromedia Authorized

Re: HTMLDOC - I'm looking for...

2004-10-20 Thread Marco Antonio C. Santos
Great idea Marco On Wed, 20 Oct 2004 12:36:07 -0700, Bryan Stevenson [EMAIL PROTECTED] wrote: Try the Developer's Exchange at Macromedia...there are LOTS of tags that have bundled HTMLDoc.exe with them Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric

Re: cfm flash blog update

2004-10-13 Thread Marco Antonio C. Santos
Great!!! Congratulations for that job... Impressive! Could be open source? Cheers Marco On Wed, 13 Oct 2004 04:16:04 -0400, dave [EMAIL PROTECTED] wrote: well its coming along thanks to Robert munn for all his hard work! michael, do you have a good logo we can throw on there? the basics

Re: Creating E-commerce application with CF

2004-10-01 Thread Marco Antonio C. Santos
Look http://www.oscommerce.com/ - an PHP open source ecommerce application. Looks very handful, free and full featured... Cheers On Fri, 1 Oct 2004 17:20:46 -0500, Paul Giesenhagen [EMAIL PROTECTED] wrote: Consider purchasing a canned application and then customizing your required features in

Change .cfm to .xxx - Legal or not?

2004-09-23 Thread Marco Antonio C. Santos
Hi it's possible to change the CF extensions(.cfm) to .anything??? It's legal or not? What's the law point of view? And MM? Thanx Marco [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Change .cfm to .xxx - Legal or not?

2004-09-23 Thread Marco Antonio C. Santos
is applicable to later versions of IIS (no promises): http://www.depressedpress.com/depressedpress/Content/Development/ColdFusion/ Articles/MultipleExtensions/Index.cfm Jim Davis _ From: Marco Antonio C. Santos [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 7:41 PM To: CF-Talk

Re: CMS

2004-09-21 Thread Marco Antonio C. Santos
Hard Farcry is very hard to install for beginners CFers... You need to learn before this is my impression... Cheers On Tue, 21 Sep 2004 10:00:53 -0500, Phill B [EMAIL PROTECTED] wrote: I'm taking a look at Farcry and it looks pretty cool. One question. How easy is it to implement

Re: ColdFusion Calendar

2004-09-20 Thread Marco Antonio C. Santos
anything, I have a similar project coming up quite soon. KP -Original Message- From: Marco Antonio C. Santos [mailto:[EMAIL PROTECTED] Sent: Friday, September 17, 2004 5:25 PM To: CF-Talk Subject: ColdFusion Calendar Is there an open souce Calender component available for ColdFusion MX

Re: ColdFusion Calendar

2004-09-20 Thread Marco Antonio C. Santos
The problem is subselects, SP, triggers don't supported by our MySQL 4.0.13 version... Marco On Mon, 20 Sep 2004 13:09:02 -0400, Damien McKenna [EMAIL PROTECTED] wrote: Marco Antonio C. Santos wrote: Thanx Kristopher... Nothing yet... Only Calendars for MSSQL, Oracle, Access DB

Re: ColdFusion Calendar

2004-09-20 Thread Marco Antonio C. Santos
;-))) All right Multiple queries is the easy kinda... SP, triggers... h... with MySQL On Mon, 20 Sep 2004 13:18:10 -0400, Damien McKenna [EMAIL PROTECTED] wrote: Marco Antonio C. Santos wrote: The problem is subselects, SP, triggers don't supported by our MySQL 4.0.13

Re: ColdFusion Calendar

2004-09-20 Thread Marco Antonio C. Santos
, Jordan Michaels Vivio Technologies http://www.viviotech.net/ [EMAIL PROTECTED] Marco Antonio C. Santos wrote: The problem is subselects, SP, triggers don't supported by our MySQL 4.0.13 version... Marco On Mon, 20 Sep 2004 13:09:02 -0400, Damien McKenna [EMAIL PROTECTED

Re: Web Application Development using Cold Fusion in a Team Environment (Draft)

2004-09-20 Thread Marco Antonio C. Santos
How to download Plum for testing??? On Mon, 20 Sep 2004 13:44:09 -0400, Adam Churvis [EMAIL PROTECTED] wrote: Have you selected a price point for Plum?If so, could you share it? Free. Respectfully, Adam Phillip Churvis Member of Team Macromedia Advanced Intensive Training: *

Re: Web Application Development using Cold Fusion in a Team Environment (Draft)

2004-09-20 Thread Marco Antonio C. Santos
Download CommerceBlocks V2.1 and LoRCAT from http://www.ProductivityEnhancement.com The ColdFusion MX Bible is in bookstores now! - Original Message - From: Marco Antonio C. Santos [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, September 20, 2004 2:06 PM Subject: Re: Web

ColdFusion Calendar

2004-09-17 Thread Marco Antonio C. Santos
Is there an open souce Calender component available for ColdFusion MX? I'm looking for a CF Calendar for our Management High School Courses Application... Cheers Marco [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Cold Fusion to PDF

2004-09-13 Thread Marco Antonio C. Santos
iText and FOP works fine with CSS and HTML4...XSL-FOP too... Cheers On Mon, 13 Sep 2004 15:41:16 -0400, Larry Lyons [EMAIL PROTECTED] wrote: Before I knew about the tag that's on Macromedia's exchange, I also wrote a custom tag to use HTMLDOC. It's free to use and open source here:

CF application navigation

2004-09-12 Thread Marco Antonio C. Santos
Farcry haves an very nice application navigation(menu collapsible, tabs and so on). How to do applications like that? Do you have examples for me? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: SpeckCMS

2004-09-09 Thread Marco Antonio C. Santos
I also know that Speck has been used by non-programmers for content management requirements (apparently www.fashion.ie was built in a weekend by someone who didn't know any CF when he started). ... www.fashion.ie looks like built in with fuseaction and static content An CF newbie don't have

Re: SOT - farcry CMS

2004-09-06 Thread Marco Antonio C. Santos
Thanx Kevin and Geoff I'll be there... On Mon, 6 Sep 2004 16:09:18 +1000, Geoff Bowers [EMAIL PROTECTED] wrote: - Original Message - From: Marco Antonio C. Santos [EMAIL PROTECTED] sorry for SOT... Anybody know how to run multiple sites inside only one Farcry installation

SOT - farcry CMS

2004-09-05 Thread Marco Antonio C. Santos
Hi sorry for SOT... Anybody know how to run multiple sites inside only one Farcry installation? Thanx [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Entire keyboard-based CF application

2004-08-31 Thread Marco Antonio C. Santos
(IE only, I beleive) you can assign all of the mouse action handlers at the body level to return void or somesuch - the event taking place anywhere on the page will bubble up to the body and get handled there. Jim Davis From: Marco Antonio C. Santos [mailto:[EMAIL PROTECTED] Sent: Monday

For S.Isaak - onTap SES

2004-08-31 Thread Marco Antonio C. Santos
Hi S. Isaak it's possible to use OnTap framework works with SES procedures? Cheers [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Farcry x SpeckCMS: The best CMS is....

2004-08-26 Thread Marco Antonio C. Santos
OK Micha but inexpensive, free, cheap maybe only Farcry and SpeckCMS On Thu, 26 Aug 2004 08:22:39 +0200, Micha Schopman [EMAIL PROTECTED] wrote: There are more CMS systems written with CFML, do not forget PaperThin. Micha Schopman Software Engineer Modern Media, Databankweg 12 M,

Re: Open Source Poll Tag

2004-08-26 Thread Marco Antonio C. Santos
iPoll ColdFusion Poll System is cool... Look in dev exchange cheers On Thu, 26 Aug 2004 10:06:42 -0500, Jake [EMAIL PROTECTED] wrote: Does anyone know of a good open source poll tag? I spent some time downloading and setting up a number of them I found on the MM Exchange and via Google, and

New CF compiler

2004-08-26 Thread Marco Antonio C. Santos
Look this site: http://www.railo.ch/en/about/index.cfm Railo is an CF compiler with several options. My firt impression looks nice... and stable too cheers [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: New CF compiler

2004-08-26 Thread Marco Antonio C. Santos
No... Swiss railo.ch(Swiss) On Thu, 26 Aug 2004 13:57:36 -0700, Bryan Stevenson [EMAIL PROTECTED] wrote: Ya...it's from Germany or Holland...thus the lingo issues ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642

Re: New CF compiler

2004-08-26 Thread Marco Antonio C. Santos
heh... ;- On Thu, 26 Aug 2004 17:08:10 -0400, S. Isaac Dealey [EMAIL PROTECTED] wrote: Ahh... my bad. :) My international knowledge is all kinds of rusty. :) No... Swiss railo.ch(Swiss) On Thu, 26 Aug 2004 13:57:36 -0700, Bryan Stevenson [EMAIL PROTECTED] wrote: Ya...it's

MSDE datasource

2004-08-25 Thread Marco Antonio C. Santos
Hi MSDE is an free(true!!) DBMS based in SQL Server... 1Giga space, 10 max connections how to use with CFMX? It's possible? Thanx [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Farcry x SpeckCMS: The best CMS is....

2004-08-25 Thread Marco Antonio C. Santos
Do you have the answer? Two great CMS... Only one choice... Thanx [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Using Struts with CF

2004-08-24 Thread Marco Antonio C. Santos
Anybody here develops CF apps with Struts MVC pattern? What's your impressions? Marco [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Flex and CF

2004-08-23 Thread Marco Antonio C. Santos
Hi looking by the CF developer view what I can do with Flex resources? How to integrate it with CF? When Flex can help me? Thanx [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Automated Scripts?

2004-08-23 Thread Marco Antonio C. Santos
Create your CF script(search users in database, format email, bla, bla) and after setting your CF Admin Scheduler Tasks... will run fine On Mon, 23 Aug 2004 09:39:27 -0700, Richard Crawford [EMAIL PROTECTED] wrote: I'm trying to figure out how to run some Cold Fusion scripts automatically.

Converting XML to database(or query)

2004-08-21 Thread Marco Antonio C. Santos
Hi all I'm have this XML format file from 3rd party survey application(don't uses DB): survey ip=127.0.0.1 browserId=Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; (R1 1.5); .NET CLR 1.1.4322) _javascript_Enabled=1 section question inputComment / /question question!---choose born state---

Re: Gmail

2004-08-21 Thread Marco Antonio C. Santos
Give me 1 please Thnx On Sat, 21 Aug 2004 13:27:09 -0400, Ewok [EMAIL PROTECTED] wrote: Id love to check it out if you have another... - Original Message - From: Matt Robertson To: CF-Talk Sent: Saturday, August 21, 2004 1:05 PM Subject: Gmail I got six more invites today, and

Re: OT_converting MS ACCESS or SQL2K to MySQL

2004-08-20 Thread Marco Antonio C. Santos
Yes... looking for access2mysql... works very nice... cheers On Fri, 20 Aug 2004 08:52:19 -0500, Eric Creese [EMAIL PROTECTED] wrote: Any convertingtools out there?Pitfalls? What about datatypes and identity fields? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: OT: 3 gmail invites

2004-08-19 Thread Marco Antonio C. Santos
give me that... ;-) thanx On Thu, 19 Aug 2004 14:05:24 -0400, Adam Haskell [EMAIL PROTECTED] wrote: I have 1 available as well. On Thu, 19 Aug 2004 19:39:35 +0200, Mark Drew [EMAIL PROTECTED] wrote: You lucky SOB! Mine have dried up like my garden in summer On Thu, 19 Aug 2004

Pollster without flash gateway

2004-08-16 Thread Marco Antonio C. Santos
Sorry :-) I know... it's impossible... but how to run Pollster Poll Application in our CF without Flash Gateway service(ISP)? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Olympics web site - anyone know anything about how it's built?

2004-08-15 Thread Marco Antonio C. Santos
Looks like PHP... why? Looking source code show meUDMComment... Googling UDMComment gets: http://www.binoculars.com/brands/Collins_binoculars.html That site works with PHP... Maybe Cheers On Sun, 15 Aug 2004 09:43:45 -0400, Michael T. Tangorre [EMAIL PROTECTED] wrote: Running

  1   2   >