RE: directory security

2003-11-28 Thread Hugo Ahlenius
Workaround: Pass all requests to a .cfm, and let it output the images using cfcontent (with proper headers). Then you can have all the logic you want there. Con: unnecessary(?) overhead. - Hugo AhleniusE-Mail: [EMAIL PROTECTED] Project

RE: Learning CSS

2003-11-28 Thread A.Little
Here's another one to help get you started http://www.w3schools.com/css/default.asp Alex -Original Message- From: John Munyan [mailto:[EMAIL PROTECTED] Sent: 27 November 2003 19:26 To: CF-Talk Subject: Learning CSS I am just realizing the power of CSS, but am also aware

RE: Access Windows accounts through CF

2003-11-28 Thread Michael Wolfe
The Internet Hosting Toolkit does that very thing. http://www.intrafoundation.com/ihtk.asp For some reason, the site is not responding right now.If you can get to it, email me off-list and I will send you the zip file containing the CFX's. Mike Wolfe [EMAIL PROTECTED] -Original

RE: directory security

2003-11-28 Thread John Beynon
Don't give up just yet. There are ISAPI filters that are perfectly capable of doing exactly what you want - provided you can install ISAPI filters on the server. I've been trawling around on Google and come up with this, http://coldlink.com/?qt=19 $99 (half price at the moment) that looks like it

RE: Access Windows accounts through CF

2003-11-28 Thread Kym Kovan
Hi All, I have just recommended this kit on CFAussie: The Internet Hosting Toolkit does that very thing. http://www.intrafoundation.com/ihtk.asphttp://www.intrafoundation.com/ihtk.asp For some reason, the site is not responding right now. With the same result.Does anyone know if min is OK? No

RE: Base64 Encoding

2003-11-28 Thread [EMAIL PROTECTED]
Figured it out.The client was using a different page encoding (ISO-8859-1) to that of us (UTF-8). All sorted now. --- Neil -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED] Sent: 27 November 2003 16:47 To: CF-Talk Subject: RE: Base64 Encoding How are u

RE: How do you save binary

2003-11-28 Thread Craig Dudley
Not sure how you would get the binary stream from the crystal report, but it's failry trivial to save byteArrays to files with java. -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: 27 November 2003 20:25 To: CF-Talk Subject: How do you save binary I have

Re:Can get coldfusion to call the ADSystemInfo com object (ADSI)

2003-11-28 Thread cf coder
I cannot use the cfldap tag to query the active directory because I would have to pass in the username to get the details for that user. To give you a background, I'm developing this site for the intranet, the users windows/computer account details are stored in the Active Directory. When the user

RE: Can get coldfusion to call the ADSystemInfo com object (ADSI)

2003-11-28 Thread Mike Townend
if you were to turn off anonymous access to the intranet then within theory IE will be told to logon to the site, it will attempt to send the currently logged on user details to the site to authenticate.If both the user is in the Active Dir and the site is (thus allowing access) then the username

Re:Can get coldfusion to call the ADSystemInfo com object (ADSI)

2003-11-28 Thread cf coder
you are spot on mate, I'm trying this now and will let you know if I'm successful :), many thanks. if you were to turn off anonymous access to the intranet then within theory IE will be told to logon to the site, it will attempt to send the currently logged on user details to the site to

OT: hostdepartment.com?

2003-11-28 Thread Oliver Cookson
Hi, I have just stumbled across http://www.hostdepartment.com/ and they have some fantastic prices on CF hosting plans, maybe too good to be true? Just wondering if anyone has had any experience with them? Good? Bad? Ugly? :) If not can anyone recommend current hosts which are preferably MX

Re: hostdepartment.com?

2003-11-28 Thread Nick de Voil
Oliver If not can anyone recommend current hosts which are preferably MX enabled, a reasonable price have msSQL. If you want a UK-based one you might take a look at http://www.cfmxhosting.co.uk Nick [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:Safari Issues

2003-11-28 Thread Kay Smoljak
Since I cannot use session or client variables on this site (that is a whole other discussion), I have to use a frame set, and then I use form and/or URL variables for session state. The biggest problem is that some form variables or URL variables are not being passed. One thing I have found is

cfhttp - https - linux

2003-11-28 Thread Rizal Firmansyah
Guys, i've a problem on my client's Linux - CFMX box. I have this script that use cfhttp to connect to a https server on port 15000. Both 'https' and port is specified in cfhttp attributes. The same script works like charm in Win2k machine, but when i put it in the linux box, it always give me

Getting last inserted idenity value

2003-11-28 Thread Shahzad.Butt
Hi I am using CFMX and Access2000. In my action page I've got two insertion queries one inserts in table1 and other one inserts in table2. Both of these tables has got primary key as autoincrement number. Second query needs to add the primary key generated from first query as a foreign key.

RE: Getting last inserted idenity value

2003-11-28 Thread Robertson-Ravo, Neil (RX)
Try MaxID. _ From: Shahzad.Butt [mailto:[EMAIL PROTECTED] Sent: 28 November 2003 13:25 To: CF-Talk Subject: Getting last inserted idenity value Hi I am using CFMX and Access2000. In my action page I've got two insertion queries one inserts in table1 and other one inserts in table2. Both

RE: Getting last inserted idenity value

2003-11-28 Thread John Beynon
wrap the first insert query in a cftransaction tag, with a select query within the cftransaction to select maxID, then use the returned value in your second insertion query. Jb. -Original Message- From: Shahzad.Butt [mailto:[EMAIL PROTECTED] Sent: 28 November 2003 13:25 To: CF-Talk

RE: Getting last inserted idenity value

2003-11-28 Thread Shahzad.Butt
Which scope i.e queryname.MaxID...?Is it CF Function? _ From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 28 November 2003 13:31 To: CF-Talk Subject: RE: Getting last inserted idenity value Try MaxID. _ From: Shahzad.Butt [mailto:[EMAIL PROTECTED] Sent: 28 November

RE: Getting last inserted idenity value

2003-11-28 Thread John Beynon
Select max(PKFIELD) as LastRecordID from sometable -Original Message- From: Shahzad.Butt [mailto:[EMAIL PROTECTED] Sent: 28 November 2003 13:41 To: CF-Talk Subject: RE: Getting last inserted idenity value Which scope i.e queryname.MaxID...?Is it CF Function? _ From:

RE: Getting last inserted idenity value

2003-11-28 Thread Robertson-Ravo, Neil (RX)
oops. sorry.. ;-) its the Access equivelant of @@identity _ From: Shahzad.Butt [mailto:[EMAIL PROTECTED] Sent: 28 November 2003 13:41 To: CF-Talk Subject: RE: Getting last inserted idenity value Which scope i.e queryname.MaxID...?Is it CF Function? _ From: Robertson-Ravo, Neil (RX)

RE: Getting last inserted idenity value

2003-11-28 Thread John Beynon
So it's going to look something like: cftransaction ...first insert query !--- retrieve last ID --- cfquery name=LastID... Select max(PKFIELD) as LastRecordID from sometable /cfquery /cftransaction cfquery name=SecondInsert Insert into sometable (.,.,., FKFIELD) Values (.,.,.,

RE: Access Windows accounts through CF

2003-11-28 Thread Lewis Sellers
At 08:45 PM 11/28/2003 +1100, you wrote: Hi All, I have just recommended this kit on CFAussie: The Internet Hosting Toolkit does that very thing. http://www.intrafoundation.com/ihtk.asphttp://www.intrafoundation.com/i htk.asp For some reason, the site is not responding right now. With

RE: Getting last inserted idenity value

2003-11-28 Thread Kwang Suh
Access 2000 should have @@identity as well.Try it out. -Original Message- From: Shahzad.Butt [mailto:[EMAIL PROTECTED] Sent: November 28, 2003 6:25 AM To: CF-Talk Subject: Getting last inserted idenity value Hi I am using CFMX and Access2000. In my action page I've got two insertion

What's wrong?

2003-11-28 Thread Hassan Arteaga Rodriguez
Hi all: When i try to make a chart with cfchart and cfchartseries, simple chart, just one serie. If i look into the C:\CFusionMX\charting\cache dir i can see all files created in flash, jpg or png format..But the page in the browser is empty..nothing appear. Please help Regards __ MSc.

RE: What's wrong?

2003-11-28 Thread d.a.collie
Have you looked at the HTML source code... is it valid?Has cold Fusion outputted any HTML code relating to the chart? -Original Message- From: Hassan Arteaga Rodriguez [mailto:[EMAIL PROTECTED] Sent: 28 November 2003 15:45 To: CF-Talk Subject: What's wrong? Hi all: When i try to make

RE: What's wrong?

2003-11-28 Thread Hassan Arteaga Rodriguez
I'll check Thanks __ MSc. Hassan Arteaga Rodrguez Microsoft Certified System Engineer. DIGI- Grupo de Desarrollo COPEXTEL, S.A. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, November 28, 2003 08:58 AM To: CF-Talk Subject: RE: What's wrong? Have

RE: Securing user login details

2003-11-28 Thread Craig Dudley
I would have to agree, 128 bit SSL is very secure. 1 Someone has get the data to try and decode it, which isn't easy at all, then they have to crack a 128 bit key, which is extremely hard. I would suggest simply finding out more about SSL and explaining quite how safe 128 bit SSL really is

RE: What's wrong?

2003-11-28 Thread Hassan Arteaga Rodriguez
I have the cfchart and cfchartseries inside a cell in the table ..and in the html code only appear the table definition... !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd http://www.w3.org/TR/html4/loose.dtd html head titleUntitled

RE: What's wrong?

2003-11-28 Thread d.a.collie
We're still on CF5 so I've not used CFCHART. so can't help much there. Sorry :-\ -Original Message- From: Hassan Arteaga Rodriguez [mailto:[EMAIL PROTECTED] Sent: 28 November 2003 16:03 To: CF-Talk Subject: RE: What's wrong? I have the cfchart and cfchartseries inside a cell in

RE: Securing user login details

2003-11-28 Thread John McCosker
Thanks, the client is from Pakistan and is totally opinionated on this. Thanks for the advice. -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED] Sent: 28 November 2003 14:59 To: CF-Talk Subject: RE: Securing user login details I would have to agree, 128 bit SSL is very

Re: [cftalk] RE: What's wrong?

2003-11-28 Thread Allan Cliff
Have you set up IIS correctly with the virtual directories to CFIDE and JRunScripts? CFIDE to C:\Inetpub\wwwroot\CFIDE JRunScripts to C:\CFusion\runtime\lib\wsconfig\1 Allan - Original Message - From: [EMAIL PROTECTED] To: CF-Talk Sent: Friday, November 28, 2003 4:16 PM Subject:

RE: Securing user login details

2003-11-28 Thread Tom Kitta
I am not aware of any supported option short of rolling your own browser. Thus, propose to this client writing a custom browser with their choice of security. Just make sure to show him the estimate for the project cost. TK -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]

RE: What's wrong?

2003-11-28 Thread Hassan Arteaga Rodriguez
oh...thanks !! __ MSc. Hassan Arteaga Rodrguez Microsoft Certified System Engineer. DIGI- Grupo de Desarrollo COPEXTEL, S.A. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, November 28, 2003 09:16 AM To: CF-Talk Subject: RE: What's wrong? We're still

differences with stored procs MX/5

2003-11-28 Thread John Beynon
Hi, I've got this chuck of code: CFSTOREDPROC procedure=Holiday_RetrieveAllUserInfo datasource=* username=*password= cfprocparam type=in dbvarname=@StaffNumber cfsqltype=cf_sql_integer value=#session.user.staffnumber# cfprocparam type=in dbvarname=@YearStamp

Web services question

2003-11-28 Thread Stephen Moretti
Couple of questions. Anyone got some good resources for consuming web services with CFMX?? Google hasn't turned up much, but then I'm probably using the wrong search terms. Other question - how can I send NULL through to a web service?? I've got : enetws = CreateObject(WebService,wsURL);

RE: [cftalk] RE: What's wrong?

2003-11-28 Thread Hassan Arteaga Rodriguez
Hi Allan: Mi webs run perfectly... It's necessary put the CFIDE dir into c:\inetpub\wwwroot? My WEB root is mapping in IIS to D:\WEBS and inside this dir i have all my webs...It's correctly...i think. Then my CFIDE is in D:\WEBS\CFIDE Regards, __ MSc. Hassan Arteaga Rodrguez Microsoft

RE: differences with stored procs MX/5

2003-11-28 Thread Hassan Arteaga Rodriguez
Hi John !! I had the same problem with MS SQL Server from MX 6 to MX6.1 and i tryed to change(in your case) dbvarname=@StaffNumber by varname=StaffNumber And it works ok Regards __ MSc. Hassan Arteaga Rodrguez Microsoft Certified System Engineer. DIGI- Grupo de Desarrollo COPEXTEL,

RE: differences with stored procs MX/5

2003-11-28 Thread John Beynon
Just tried that, it throws an error The tag does not allow the attribute(s) VARNAME. The valid attribute(s) are CFSQLTYPE,CFVARNAME,DBVARNAME,MAXLENGTH,MAXROWS,NULL,SCALE,TYPE,VALUE,VARIAB LE. -Original Message- From: Hassan Arteaga Rodriguez [mailto:[EMAIL PROTECTED] Sent: 28 November

Re: [cftalk] RE: What's wrong?

2003-11-28 Thread Allan Cliff
For each site you have set up i.e. www.yahoo.co.uk you have to have a virtual dir set up for your equivalent of those directories. - Original Message - From: Hassan Arteaga Rodriguez To: CF-Talk Sent: Friday, November 28, 2003 6:04 PM Subject: RE: [cftalk] RE: What's wrong? Hi Allan:

RE: differences with stored procs MX/5

2003-11-28 Thread Hassan Arteaga Rodriguez
I have this code inside one of my CFC's and works !--- Funcin para obtener el id de un usuario dado su nick name y password--- cffunction access=public name=GetUserId output=false returntype=query cfargument name=txtLogin type=string required=yes default= cfargument name=txtPass type=string

RE: differences with stored procs MX/5

2003-11-28 Thread John Beynon
That's returning a recordset from the stored proc, I'm doing processing within the StoredProc and am trying to access those variables in my cf code. As I said, it works perfectly on CF5 but CFMX just does nothing...no error or anything. Jb. -Original Message- From: Hassan Arteaga

OT: Book recommendation

2003-11-28 Thread Tom Kitta
Hello, I am thinking about taking MS exams 70-228/70-229 (SQL Server 2000/SQL Server database design). Anyone would like to recommend good exam study books? Thanks a lot, TK [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: [cftalk] RE: What's wrong?

2003-11-28 Thread Hassan Arteaga Rodriguez
I have only one site, i'm not using host header or other IP or ports...just one site and many virtual dirs. Regards __ MSc. Hassan Arteaga Rodrguez Microsoft Certified System Engineer. DIGI- Grupo de Desarrollo COPEXTEL, S.A. -Original Message- From: Allan Cliff [mailto:[EMAIL

re: Querying a query getting an error?

2003-11-28 Thread Bushy
Hi, I'm trying to get the proper order of the directories. Bascially don't list the directories/files as case sensitive. I'm running the following query: cfftp action="" stoponerror=no name=rootfiles directory=#url_dir# connection=test cfquery name=dirlisting dbtypequery SELECT IsDirectory,

Re: differences with stored procs MX/5

2003-11-28 Thread Scott Brady
John Beynon wrote: As I said, it works perfectly on CF5 but CFMX just does nothing...no error or anything. The JDBC driver in CFMX no longer recognizes the dbvarname attribute. So, the order in which you define your cfprocparams is important. Make sure that your cfprocparams are in the same

Register Trial version of CFMX...

2003-11-28 Thread Bryan Stevenson
Hey All, Does anybody know what will happen if you try and register a trial version of CFMX Enterprise with a CFMX Standard serial number?I would assume it would just revert to a registered standard versionbut thought I'd check. Thanks Bryan Stevenson B.Comm. VP Director of E-Commerce

RE: Register Trial version of CFMX...

2003-11-28 Thread Angel Stewart
Hi, That's what it did for me when I tried to install the Enterprise Trial version off the Macromedia website. I used a valid CFMX 6 Professional serial number. -Gel -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Hey All, Does anybody know what will happen if

Re: Register Trial version of CFMX...

2003-11-28 Thread Bryan Stevenson
Thanks Gelone less thing to worry about ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

RE: Register Trial version of CFMX...

2003-11-28 Thread Angel Stewart
Yeah.. that was on initial installation. I re-read your question, and I'm wondering if you mean after installing CFMX Enterprise if you are expecting it to 'de-install' itself and revert to a CFMX Professional installation. The two installation types are very different. One installs Jrun

Image dimension tag that works on Linux

2003-11-28 Thread Bryan Stevenson
Hey All, I've tried a couple of custom tags on Linux to grab the width/height of an uploaded image file (cfx_ImageSize and !cf_imgsize).These tags work great on Windows and either error out or produce nonsense results on Linux (RedHat 9.0). Does naybody have a tag or know of a tag that will

Re: Register Trial version of CFMX...

2003-11-28 Thread Bryan Stevenson
arrggh ;-) Ya I'm talking if the Enterprise trial is already installed and you register it with a Standard serial.I know the installs are different, but some of that depends on the type of Enterprise install doesn't it?Oh well..no biggi either way...might need to uninstall first.Just a bit

RE: Image dimension tag that works on Linux

2003-11-28 Thread Mike Townend
if you are running MX or have java installed on there you could try... function getImageDimensions(sFile) { var strRtn = StructNew(); var oImage = createObject(java,javax.swing.ImageIcon).init(sFile); strRtn.Width = oImage.getIconWidth(); strRtn.Height = oImage.getIconHeight();

RE: Register Trial version of CFMX...

2003-11-28 Thread chris kief
This is incorrect. The bits layed down for CFMX Enterprise / Standard / Developer stand alone (ie. has an integrated version of JRun) are all the same. Various features are enabled / disabled depending on the serial number. There is no need to uninstall / reinstall to switch between the versions,

RE: Access Windows accounts through CF

2003-11-28 Thread Dirk Sieber
Thanks Dave - I'll check those out, as well as the Internet Hosting toolkit that a few people mentioned.Hopefully one of those will do the trick! Thanks everyone for your help! Dirk -Original Message- From: David Delbridge [mailto:[EMAIL PROTECTED] Sent: Thursday, November 27,

Re: Image dimension tag that works on Linux

2003-11-28 Thread Bryan Stevenson
yep..running MX..but it's Standard Edition not Enterprise...guess that won't work then...but thanks...I'll hang on to that for other Enterprise projects Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED]

RE: Image dimension tag that works on Linux

2003-11-28 Thread Mike Townend
should work on standard, we only use the standard version.Its not tapping into jsp just java -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Friday, November 28, 2003 19:48 To: CF-Talk Subject: Re: Image dimension tag that works on Linux yep..running MX..but

Access 97 with CFMX 6.0 unacceptably slow

2003-11-28 Thread Don
Hi, I have a small Access 97 database (~2.5 MB), which has about 9 user tables, and data are normalized up to 3NF.I'm using CFMX 6.0 Prof. for Windows.I just did a quick test, query runing from Access's internal SQL command line/window, very fast, reasonably involved query (with three inner

Re: Image dimension tag that works on Linux

2003-11-28 Thread Bryan Stevenson
excellent...thanks Mike...I'll give that a whirl after lunch ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner

CFMX and Fedora

2003-11-28 Thread Haggerty, Mike
I'm having some trouble with a CF MX on Fedora Core 1 installation, and I wondering if anyone can help. What happened is this: I removed the default Apache installation put there by Fedora, and installed Apache 2.0.48 instead. Then I installed the latest version of ColdFusion MX from MM's site.

MySQL datasource funkiness

2003-11-28 Thread exciteworks hosting
Hoping someone here may have run into thisas some point. on one of our production servers, I am running into a strange problem that seems to occur every once in a while...which makes it hard to nail down. Every once in a while, after a new database and user is setup in phpMyAdmin, datasources

Virus disguised as a Flash icon

2003-11-28 Thread Mike Brunt
This looks genuine and I think it is current. http://antivirus.about.com/library/weekly/aa121901a.htm Kind Regards - Mike Brunt Webapper Services LLC Web Site http://www.webapper.com Blog http://www.webapper.net Webapper Web Application Specialists [Todays Threads] [This Message]

RE: CFMX and Fedora

2003-11-28 Thread Dave Watts
CF worked fine until I restarted the server, and now it just hangs. When I comment out the JRun connector parts of httpd.conf and restart Apache, it goes back to working (without CF). What happens when you try to restart Apache with the JRun connector stuff still in httpd.conf? Usually,

RE: Register Trial version of CFMX...

2003-11-28 Thread Dave Watts
The two installation types are very different. One installs Jrun 4, and the other just installs the basic CFMX services you are accustomed to. This isn't true, with regard to CFMX Enterprise and CFMX Professional. With both, you just get the basic CFMX services. With both, you get a subset

RE: Register Trial version of CFMX...

2003-11-28 Thread Dave Watts
Does anybody know what will happen if you try and register a trial version of CFMX Enterprise with a CFMX Standard serial number? I would assume it would just revert to a registered standard versionbut thought I'd check. You're correct. It'll become a CFMX Standard server. There's only

RE: Access 97 with CFMX 6.0 unacceptably slow

2003-11-28 Thread Dave Watts
I have a small Access 97 database (~2.5 MB), which has about 9 user tables, and data are normalized up to 3NF.I'm using CFMX 6.0 Prof. for Windows.I just did a quick test, query runing from Access's internal SQL command line/window, very fast, reasonably involved query (with three inner

RE: CFMX and Fedora

2003-11-28 Thread Haggerty, Mike
Apache is not giving me any error messages at all when I include the JRun connector stuff. The only thing that happens is it has a lot of trouble shutting down, and it looks like it is segfaulting all over the place. There will be about 15 process threads that take about five minutes to shut down.

RE: Web services question

2003-11-28 Thread Dave Watts
Anyone got some good resources for consuming web services with CFMX?? Google hasn't turned up much, but then I'm probably using the wrong search terms. There isn't very much out there, actually, as far as I can tell. Usually, things aren't very complicated, with the exception of dealing with

Web Service for daily quote?

2003-11-28 Thread Bryan Stevenson
Hey All, Does anybody know of a web service that grabs and displays a corny quote or joke of the day? Thanks Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED]

CFX_image getsize

2003-11-28 Thread Jake McKee
Help! I'm trying to grab the dimensions of a just uploaded image. I'm using the CFX_Image custom tag, and trying to use the getSize command. At the same time, I am creating a thumbnail of the image, and the getSize command returns only the value of the thumbnail, not the full size image. Code

Re: Web Service for daily quote?

2003-11-28 Thread Jim Campbell
There are a few different ones at www.xmethods.net - just do a browser search for quote in the full list.Here are a few of them: http://www.swanandmokashi.com/HomePage/WebServices/QuoteOfTheDay.asmx?WSDL http://adrianr.dyndns.org/Fortune/Fortune.wsdl

bizarre encoding error - HELP!!

2003-11-28 Thread Bryan Stevenson
Hey All, I'm on Win 2k Advanced server with CFMX 6.1 Enterprise I have a form that contains a single prompt (input type=file) for selecting an image and uploading it.When an error is detected (i.e. uploaded image has incorrect dimensions), I re-display the form with an error message (form

CFFUNCTION - Any thoughts??

2003-11-28 Thread Bryan Stevenson
Hey All, Below is a CFFUNCTION to check an image's size: cffunction name=ImageSize returnType=struct access=public cfargument name=FileLoc type=string required=Yes cfset ImageInfo = StructNew() cfset ImageObject = CreateObject(java,javax.swing.ImageIcon).init(#ARGUMENTS.FileLoc#) cfset

RE: CFFUNCTION - Any thoughts??

2003-11-28 Thread chris kief
I've been unable to get this bit of code working on Linux myself. I'd like to see a solution as well. Also, not that it helps your problem, but no #s necessary here: CreateObject(java,javax.swing.ImageIcon).init(ARGUMENTS.FileLoc) chris From: Bryan

Re:CFMX and Fedora

2003-11-28 Thread techsoldaten
Actually, here is what is showing up straight from the CF Exception log. Error,main,11/27/03,23:45:58,,/opt/coldfusionmx/lib/libcfindex.so: libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory java.lang.UnsatisfiedLinkError: /opt/coldfusionmx/lib/libcfindex.so:

am I signed up?

2003-11-28 Thread Daniel Farmer
I have been getting the email from CF-Talk, but I've tried sending my own to the reply-to address provided with some of your emails, but I don't see my emails being posted. Right now, I'm posting from the houseoffusion site. See if that works. [Todays Threads] [This Message] [Subscription]