Re: JVM Heap Size

2011-10-05 Thread Maureen Barger
There's also tons of profilers out there for the Sun JVM. Rather than throw spaghetti at the wall and see what sticks, install one and watch your app(s) for a while. Perhaps your RMI interval could be longer, GC method be different, heap size smaller or larger etc. And on the other side of the

Re: How to vary the size of the JVMs in CF8 multiserver?

2009-12-04 Thread Maureen Barger
Each instance has to use its own jvm.config. You should uniquely name them, and inside can point to different jvms, classpaths, parameters etc. You will have to use a wrapper script and can no longer restart them from the web admin pages. On Fri, Dec 4, 2009 at 12:05, Jim Martin

Re: CF7 multiserver config with JRun and SSL = 500 errors

2009-12-03 Thread Maureen Barger
You probably have a virtual host set up for your SSL host? Are you sure you have your JRunConfig Bootstrap set to the port of your instance inside the conf of that SSL vhost? On Thu, Dec 3, 2009 at 09:24, Rob Barthle r...@barthle.com wrote: You can run the site via Apache with SSL without

Re: How to register Fonts for CF8 Enterprise installation?

2009-11-23 Thread Maureen Barger
You are running multiserver which implies you are using sandbox security? Add your fonts directory to the instance's sandbox security. On Sun, Nov 22, 2009 at 19:43, Dave Hatz daveh...@hatzventures.org wrote: We are running CF8 Enterprise, multi-server, JRun, Windows 2008 box.  This is a

Re: ColdFusion on Solaris Automatic Startup Scripts

2009-11-04 Thread Maureen Barger
Who are you when you run this? On Wed, Nov 4, 2009 at 16:46, Ian Skinner h...@ilsweb.com wrote: According to this technote: Workaround for ColdFusion Startup with System Startup on Solaris (ColdFusion 8 and 8.0.1) http://kb2.adobe.com/cps/403/kb403351.html, we should be able to run these

Re: Determining CF8's UNIX Account

2009-09-02 Thread Maureen Barger
You said you are running CF under jRun - have you implemented sandbox security as well? If so you may have to check permissions for that directory. If you have been starting it manually, ensure you are starting it under the correct user. Have you grepped for the process yet? (Someone already

Re: Determining CF8's UNIX Account

2009-09-02 Thread Maureen Barger
Yup, that's your issue. Either chmod -R 777 on the dir where you want to save files (maybe not so good) or change that line to RUNTIME_USER=foo and you should be on your way! If you do change the RUNTIME_USER ensure your other dirs have correct permissions too or you will have bigger problems!

Re: Garbage collection every 20 minutes

2009-07-30 Thread Maureen Barger
What's teh jvm version? What is your GC parameter? What changed last month? On Thu, Jul 30, 2009 at 17:37, Michael Dinowitzmdino...@houseoffusion.com wrote: I have it tuned: min heap 512 max heap 1024 permsize: 128 maxpermsize 512 Like I said, LOTS of traffic and a lot of cached txt

CFMXE 7.x and SQL Server 2008

2009-07-29 Thread Maureen Barger
Hello - a client recently upgraded to SQL Server 2008 and we can no longer connect from CFMXE 7.x. I have asked them to go through the steps outlined here http://blog.mxunit.org/2009/02/connecting-sql-server-2008-to.html but errors persist. The DSN is defined using the standard SQL Server driver

Re: New Server CF error

2009-05-13 Thread Maureen Barger
Did you install the 64-bit version of CF and use a 32-bit jvm? Or vice-versa? On Wed, May 13, 2009 at 18:26, Danny Leavitt danny.leav...@gmail.com wrote: Hi all, I cloned my Windows 2000 server and moved it to a new one.  We had Coldfusion MX7.   When I open the CF admin page on this new

Re: New Server CF error

2009-05-13 Thread Maureen Barger
oopsie, CFMX7. Anyway ensure your jvm is the same. Do you get any errors in cfserver.log at CF's startup? On Wed, May 13, 2009 at 17:47, Maureen Barger m...@cornell.edu wrote: Did you install the 64-bit version of CF and use a 32-bit jvm? Or vice-versa? On Wed, May 13, 2009 at 18:26, Danny

Re: Server just.... stops?

2009-05-06 Thread Maureen Barger
Turn on the internal webserver for FR and you will bypass jrun. Make note of its port and you can hit http://yourserverhere.com:12345/fusionreactor/fhtml.cfm?mode=login and get right in. Do you have FR set up to send you alerts when values you specify (ie requests, memory, cpu) are met? Enable

Re: Apache and ColdFusion Trouble

2009-05-06 Thread Maureen Barger
Jason Slack, are you still stuck? Your personal email address fails for me. On Mon, May 4, 2009 at 19:46, Jason Slack applesl...@gmail.com wrote: Hi Maureen, OK, so I did: [r...@server1 ~]# apachectl stop [r...@server1 ~]# /opt/coldfusion8/bin/coldfusion stop [r...@server1 ~]# nano

Re: Capturing requested URL in CFML

2009-05-06 Thread Maureen Barger
Are you using apache 2.2? set LogLevel to debug and restart, see what apache tells you in error.log. Also you can have a rewrite_log written that can be fun to interpret. That is I assume you are using their suggested .htaccess rules? On Wed, May 6, 2009 at 18:02, Ian Skinner h...@ilsweb.com

Re: Apache and ColdFusion Trouble

2009-05-04 Thread Maureen Barger
can you enable web server in cf and see what happens? do you need mod_proxy and ldap supprt? have you enabled sandbox security? On Mon, May 4, 2009 at 17:29, Jason Slack applesl...@gmail.com wrote: I am still not figuring this out! Does anyone have ideas? -Jason Hi Maureen, Are you

Re: Apache and ColdFusion Trouble

2009-05-04 Thread Maureen Barger
I would disable any module in apache you don't need. poke around in jrun.xml - it's probably the easiest way to enable http in CF. you can double check your jrun port there too. On Mon, May 4, 2009 at 17:46, Jason Slack applesl...@gmail.com wrote: I dont need mod_proxy or ldap. Can you tell

Re: Apache and ColdFusion Trouble

2009-05-03 Thread Maureen Barger
Set your LogLevel in apache to debug. LogLevel debug ./apachectl graceful tail -f error.log Hit your site. What happens? Also tail your cfserver.log. On Sun, May 3, 2009 at 14:09, Jason Slack applesl...@gmail.com wrote: Hi Maureen, Thanks for your reply. I worked with your instructions

Re: Apache and ColdFusion Trouble

2009-05-03 Thread Maureen Barger
Are you running apache 2.2x? Can you perform a restart (apachectl restart or apachectl stop| apachectl start) and watch to see how things load and post back? On Sun, May 3, 2009 at 14:28, Jason Slack applesl...@gmail.com wrote: Hi Maureen, OK, I did this and both error_log and the

Re: Apache and ColdFusion Trouble

2009-05-02 Thread Maureen Barger
There is a stanza you need to add for mod_jrun - did you add that too? On Sat, May 2, 2009 at 20:00, Jason Todd Slack-Moehrle mailingli...@mailnewsrss.com wrote: Hi All, My quest is going slowly but surely and I am learning a lot. I use ColdFusion 8 Enterprise. I installed in on my CentOS

Re: Apache and ColdFusion Trouble

2009-05-02 Thread Maureen Barger
Your mod_jk.so can be found in the wsconfig.jar. As I recall it is stored in directories named per version and build of apache. Extract and copy the one that applies to a directory your apache install can read. Then you need to add the following (where X denotes the version of jrun/apache you

cfadmin api scripting

2009-04-20 Thread Maureen Barger
Hi - I am looking for info on using the cfadmin api to copy sandbox security from instance to instance. For once google is letting me down. Can anyone nudge me in the right direction for some docs and/or examples? Looking for cfmxe7 - cfmxe7 and cfmxe7 - cfme8. Thanks.

Re: Server Monitoring

2009-04-14 Thread Maureen Barger
Hi - you dono't say what db you are running - I am guessing SQL Server? I can think of a couple of ways from the CF point of view: 1.Create a cfm file that connects to an instance on your db server. E-mail the results of SELECT GETDATE() AS [CurrentDateTime] to you. Set this up as a scheduled

Re: Oracle 11G CLOBs\BLOBs yielding non-standard characters with CF7

2009-03-05 Thread Maureen Barger
Hi - the macromedia.jar file that ships with cfmxe7 is not the most current. http://kb.adobe.com/selfservice/viewContent.do?externalId=42dcb10a Also have you tried Oracle's thin client? You can download it off http://www.oracle.com/ This will be specific to 11g. The character set is applied at

Re: Oracle 11G CLOBs\BLOBs yielding non-standard characters with CF7

2009-03-05 Thread Maureen Barger
You can check the version of you drivers yourself with a cfm file :) cfset drivernames=Replace(drivernames, ,,ALL) !--- replace all spaces --- cfloop index=drivername list=#drivernames# cfobject action=CREATE class=#drivername# name=driver type=JAVA cfset args= ArrayNew(1) cfset

Re: Moving a ColdFusion server.

2009-03-04 Thread Maureen Barger
Depending on how your jvm is configured you will need to restart all of them because of dns cache and ttl values. Also I guess it would depend on how you are configuring your jrun connection. If you are using something like JRunConfig Bootstrap 127.0.0.1:{port} and connecting to your localhost

Re: Client IP changes on SSL- tricks load balancer

2009-02-25 Thread Maureen Barger
Can we back up a little, just for fun? :) Can you talk a little bit about how your app is set up? Here is my take on your description: Your loadbalancer hosts your service name, www.bradsapp.com and it routes traffic to www1.bradsapp.com www2.bradsapp.com and www3.bradsapp.com. The LB is

Re: Adding new CF instances and apache VirtualHosts to our Solaris Unix server.

2009-02-24 Thread Maureen Barger
You need to determine the proxy port of your ColdFusion instance. This is found in your jrun.xml, or you can use your jrun admin interface to determine your port number (default is 51000 for the cfusion instance but each subsequent instance will be assigned a new port). In your vhost conf, load

Re: Multiple ColdFusion AKA JRun Server port numbers.

2009-02-24 Thread Maureen Barger
Nope, you're good. On Tue, Feb 24, 2009 at 15:06, Ian Skinner h...@ilsweb.com wrote: Dave Watts wrote: You can edit this in jrun.xml, or within the JRun admin console web application, but you need to do this before configuring Apache of course. Of course, or modify Apache accordingly I

Re: Apache and subversion issue

2009-02-18 Thread Maureen Barger
Alias /svn C:\Program Files\Apache Software Foundation\Apache2.2\htdocs On Wed, Feb 18, 2009 at 12:07, Chad McCue c...@advmediaproductions.com wrote: C:\Program Files\Apache Software Foundation\Apache2.2\htdocs ~| Adobe®

Re: JVM Tuning and Garbage Collection

2009-02-05 Thread Maureen Barger
Depending on how your app handles things you can address the frequency of GC but also change the _method_ of GC as well. Pete Freitag gives a great explanation on the different methods of GC: http://www.petefreitag.com/articles/gctuning/ It's for 1.42 but it gets the general definitions across.

Re: ColdFusion 8.0.1 Kills our Apache

2009-01-13 Thread Maureen Barger
Aw darn - you wasted a lot of time! If you unpack the wsconfig.jar you will find the so files already there! You just match up the so with the version of apache you are running. As far as connecting each instance to a virtual host, you need to include the port number of the jRun instance in your

Size of session data

2008-11-24 Thread Maureen barger
Hi - is there a way to determine the amount of data stored in session scope, both overall and per object? Thanks. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Size of session data

2008-11-24 Thread Maureen barger
We are running CF7. I know how to monitor memory usage in the jvm but I need to know how much data is passed per request in the session scope. I suspect we have an app that throws too much up there and want to quantify my hunch.

Oracle 11g

2008-10-28 Thread Maureen Barger
Hi - does anyone know of any plans to push out free DataDirect drivers (an updated macromedia.jar) in support of Oracle 11g? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

Re: Oracle 11g

2008-10-28 Thread Maureen Barger
Oracle client Here are a couple of blog posts to get your started http://www.talkingtree.com/blog/index.cfm/2005/11/14/Oracle10gJDBCHowTo http://blog.sixsigns.com/2008/01/25/configure-the-jdbc-driver-for-oracle-on-coldfusion-8-standard-edition/ On Tue, Oct 28, 2008 at 9:45 PM, Maureen

Re: ColdFusion 8 with Oracle 10g R2 Issue

2008-10-07 Thread Maureen Barger
I noticed differences when we moved as well. I am betting when you connected to non-RAC instances, you used the Oracle driver from the pulldown in the DSN section. When you connect to RAC instances, you have downloaded Oracle's thin client and are using Oracle jdbc string. You have 3 options in

Re: Coldfusion restarting itself

2008-07-04 Thread Maureen Barger
Also try to find the files hs_err_pid*.log on your disk. Not sure where they get stored on windows boxes (your java dir I would expect; on unix it's in the holding id's user directory). There is usually a good dump there that tells you what was going on. On Fri, Jul 4, 2008 at 7:40 AM, Rick Root

Determing what version of jrun from -info string

2008-05-14 Thread Maureen Barger
I know some time ago I found a table that matched up hot fixes with the code that is returned from issuing jrun -info. Can anyone point me to it? thanks! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

chroot and ColdFusion multiserver

2008-05-11 Thread Maureen Barger
Has anyone implemented chroot in their multiserver installation? I am wondering how sandbox security is affected. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

cfquery options and connection pooling

2008-04-21 Thread Maureen Barger
I am trying to figure out the technical ramifications of defining the username and password for a specific DSN in a separate text file and how it may relate to connection pooling v. supplying the user/pass directly in the DSN. Once the file is loaded, user and password are passed to cfqueries

Re: cfquery options and connection pooling

2008-04-21 Thread Maureen Barger
thanks, we are using Oracle driver provided in the macromedia.jar, 3.5 since Oracle's own driver does not support stored procedures. On Mon, Apr 21, 2008 at 1:56 PM, Dave Watts [EMAIL PROTECTED] wrote: I am trying to figure out the technical ramifications of defining the username and

Re: ColdFusion 8.0 clustering - quick question.

2008-04-20 Thread Maureen Barger
I think one requirement for session replication is to turn on J2EE sessions - do you have that on? On Sat, April 19, 2008 13:30, WebSite CFtalk wrote: Hello, I'm struggling with a cluster setup. (IIS6/CF8, 2 servers with 2 instances each) The problem is session replication - tons of errors

wsconfig.jar v. Apache 2.0.59 solaris

2008-04-16 Thread Maureen Barger
Hi - I am running Apache 2.0.59 on Solaris sparc with ColdFusion multiserver 7.02. I have downloaded the latest wsconfig.jar from Adobe. However when trying to use it to set up connector for ColdFusion cluster, I receive the following error: info Macromedia JRun 4.0 (Build 107948) info Version

Re: wsconfig.jar v. Apache 2.0.59 solaris

2008-04-16 Thread Maureen Barger
Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Maureen Barger wrote: Hi - I am running Apache 2.0.59 on Solaris sparc with ColdFusion multiserver 7.02. I have downloaded the latest wsconfig.jar from

Re: wsconfig.jar v. Apache 2.0.59 solaris

2008-04-16 Thread Maureen Barger
that's what I thought, but it is not showing up. I searched underlying xml files as well. On Wed, Apr 16, 2008 at 12:48 PM, Dave Watts [EMAIL PROTECTED] wrote: thanks, but what I am really trying to do is mount a cluster def to apache and cannot find its port. Do I instead mount the ports

Defining a cf cluster in apache

2008-04-15 Thread Maureen Barger
How do I find the jrun port to mount the defined coldfusion cluster instance to apache? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

cftransaction and user/pass in DSN

2008-04-15 Thread Maureen Barger
I cannot find this documented anywhere although I see mention of it on blogs and forums. A developer here uses the macromedia driver for stored proc support. In her application she also uses cftransaction. I have asked that she supply the database username and password in either her cftransaction

Re: cfcexplorer.cfc requires RDS password

2007-12-07 Thread Maureen barger
On one of our servers, the /CFIDE/componentutils/cfcexplorer.cfc is requiring an RDS password to access. Of all the ColdFusion (7.x) instances we have, I have never seen this happen. How can I remove this requirement? Thanks! ~|

cfcexplorer.cfc requires RDS password

2007-12-07 Thread Maureen Barger
On one of our servers, the /CFIDE/componentutils/cfcexplorer.cfc is requiring an RDS password to access. Of all the ColdFusion (7.x) instances we have, I have never seen this happen. How can I remove this requirement? Thanks!

Re: cfcexplorer.cfc requires RDS password

2007-12-07 Thread Maureen barger
Never mind - found my answer and renamed Application.cfm in CFIDE/componentutils. On one of our servers, the /CFIDE/componentutils/cfcexplorer.cfc is requiring an RDS password to access. Of all the ColdFusion (7.x) instances we have, I have never seen this happen. How can I remove this

Re: multiserver and Verity collections

2007-12-01 Thread Maureen Barger
I do not want to share verity. I want to create a collection that cannot be seen or used by other instances. So far I have not been able to achieve that. From the little documentation I have found, it seems I need to install Verity outside of ColdFusion and enable it from the instance, instead of

RE: multiserver and Verity collections

2007-11-30 Thread Maureen Barger
That is not what I am seeing. But since I am new to verity the problem could be mine alone. :-/ Verity is started from the cfusion instance. I do not see a way to start it from others. On Fri, November 30, 2007 13:36, Dave Watts wrote: Hi - I am just getting started with Verity. Is it possible

multiserver and Verity collections

2007-11-30 Thread Maureen Barger
Hi - I am just getting started with Verity. Is it possible to create a collection and not have it be accessible via cfadmin from other instances? ~| Enterprise web applications, build robust, secure scalable apps today - Try it

Understanding the relationship btwn instances in multiserver

2007-11-20 Thread Maureen Barger
We run 7.01 under Solaris with an apache front end. Each instance is then set up as an apache virtual host attached to its respective jrun. ColdFusion instances are not clustered. I have noticed at times when one instance is having traffic issues (for example, a database issue which allows

RE: Understanding the relationship btwn instances in multiserver

2007-11-20 Thread Maureen Barger
no On Tue, November 20, 2007 12:13, Dave Watts wrote: We run 7.01 under Solaris with an apache front end. Each instance is then set up as an apache virtual host attached to its respective jrun. Are these instances using the same database server?

anyone using Cisco css?

2007-10-16 Thread Maureen Barger
replace the cfhttp URL with the backend dns entry it works. Has anyone ever encountered this and have some insight as to what is happening? I don't have direct access to the css since it is managed by another group. -- Maureen Barger CIT Information Systems 120 Maple Ave. Cornell University [EMAIL

Re: CF8, JBoss and Apache

2007-10-05 Thread Maureen Barger
, but seems to me you might be better off mapping the drive. Easier on you anyway. I hope this helps, just a little. -- Maureen Barger CIT Information Systems 120 Maple Ave. Cornell University [EMAIL PROTECTED] On Fri, October 5, 2007 16:36, austen rustrum wrote: I'm looking for some advice here

Apache virtual hosts and single jrun

2007-09-20 Thread Maureen Barger
Setup: cfmxe 7.01 multiserver instance. Apache 2.059 front end Solaris Virtual hosts point to same jrun instance. For example, there is main host www.splot.com with applications appone.splot.com and apptwo.splot.com where appone and apptwo can also be accessed as www.splot.com/appone/ and

default for Jrunconfig Ssl false

2007-09-14 Thread Maureen Barger
If the entry for JRunConfig Ssl {value} is commented out, what is the default? ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex

Re: In depth Solaris Unix CF install questions

2007-09-01 Thread Maureen Barger
In my experience we have installed the product as root then gone back to chown and chgrp to reflect the holding id who will run ColdFusion. Typically the holding id and those with accounts on the system are in the same group. James Holmes brings up a good point about sudo as well. Different shell

displaying jvm version from cfm

2007-09-01 Thread Maureen Barger
How do I display the java version of current environment in a cfm page? Thanks. ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now

Re: Curious items in cfserver.log

2007-05-02 Thread Maureen Barger
Check your permissions. This is typically a read-only file under Solaris at least. -- Maureen Barger CIT Information Systems 120 Maple Ave. Cornell University [EMAIL PROTECTED] On Tue, May 1, 2007 12:23, Rick Root wrote: Anyone seen this before? May 1, 2007 10:23:42 AM

More questions on RSS

2007-04-22 Thread Maureen Barger
We are about to migrate a server that generates RSS feeds. The path to the feed and the linked files will change. Will this affect subscribers at all, making old links look new again? Thanks. ~| ColdFusion MX7 and Flex 2

Dreamweaver and ssh keys

2007-03-28 Thread Maureen Barger
Does anyone know where Dreamweaver stores keys associated with sftp connections? ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade see new features.

Re: Dreamweaver and ssh keys

2007-03-28 Thread Maureen Barger
On 28 Mar 2007, at 14:04, Tom Chiverton wrote: On Wednesday 28 Mar 2007, Maureen Barger wrote: sftp connections? What has SSH got to do with SFTP ? Did you mean SCP ? DW doesn't support that does it ? ~| Create Web

Re: Dreamweaver and ssh keys

2007-03-28 Thread Maureen Barger
It notices when you move hosts, trust me :) This is ssh, and not SSL (which would be the cert requirement). On Wed, March 28, 2007 14:19, Dinner wrote: On 3/28/07, Maureen Barger wrote: I meant ssh keys and sftp :) Depends on the version of Dreamweaver, IIRC. It used to use plink

Fusionreactor 2.0 question

2007-02-20 Thread Maureen Barger
and not be able to add others' instances to their dashboard. Is this possible? -- Maureen Barger CIT Information Systems 120 Maple Ave. Cornell University [EMAIL PROTECTED] ~| Create robust enterprise, web RIAs. Upgrade

Re: JVM / JRE update

2007-02-08 Thread Maureen Barger
FWIW for Solaris, I renamed the jre directory to jre_default and created a jre symlink in same directory that points to 1.4.2_11. I had to modify some sandbox settings to reflect the real location of the jre, but it has worked well. -- Maureen Barger CIT Information Systems 120 Maple Ave

CFMXE7: controlling Verity

2006-10-23 Thread Maureen Barger
Hi - We seem to be having trouble with the Verity engine. Do we need to write a wrapper script to start and stop it at the same time cf is started and stopped? I am finding that it continues to run when cf is stopped, and loses its connection to cf once cf is restarted, and has to be restarted as

cfflush behavior

2006-10-19 Thread Maureen Barger
Does cfflush depend on any server settings? Out of 3 servers, it behaves as expected on 2, and does not work at all on 1. CFMXE 7.01 running on Solaris. Thanks. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

Re: CFMX7 Search Service Won't Start

2006-09-29 Thread Maureen Barger
You don't say what platform you are on but I can share what happened to me last weekend. I upgraded a couple servers from cfmxe6-7 running on solaris boxes. As I tri ed to migrate the settings from 6 to 7 I would get failures. It turned out to be permissions-related. So while the installer will go

Re: Rather big log

2006-09-26 Thread Maureen Barger
On Tue, September 26, 2006 06:47, Tom Chiverton wrote: You really want to sort out rotating log files too. I am curious how folks rotate cfserver.log in a single server CFMXE7 environment without restarting cfmxe. -- Maureen Barger CIT Information Systems 120 Maple Ave. Cornell University

Re: Fusion Reactor issues

2006-09-06 Thread Maureen Barger
. :( -- Maureen Barger CIT Information Systems 120 Maple Ave. Cornell University [EMAIL PROTECTED] On Tue, September 5, 2006 22:19, Rick Root wrote: Sometimes, someone will do something on my server, because of poorly written code by yours truly, that will suck up huge amounts of memory and fusion

storing registry in a datastore

2006-08-24 Thread Maureen Barger
When doing this, do I need to define any tables or columns? Or simply create the instance and let ColdFusion do its thing? cfmxe 7.01 under solaris. Thanks. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

RE: storing registry in a datastore

2006-08-24 Thread Maureen Barger
I did, thanks. realized that after hitting send ;) On Thu, August 24, 2006 13:28, Everett, Al \(NIH/NIGMS\) [C] wrote: Do you mean storing CLIENT variables? -Original Message- From: Maureen Barger Sent: Thursday, August 24, 2006 1:15 PM To: CF-Talk Subject: storing registry

Re: Blog CFC for Oracle?

2006-08-22 Thread Maureen Barger
This has been on my todo list for a while now. I was planning on using the Oracle Workbench tool to migrate my MySQL instance to 10g and see what datatypes it suggested, and then tackling the code from there. Just haven't gotten to that part of my todo list yet ;) -- Maureen Barger CIT, Cornell

Tools for determining bottlenecks

2006-08-22 Thread Maureen Barger
We just started hosting an *extremely* busy site on a solaris box running CFMXE 7.x with an Oracle 10g backend along with 2 MySQL 3.x databases. There is a bottleneck somewhere and I am trying to determine where; I am wondering if it is even the database drivers. I have Fusion Reactor running and

RE: Tools for determining bottlenecks

2006-08-22 Thread Maureen Barger
On Tue, August 22, 2006 15:41, Russ wrote: I've only tried the trial fusionreactor, but had no trouble setting it up using the docs. It was the latest fusionreactor. Seefusion also lets you see the currently executing query and the slowest one, so you can use that as well. FR does this as

parsing css files

2006-05-31 Thread Maureen Barger
server configuration and JRun mappings on JRun server). Is renaming the css files to cfm our only option? -- Maureen Barger CIT, Cornell University [EMAIL PROTECTED] ~| Message: http://www.houseoffusion.com/lists.cfm/link

Re: parsing css files

2006-05-31 Thread Maureen Barger
oh right - I was missing the addition of the handler to the web.xml. Thanks! On Wed, May 31, 2006 15:39, Jerry Johnson wrote: I needed to make the change in two places on my setup. 1. In IIS, I needed to associate the .css extension with the cf server. 2. In the web.xml file