Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Dave Watts
> If you have removed apache you should not see this error message > > *An error occurred when performing a file operation exists on file > /serverpdfs/130kPDFs/137485.pdf. > The cause of this exception was: org.apache.commons.vfs.FileSystemException: > Could not determine the type of file " > htt

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Andrew Scott
If you have removed apache you should not see this error message *An error occurred when performing a file operation exists on file /serverpdfs/130kPDFs/137485.pdf. The cause of this exception was: org.apache.commons.vfs.FileSystemException: Could not determine the type of file " http://www.mybp-

Re: Anyone see anything wrong with this code?

2012-05-01 Thread Andrew Scott
The other thing to Rick, is if you are able to duplicate it on your development server, you might want to look into line debugging to help narrow it down. I swear by the line debugger to find hard to find problems like this. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+:

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Gonzo Rock
If the error says can't determine type then perhaps Apache is missing that setting telling it how to handle pdf's? On May 1, 2012 11:08 AM, "Curt Carpenter" wrote: > > Hi - > > I have an application that has been working fine for over a year and now > anything that references Virtual Directori

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Russ Michaels
also check that the user CF is running under still has access to the network paths. check the coldfusion service and see what user it runs as. now login as as that user and make sure he can access the network paths you point to in the vdirs. Russ

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Dave Watts
> Thanks for your thoughts. I am pretty sure that the IIS virtual directories > must be the problem. I can go into IIS and browse > to the virtual directories and see all of the files in them but IIS does not > seem to want to serve them up. I can access the > other server directly by setting th

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Carl Von Stetten
Whoops. That was supposed to be directed to Curt, not Dave. My bad. -Carl > Dave, > > Have you checked the permissions on the folder the Virtual Directory > points to? Is directory security in IIS on the Virtual Directory set > to "Enable anonymous access" with an account that has Windows

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Carl Von Stetten
Dave, Have you checked the permissions on the folder the Virtual Directory points to? Is directory security in IIS on the Virtual Directory set to "Enable anonymous access" with an account that has Windows permissions on that remote folder, or does each user that connects to your site use NT

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Curt Carpenter
Dave, Thanks for your thoughts. I am pretty sure that the IIS virtual directories must be the problem. I can go into IIS and browse to the virtual directories and see all of the files in them but IIS does not seem to want to serve them up. I can access the other server directly by setting the

RE: Anyone see anything wrong with this code?

2012-05-01 Thread Rick Faircloth
I think I understand what you're saying, Brian. I understand the index value, but I'm using a loopCounter (a bad choice of variable name, since it's not an actual count of loops) to be able to add a number to a photo filename that will make it distinct from another photo with the same name. (At l

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Dave Watts
> I have an application that has been working fine for over a year and now > anything that references Virtual Directories > no longer functions.  Here are the details: > > Coldfusion is running on Windows Server 2003 Enterprise. > Using IIS6 for the web server on the same box. > I have several vi

RE: Anyone see anything wrong with this code?

2012-05-01 Thread Rick Faircloth
True, true... :o) -Original Message- From: Claude Schnéegans [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans >I'll have to work on translating this into jQuery. ... or simply use my function it as is. It has been working fine for years, long before jQuery was on the market. ~~

RE: Anyone see anything wrong with this code?

2012-05-01 Thread Rick Faircloth
Thanks for the info, Andrew! -Original Message- From: Andrew Scott [mailto:andr...@andyscott.id.au] Sent: Tuesday, May 01, 2012 3:42 PM To: cf-talk Subject: Re: Anyone see anything wrong with this code? Rick if there is an error being thrown then the log files are important here. An

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Russ Michaels
I have had Apave and IIs and CF all running together without issue,so can;t think of any other cause. If you have removed both CF and apache then that only leaves IIS itself as the cause. So you next step would be to remove and reinstall that. You can backup the IIS metabase so that you do not los

Re: Anyone see anything wrong with this code?

2012-05-01 Thread Claude Schnéegans
>>I'll have to work on translating this into jQuery. ... or simply use my function it as is. It has been working fine for years, long before jQuery was on the market. ~| Order the Adobe Coldfusion Anthology now! http://www.ama

Re: Anyone see anything wrong with this code?

2012-05-01 Thread Andrew Scott
Rick if there is an error being thrown then the log files are important here. An other thing to note is that it might pay to look at something like this. http://www.andyscott.id.au/2011/8/27/ColdFusion-and-Remote-Calls-and-notifying-the-caller-of-the-problem This is how I handle all Ajax calls,

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Curt Carpenter
Russ, I didn't make any other config changes like that - other than to Apache - but I've since completely removed Apache from the system. Thanks Curt >did you make any other changes in order to get Apache and IIS working >together ? >e.g. >httpcfg set iplisten -i XXX.XX.XXX.X > >I can't ima

Re: Anyone see anything wrong with this code?

2012-05-01 Thread Brian Thornton
Correct. There is a x of how many exist. On Tue, May 1, 2012 at 2:23 PM, Rick Faircloth wrote: > > Do you mean that I should use the "imageNumber" index variable > in place of the loopCounter variable? > > > -Original Message- > From: Brian Thornton [mailto:br...@cfdeveloper.com] > Sent:

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Russ Michaels
did you make any other changes in order to get Apache and IIS working together ? e.g. httpcfg set iplisten -i XXX.XX.XXX.X I can't imagine why that would cause vDir issues, but worth undoing if you did it just to be sure. On Tue, May 1, 2012 at 7:08 PM, Curt Carpenter wrote: > > Hi - > > I hav

Re: Anyone see anything wrong with this code?

2012-05-01 Thread .jonah
You can always add some tracing or logging to the function and output it to a file to study offline. You can also create a dummy html form and post it to the cfc instead of using ajax. that way you can see whatever errors and debugging come back. On 5/1/12 10:48 AM, Rick Faircloth wrote: > Loo

Application Scoped CFC's and the Request Scope

2012-05-01 Thread Brook Davies
Hey Guys, While I know its not best practice, I am setting some variables in the request scope that are then referenced by several application scoped CFCs. Can this lead to collisions? I am seeing some strange errors that only happen when I run multiple requests at the same time and seem to i

RE: Anyone see anything wrong with this code?

2012-05-01 Thread Rick Faircloth
Do you mean that I should use the "imageNumber" index variable in place of the loopCounter variable? -Original Message- From: Brian Thornton [mailto:br...@cfdeveloper.com] Sent: Tuesday, May 01, 2012 2:07 PM To: cf-talk Subject: Re: Anyone see anything wrong with this code? You are re

CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Curt Carpenter
Hi - I have an application that has been working fine for over a year and now anything that references Virtual Directories no longer functions. Here are the details: Coldfusion is running on Windows Server 2003 Enterprise. Using IIS6 for the web server on the same box. I have several virtual

Re: Anyone see anything wrong with this code?

2012-05-01 Thread Brian Thornton
You are refrencing as 1 and need to refrence as the index. On Tue, May 1, 2012 at 1:48 PM, Rick Faircloth wrote: > > Looks like a good solution for getting some error clues > back from AJAX calls. I'll have to work on translating > this into jQuery. Usually, I can find some CF error code > in th

RE: Anyone see anything wrong with this code?

2012-05-01 Thread Rick Faircloth
Looks like a good solution for getting some error clues back from AJAX calls. I'll have to work on translating this into jQuery. Usually, I can find some CF error code in the iFrame used to process the file uploads, but nothing is appearing there, or in the JSON reply. Thanks for the tip! Rick

RE: Anyone see anything wrong with this code?

2012-05-01 Thread Rick Faircloth
Hi, Brian, and thanks for the feedback... What, in particular, do you think is wrong with the loopCounter variable? I moved it over the last few days thinking that might be the problem. And, concerning the imagenumberindex... same question as above. And how were you able to test the code? Did y

Re: CF9 ODBC Service standalone install

2012-05-01 Thread Chad Baloga
> I must have unchecked to install the ODBC service when I installed CF > last week. Are there any standalone installs out there for it? Nevermind. Found how... http://helpx.adobe.com/coldfusion/kb/coldfusion-odbc-services-corrupt-or.html ~

CF9 ODBC Service standalone install

2012-05-01 Thread Chad Baloga
I must have unchecked to install the ODBC service when I installed CF last week. Are there any standalone installs out there for it? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/

Re: Anyone see anything wrong with this code?

2012-05-01 Thread Claude Schnéegans
»>>I can't give any clues on error messages, because this is part of a cfc on the back end of an ajax call. No errors show up in firebug or elsewhere. This is a problem with Ajax calls. If the template called by Ajax throws an error, the text returned by the CF server is not compatible with Ajax

Re: How big is your CF JVM?

2012-05-01 Thread Chad Baloga
>Quick poll... How much memory have you allocated to CF on your production >servers? > >We are running Win 2008 R2, CF 9.0.1x Enterprise, w/ 3GB of RAM allocated to >the CF/JVM > >How say you? Our production has 8GB of RAM allocated

Re: Anyone see anything wrong with this code?

2012-05-01 Thread Brian Thornton
The problem seems to be the loopCounter and the imagenumberindex on my end. On Tue, May 1, 2012 at 12:57 PM, Rick Faircloth wrote: > > Hi, all... > > I've just moved onto a new server and it seems > that ever since that time, I've had problems getting > this code to work. > > The code has been

Anyone see anything wrong with this code?

2012-05-01 Thread Rick Faircloth
Hi, all... I've just moved onto a new server and it seems that ever since that time, I've had problems getting this code to work. The code has been tweaked a lot, here, there, and everywhere over the last several days trying to figure out why it won't work. I can't give any clues on error messa

Re: How big is your CF JVM?

2012-05-01 Thread Jochem van Dieten
On Tue, May 1, 2012 at 4:10 PM, Justin Hansen wrote: > Quick poll... How much memory have you allocated to CF on your production > servers? That ranges from 384 tot 3072 MB depending on the app. and workload. Jochem -- Jochem van Dieten http://jochem.vandieten.net/ ~

Re: How big is your CF JVM?

2012-05-01 Thread .jonah
Win 2003 32bit / ACF 9.0.1 1GB / jdk1.6.0_32 and Win 2008 64bit / ACF 9.0.1 3GB / jdk1.6.0_32 On 5/1/12 7:29 AM, John M Bliss wrote: > Windows Server 2003 R2, ACF 8.0.1 Standard, w/ 1GB of RAM allocated to the > CF/JVM. > > On Tue, May 1, 2012 at 9:10 AM, Justin Hansen wrote: > >> Quick poll...

Re: How big is your CF JVM?

2012-05-01 Thread John M Bliss
Windows Server 2003 R2, ACF 8.0.1 Standard, w/ 1GB of RAM allocated to the CF/JVM. On Tue, May 1, 2012 at 9:10 AM, Justin Hansen wrote: > > Quick poll... How much memory have you allocated to CF on your production > servers? > > We are running Win 2008 R2, CF 9.0.1x Enterprise, w/ 3GB of RAM al

How big is your CF JVM?

2012-05-01 Thread Justin Hansen
Quick poll... How much memory have you allocated to CF on your production servers? We are running Win 2008 R2, CF 9.0.1x Enterprise, w/ 3GB of RAM allocated to the CF/JVM How say you? ~| Order the Adobe Coldfusion Anthology n

Re: Pinterest

2012-05-01 Thread Scott Brady
Interesting in that this other report is that their users are declining. http://www.sfgate.com/cgi-bin/article.cgi?f=/g/a/2012/04/20/businessinsiderpinterests-hype-bubb.DTL Of course, they're measuring two different things. The SF Gate one talks about monthly active users using it via Facebook,