Re: How to get emails unblacklisted by Cisco Senderbase

2015-02-17 Thread Ricardo Russon

What is the error they are returning when blocking your mail? There will
usually be something in the mail logs on how to rectify the situation. Or
at least an error code to help with further diagnosis.

I've run some searches on their site of known spam domains and they seem to
just be aggregating other blacklists. Do they actually maintain their own
list?

When you search your domain does it give any insight as to which monitors
are actually blacklisting you?



On Tue, Feb 17, 2015 at 4:45 PM, Mike K afpwebwo...@gmail.com wrote:


 Has anyone had any experience with dealing with Cisco's Senderbase?

 Our small radio station has been blacklisted by Cisco's Senderbase as being
 a spammer (we aren't - but we send out a bulletin of 650 recipients every
 Saturday morning)  and now we can't send emails to any iiNet customer.
 That means we can't send email to 3 of the directors from any radio station
 email address.The web site can't send listener feedback to anyone that
 uses iiNET or any of its subsidiaries as their ISP.  We can['t send
 official emails to the regulator at ACMA either.

 We need to get un-blacklisted, but at senderbase.org there is plenty of
 statistical information about who is spamming  but nothing I can see that
 tells us what to do if we've been blacklisted and how to get
 Un-blacklisted.

 Anyone know where I go from here?

 (when I called iiNet, they took 63 minutes to get to actually talk to me,
 but their helpful suggestion was 'take it up with the web host'   - thats
 me.then 'take it up with the web developer'.   Thats me. then ..
 'take it up with the domain registrar;.   That's me.   then 'take it up
 with Cisco'  but you can't - there's no way to contact them that I can see)

 --
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360125
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: WebServices and HTTP/1.1

2015-01-27 Thread Ricardo Russon

Thanks Russ!

That's a big help.

Ricardo.

On Wed, Jan 28, 2015 at 10:28 AM, Russ Michaels r...@michaels.me.uk wrote:


 I suspect this is due to the Apache Axis version you are using. Axis 1 uses
 http 1.0 and axis 2 uses http 1.1
 I do not know which version CF10/11 use by default, but here is how to
 switch version to test this theory

 http://milanchandnacf.blogspot.in/2012/07/axis-2-and-axis-1-compatibility-issues.html

 There should also be a config option some in Axis to set it to use http/1.1
 by default if it is not doing so, but you can also specify this in the
 headers, although I am not sure exactly what the syntax is for doing this
 from CF.

 On Wed, Jan 28, 2015 at 12:04 AM, Ricardo Russon ricardo.rus...@gmail.com
 
 wrote:

 
  We have been using a web service of a merchant provider, and they have
  informed us that they will cease to support connections using HTTP/1.0.
 And
  must update our system to use HTTP/1.1.
 
  Our testing with them has shown that the calls we are making via
  CreateObject(webservice,...) is being transmitted via HTTP/1.0 for both
  CF9 and CF11.
 
  We are yet to confirm CF10, but will assume for the time being that it is
  also the case.
 
  Is there any way we can control this? Either programatically or
  environmentally (CF/IIS/Other)?
 
  Looking over these links doesn't seem to provide an answer.
 
 
 
 http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6978.html
  http://axis.apache.org/axis/java/reference.html#WSDL2JavaReference
 
  Any advice would be greatly appreciated.
 
  Ricardo.
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360011
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Auto File Uploading...

2014-08-07 Thread Ricardo Russon

Interesting point Dave.

But I just tested on Chrome (Mac) and it does pick up the changed file.


On Fri, Aug 8, 2014 at 12:17 AM, Dave Watts dwa...@figleaf.com wrote:


  This isn't the right tool for the job. But this code seems to work.
 
  !DOCTYPE html
  html
  head
  title/title
  /head
 
  body
 
  cfif StructKeyExists(FORM , 'fieldnames')
   cfdump var=#FORM# /
  scriptsetTimeout(function(){window.history.back();} , 2000);/script
   cfelse
 
  scriptsetTimeout(function(){document.getElementById('somefrm').submit();}
  , 2);/script
   form method=post id=somefrm enctype='multipart/form-data'
  input type=file name=somefile
  /form
   /cfif
  /body
  /html

 I'd be surprised if this worked, actually, since it's not going to
 reload the document from the filesystem. So, it'll continue uploading
 the file already loaded within the browser, but changes wouldn't be
 sent.

 Dave Watts, CTO, Fig Leaf Software
 1-202-527-9569
 http://www.figleaf.com/
 http://training.figleaf.com/

 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359092
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Auto File Uploading...

2014-08-07 Thread Ricardo Russon

And again, I don't think this would be the right tool for the job.
I just also thought that it wouldn't (shouldn't) work and had to try it out.

I would probably go for rsync or something similar.


On Fri, Aug 8, 2014 at 10:06 AM, Ricardo Russon ricardo.rus...@gmail.com
wrote:

 Interesting point Dave.

 But I just tested on Chrome (Mac) and it does pick up the changed file.


 On Fri, Aug 8, 2014 at 12:17 AM, Dave Watts dwa...@figleaf.com wrote:


  This isn't the right tool for the job. But this code seems to work.
 
  !DOCTYPE html
  html
  head
  title/title
  /head
 
  body
 
  cfif StructKeyExists(FORM , 'fieldnames')
   cfdump var=#FORM# /
  scriptsetTimeout(function(){window.history.back();} , 2000);/script
   cfelse
 
  scriptsetTimeout(function(){document.getElementById('somefrm').submit();}
  , 2);/script
   form method=post id=somefrm enctype='multipart/form-data'
  input type=file name=somefile
  /form
   /cfif
  /body
  /html

 I'd be surprised if this worked, actually, since it's not going to
 reload the document from the filesystem. So, it'll continue uploading
 the file already loaded within the browser, but changes wouldn't be
 sent.

 Dave Watts, CTO, Fig Leaf Software
 1-202-527-9569
 http://www.figleaf.com/
 http://training.figleaf.com/

 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359093
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (Semi-OT) - site sucker app

2014-08-06 Thread Ricardo Russon

I've always just used wget.





On Thu, Aug 7, 2014 at 10:35 AM, John M Bliss bliss.j...@gmail.com wrote:


 This is what I've used in the past:
 https://softbytelabs.com/en/BlackWidow/
 On Aug 6, 2014 8:32 PM, Michael Dinowitz mdino...@houseoffusion.com
 wrote:

 
  Does anyone have a suggestion for a good application that can be pointed
 to
  an url and then download every page under that url. For example, if I
 want
  to view all of the Google maps documents offline I can point the app at
  https://developers.google.com/maps and it'll get me all of the faq, the
  api
  docs, etc.
 
  Yes, I can write such an app in CF and have a dozen times over. I also
 know
  that if I start rewriting my old apps in any way, shape, or form, I run
 the
  risk of getting pulled into a black hole of optimization and organization
  and lose track of the real project. Save me from myself and point me to
  what you would use. ;)
 
  Thanks
  Michael
 
  It is a wise man who knows his own foibles, especially if he can spell
  foibles without using a spellchecker.
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359072
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Auto File Uploading...

2014-08-06 Thread Ricardo Russon

This isn't the right tool for the job. But this code seems to work.


!DOCTYPE html
html
head
title/title
/head

body

cfif StructKeyExists(FORM , 'fieldnames')
 cfdump var=#FORM# /
scriptsetTimeout(function(){window.history.back();} , 2000);/script
 cfelse
 scriptsetTimeout(function(){document.getElementById('somefrm').submit();}
, 2);/script
 form method=post id=somefrm enctype='multipart/form-data'
input type=file name=somefile
/form
 /cfif
/body
/html




On Thu, Aug 7, 2014 at 10:45 AM, John M Bliss bliss.j...@gmail.com wrote:


 In other words, if you have CF running locally, you could write something
 that performs a cfhttp post to server...mimicking browse, select file,
 click submit.
 On Aug 6, 2014 8:42 PM, John M Bliss bliss.j...@gmail.com wrote:

  ...or HTTP post.
  On Aug 6, 2014 8:39 PM, John M Bliss bliss.j...@gmail.com wrote:
 
  In short, no. You'd have to deliver file to server via email / FTP /
 etc.
  On Aug 6, 2014 8:36 PM, Phillip Vector vec...@mostdeadlygame.com
  wrote:
 
 
  So I have a server that reads a file that is submitted to it and
  processes
  the contents. I can not touch this server and change any settings on
 it..
 
  I want to take a file I have (Let's call it data.txt) and upload it to
  the
  server once an hour. I can just reload the page once an hour or I can
 set
  up a schedule, no problem.. I just can't seem to automate the browse
  button
  to pick the file (which I can understand not allowing).
 
  So is there any way for me to not use the browse button and post it
  directly to an address like a form?
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359078
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Installing CF11 on OS X Server.

2014-07-18 Thread Ricardo Russon

Does anyone know anywhere with instructions on how to configure CF 11 on OS
X Server (10.9.4)?

The connector scripts don't seem to support the alternate Apache locations
and config files (Server doesn't have an 'apache2.conf' file.)

I've tried to configure it all manually, but all I ever get is
java.lang.NullPointerException when running up CFM's.

I am trying to install it as Developer Edition.

Any assistance is appreciated.

Thanks,
Ricardo.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358906
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Installing CF11 on OS X Server.

2014-07-18 Thread Ricardo Russon

I got this working.
Always the way just after I post to a list.

Thought I would post what I did to get it working just in case it helps
someone else.

- I uninstalled CF (Deleted the CF11 Dir because the uninstall program
wouldn't launch).
- Created the apache2.conf file ( touch
/Library/Server/Web/Config/apache2.conf )
- Ran the installe; this time it let me pick the /Library/Server/Web/Config
directory for the connector
- Copied the line it put in the apache2.conf file to the bottom of the
/Library/Server/Web/Config/httpd.conf.1 file
- Renamed /Applications/ColdFusion11/cfusion/bin/cf-connectors.sh  to
cf-connectors.sh.bak
- Restarted the web server, started CF using sudo ./coldfusion/start

Then I was able to run up the CFAdmin and get everything finalised.

happy days.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358909
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Secure application code from host

2014-01-28 Thread Ricardo Russon

This might get you in the right direction.

http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=deploying_5.html


On Tue, Jan 28, 2014 at 9:46 PM, Richard White rich...@re-base.net wrote:


 Hi,

 We have an online web application built using CF. We completely host and
 manage our software and provide users with an annual subscription.

 A large client would like to use the software in a country that has
 limited internet connection. Therefore, we have the possibility of
 providing them with the software to host on their internal networks.

 However, there is obviously a lot of IP within the code itself. I wouldn't
 want anyone to have access to the code to see how it works or allow them to
 tailor it. Is there a way we can package it so that it is not possible for
 them to access the application code?

 Many thanks,
 Richard

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357499
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Scheduled Tasks Oddity

2013-12-18 Thread Ricardo Russon

Are the task names capitalised? I assume they are not, and probably mixed
case.

Re-creating tasks with mixed cases tends to cause them to stop working.

The only fix I have found is to make sure to always use capital names in
CF10.



On Sat, Dec 14, 2013 at 6:06 AM, John M Bliss bliss.j...@gmail.com wrote:


 Cycling the CF Server service appears to have fixed the issue. W. T. F.


 On Fri, Dec 13, 2013 at 3:02 PM, John M Bliss bliss.j...@gmail.com
 wrote:

  Another clue? Tasks in this state have a Resume Scheduled Task button
  instead of a Pause Scheduled Task button.
 
 
  On Fri, Dec 13, 2013 at 2:23 PM, John M Bliss bliss.j...@gmail.com
 wrote:
 
  Running ACF 10,0,12,286680
 
  Pull up CF Admin  Server Settings  Scheduled Tasks
 
  Click Run Scheduled Task button next to task that's known to work
  properly. Page refreshes quickly and CF tells me that it ran the
 task...but
  task did not actually run and I don't see any errors caught anywhere.
 
  Remote into server, paste task's URL into browser, press Enter, and
  task runs fine.
 
  Anyone seen this behavior? Cause? Fix?
 
  --
  John Bliss - http://about.me/jbliss
 
 
 
 
  --
  John Bliss - http://about.me/jbliss
 



 --
 John Bliss - http://about.me/jbliss


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357361
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) How would I write this js line?

2011-12-15 Thread Ricardo Russon

Wouldn't there only be one of each ID?
There should be. So in that case:

var loginContainer =
$('#property_'+propertyID).find('.login_container')

Otherwise try

var loginContainer =
$('.property_container[id='+property_'+propertyID+']').find('.login_container')

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349183
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) How would I write this js line?

2011-12-15 Thread Ricardo Russon

I wouldn't rely too heavily on what CFBuilder thinks of your JavaScript or CSS.
It is quite often wrong.

Either way, your selector is incomplete. its missing the ']'



On Fri, Dec 16, 2011 at 1:40 PM, Rick Faircloth
r...@whitestonemedia.com wrote:

 The only way that CFB 2 doesn't complain about a syntax error
 is if I leave off the +' after propertyID, or

 var loginContainer =
 $('.property_container[id=property_'+propertyID).find('.login_container');

 However, that line doesn't seem to be working.  I say, it doesn't seem
 to be working because I don't get the expected response, from the site, but
 don't get any error anywhere, either.

 I just need to think about this approach a little more, perhaps.

 Rick

 -Original Message-
 From: Matt Quackenbush [mailto:quackfu...@gmail.com]
 Sent: Thursday, December 15, 2011 10:01 PM
 To: cf-talk
 Subject: Re: (ot) How would I write this js line?


 Hard to tell with the jumbled mess that Gmail makes of the code, but it
 appears you're missing a single quote ( ' ).

 var loginContainer =
 $('.property_container[id=property_'+propertyID+').find('.login_container'
 );



 On Thu, Dec 15, 2011 at 8:35 PM, Rick Faircloth
 r...@whitestonemedia.comwrote:


 var loginContainer =


 $('.property_container[id=property_+propertyID+').find('.login_container')
 ;



 The ID of the property_container class div is property_1530.

 I'm trying to find the div with the class property_container
 (.property_container)
 that has the id property_1530, where 1530 is a variable, propertyID.

 I guess I could just simplify the id to be just the propetyID instead
 of appending property_, but why make it easy! :o)

 I've tried every combination I could come up with to make this work,
 but just can't get it to do what I want.  Maybe my whole approach to this
 needs to be reworked, and will, if I can't make this work.

 Clues, anyone?

 Thanks!

 Rick







 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349186
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: getPageContext() in onRequestEnd is empty?

2011-11-10 Thread Ricardo Russon

I have run into a similar issue before.

The buffer will empty itself to the client when it reaches a certain
point (can anyone clarify what that would be?).
The only way I have found around it is to save the content, and only
output on the success condition.

I had this issue when I mistakenly assumed that anything inside a try
would not be output if any error was thrown and we landed in the
catch. This is clearly not the case.

Hope that helps.
Ricardo.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348597
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SQL Server question re table names - still stuck

2009-12-12 Thread Ricardo Russon


 3) When I do a CFQuery, it won't work unless I write the table name as
 canadianofficespacecom.city, instead of just city.



Is the database specified in the DSN?

Sounds as if one isn't specified.


Ricardo.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329122
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Login failed for user 'sa'

2008-07-15 Thread Ricardo Russon
sa is the default MSSQL admin user.CF Should not be using this user account.

Perhaps the Database administrator changed the password because they noticed
a higher than normal connection count for this user?

Either way, you should be creating a new user with only the
required privileges and changing all you CF DSN's to that user.

Ricardo.

On Tue, Jul 15, 2008 at 1:50 AM, Orlini, Robert [EMAIL PROTECTED]
wrote:

 Some of our CF programs are generating this SQL error.

 [Macromedia][SQLServer JDBC Driver][SQLServer]Login failed for user 'sa'

 Any ideas pls?

 RO


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309041
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: many JS libraries are out there, which one for CF8 is the question.

2008-03-19 Thread Ricardo Russon
I recommend Ext, and would suggest avoiding yahoo's.

I havent used that many, but the Ext lib seems complete and configurable.
Yahoos has a few bugs and is much harder to customise beyond what they have.

Thats not to say you cant, but you will need to dig deep into their scripts
for changes.

I have had to fix several bugs with their calendar and slider to use them.
I think the calendar was beta anyway, though.

I am in the middle of implimenting ext in a large project (or atleast
overseeing the implementation of) and so far its all good.
But it was their js desktop demo that won me over.




On Thu, Mar 20, 2008 at 12:49 PM, Ali [EMAIL PROTECTED] wrote:

 Hi: I decided to use a JS library/framework to enhance the UI of my sites.
 I
 googled a lot and found out that there are many of them. I make a short
 list
 here:(thanks to google and wikipedia)

 Google Web Toolkit, AJILE, Backbase, CssQuery, Dojo, Toolkit, mootools,
 Ext,
 JQuery, MochiKit, Moo.fx, OpenLink AJAX Toolkit, Prototype,   Qooxdoo,
 Rialto Toolkit, Rico, script.aculo.us, SmilScript, Spry framework, Yahoo!
 UI
 Library

 These where what I found. I believe there are some more out there that I
 couldn't find. My question is: Which one will help me as a beginner in
 using
 such libraries/frameworks plus has a future plus has good compatibility
 with
 Coldfusion. I know that CF8 has some EXT 1.0 integrations and YUI and I
 heard a lot about Jquery. But I really appreciate it if you write you
 opinions about each of the libraies I listed. What I really need is a
 simple, light and powerful one that gives me better client-side effects
 and
 form options(for example validation).
 Thanks
 Ali


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:301622
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Problem uploading file from form in cfdiv

2008-03-11 Thread Ricardo Russon
how does gmail do it?


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:300926
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: reinit application variables

2008-02-17 Thread Ricardo Russon
Matt,

Is there any performance gain using structKeyExists(url, 'init') over
isdefined(url.init) ?
Is it a best pactice thing or your own preference?
Ric.


On Feb 17, 2008 7:48 AM, Matt Williams [EMAIL PROTECTED] wrote:

 On Feb 16, 2008 3:40 PM, Chad Gray [EMAIL PROTECTED] wrote:
  How do you reset application variables?
 
  I am using application.cfc to set some application variables and cant
 figure out how to reset them so they reload with different data.

 One way is to add this in onRequestStart:
 cfif structKeyExists(url, 'init') AND url.init EQ myInitPass
  cfset onApplicationStart() /
 /cfif

 Then you can reset them by adding init=myInitPass into the url.


 --
 Matt Williams
 It's the question that drives us.

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:299238
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SOT: Holy Grail? Hosting?

2008-02-17 Thread Ricardo Russon
http://www.hostingfuse.com/

An Australian (Perth) Based company. - CF 8, 3 domains default, but you can
add as many as you like.
@ $100(AUD) per year its not bad.

Having said that, their mail server has gone down a few times. - Annoying.
But its still good for the price.
Support is good, i suggest logging a ticket then following it up with a
call.

And while im at it, someone from Adobe isn't doing their job. -
www.webcentral.com.au Australias largest Hosting Provider, is still running
CF 7 (7.0.1 actually)
How about pushing them for the upgrade? Adobe sales team is getting a bit
lax there...


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:299249
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Uploading zero length file

2008-01-24 Thread Ricardo Russon
Short answer is, you can't. You dont have that kind of control over the
browser.

CF should throw an error on a 0k file, and I am guessing that is the reason
for your question.

Just catch the error using cftry cfcatch blocks.
I would suggest that you do as much of your file processing first, before
you start committing data to the DB.

Ric.

On Jan 24, 2008 6:16 AM, Elena Aminova [EMAIL PROTECTED] wrote:

 How do I prevent a user from uploading a zero length (empty) file on
 upload?
 Is there a way to know the file size before the file is actually uploaded
 to the server?
 Any advice, resources or tips are appreciated.

 Thanks.

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297264
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


AJAX Caching

2007-11-29 Thread Ricardo Russon
I am building a little app in CF and using AJAX. (not CFAJAX)

Basically it has 2 types of functions.
The first returns a CF created table to display the data list.
The second returns a CF created list, that I break up in javascript to
populate my form.

I am having an issue that all the data being returned is cached (in the
browser, not server side).
Any ideas on how I can stop it? Is appending a uuid to the query string my
only option?
I am using the no-cache meta tag param but im sure that is just for the
front end html.

How do I also stop the javascript from being cached?
Without turning off caching in the browser.
This part wont be an issue for production, but its annoying in development.


Thanks.
Ric.


~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293990
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Newsletter Application

2007-06-28 Thread Ricardo Russon
I am looking for a commercial coldfusion newsletter application. Ease of use
and ease of integration are top priority.

It only needs basic features, multiple lists, template emails and opt-out
via web link (to a custom page)

Any suggestions would be great.

Thanks.


~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:282465
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Newsletter Application

2007-06-28 Thread Ricardo Russon
Thanks david,
But i am not sure that the client would go for having another company having
any type of control over their mailing list.

I really need to find something that i can install on their servers.



On 6/29/07, David Livingston [EMAIL PROTECTED] wrote:

 I don't know of a commercial CF app. I've certainly built a few of
 these in my career.
 What I use currently for clients is http://www.mailbuild.com/ . It
 takes all of the hassle out of programming and sending email
 newsletters. Also it has an api that lets you programatically manage
 subscribers.

 Dave


 On Jun 28, 2007, at 9:58 AM, Ricardo Russon wrote:

  I am looking for a commercial coldfusion newsletter application.
  Ease of use
  and ease of integration are top priority.
 
  It only needs basic features, multiple lists, template emails and
  opt-out
  via web link (to a custom page)
 
  Any suggestions would be great.
 
  Thanks.
 
 
 

 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:282475
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Newsletter Application

2007-06-28 Thread Ricardo Russon
Philip,
I couldn't find anything there, but digging around the site did lead me to
: http://emailcampaign.riaforge.org/ looks like exactly what i want, but all
the links are going to 404's

I will keep looking, but if anyone has any info on the project please let me
know.

Thanks.


~|
CF 8 – Scorpio beta now available, 
easily build great internet experiences – Try it now on Labs
http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:282478
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Newsletter Application

2007-06-28 Thread Ricardo Russon
oops, forget that, just saw 4/23/2007 - Temporarily down for some copy
edits. :)


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:282479
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Newsletter Application

2007-06-28 Thread Ricardo Russon
Thanks chris,
I will look into this one more.


~|
ColdFusion 8 beta – Build next generation applications today.
Free beta download on Labs
http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:282482
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Banner Management Software

2007-05-02 Thread Ricardo Russon
Can anyone recommend banner management software.

At this point I am looking for any recommendations, Free or Commercial and
in any language.

Thanks


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276876
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Re: how can query input to DB 4 times in 1 second

2006-09-27 Thread Ricardo Russon
Gerald,

You can also disable the submit button once it has been pressed to
prevent the form from being submitted again that way.

Of course there is always more than one way to submit the form. But
that should help. Maybe instead of submitting the form directly, use a
JavaScript preSubmit() function with a check to see if a submit is in
progress and prevent another one from occurring again.

Ricardo.


On 9/28/06, Gerald Weir [EMAIL PROTECTED] wrote:
 Hi Jon,
 I'll give that a try.  I was astounded just now that when I went to our site 
 and tried to sign up for the newsletter I tried to just keep clicking on the 
 SUBMIT button and low-and-behold I see my email address in the database 6 
 times in a row.  I thought that was a submit button was pushed that was it!  
 Guess not.

 I'll try this cflock approach.

 Jerry

 I would suggest wrapping from the before the beginning of the e-mail
 check query to the end of the insert query.   You simply want to lock
 that block from being executed by another user.  Then your cfmail
 transaction, which may take a bit longer, isn't under lock if you
 have concurrent users.
 
 cftransaction allows you to rollback in the event of  a failure you
 designate.   It doesn't, however lock anything.
 
 Jon
 
 On Sep 27, 2006, at 12:56 PM, Gerald Weir wrote:
 
 

 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:254567
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFIdea: how to implement

2006-08-22 Thread Ricardo Russon
What about if someone reads an artice, and then navigates to a
different site? If they are not hitting another page of yours, then
the points tracking wont work.

You might want to concider and AJAX solution for this.



On 8/22/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 I have a CFidea and I wanted to seek advice on the best way to implement it.
 I'm concerned that this idea will be taxing on my shared web hosting server.

 After buildinig sites for employors and contracts, I've finally built a site 
 for myself.
 My site is a news and downloadable magazine (which I sell for $9.95/yr)

 THE IDEA
 On my site(s), I posts related stories from within my industry. I want to 
 reward
 my readers and build loyalty. I want to reward my readers for each story they
 read with X point(s).  As long as they stay on the page for more than 10-15 
 (?)
 seconds they will be rewarded. I want to track this to avoid users from just
 clicking through stories to get points.  Once they accumulate x number of 
 points,
 they will receive one of the four issues for free. If they collect enough 
 points,
 they can get an entire year for free and earn additional issues beyond their 
 first
 year or give their points to friends or co-workers. When visitors reads 
 stories
 from my site, my google ads are displayed which makes me money. I also want
 to convey to potential advertisers that our we reward our reader base.  No 
 other
 news site within this industry does this.

 THE CODE
 The reader signs up by providing only their e-mail address and confirm their 
 e-mail address
 through an automated reply from my site with a confirmation link they must 
 click on.
 As an option if they want to earn reward points, I ask them to sign in with 
 just their e-mail
 address to initiate and track their points, then get the current time with 
 #CreateODBCDateTime(now())# and store it as a session variable. When they 
 click and go to another page on the site, even if it's
 not a story, capture the #CreateODBCDateTime(now())# again and compare the
 times and update their profile with X point(s) if the time difference meets 
 my x seconds
 per page criteria. If someone just rapidly clicks from story to story to 
 accumalate points,
 the points will not be counted. If they like the site and decide to become a 
 loyal reader,
 then they will receive these additonal benefits and be rewarded for their 
 loyalty.

 Thoughts on the coding approach?

 Thanks in advance.

 D-

 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250558
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Passive FTP and Sandbox

2006-06-19 Thread Ricardo Russon
I received this error :

Security: The requested template has been denied access to localhost:1024-.

The following is the internal exception message: access denied
(java.net.SocketPermission localhost:1024- listen,resolve)

And I came accross this tech note :

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19116

Which said :

Enable passive mode within every use of the cfftp tag to ensure
ColdFusion is creating the connection to the FTP server for the data.

The host that I am FTP'ing to does not allow passive connections. Is
there anyway around this?

TIA
Ricardo.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244210
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Hosting.

2006-04-17 Thread Ricardo Russon
Thanks mike,

They don't offer coldfusion, that is why i asked the question. I was only
wondering if anyone had used them before because at that rate, I could put
most of my html and flash sites on their servers and save myself some money.

I will look at your site now.

:)


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237895
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Hosting.

2006-04-16 Thread Ricardo Russon
I'm sure this type of question comes up quite often. But does anyone know of
any hosts around that have CF plans anywhere near what DreamHost (
www.dreamhost.com) offer?
I have been searching high and low for the past two days but their plans
seem pretty unbelievable. anyone had any experience with them?

TIA.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237886
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Fireworks template flexibility

2006-03-28 Thread Ricardo Russon
Casey,

Am i reading you right : you are exporting the same png each time you want a
new element/layer? You can export each layer seperately. That should save
you some time..

But i could have miss read... its only been 1/4 cup of coffe since i woke up
:)



On 3/29/06, Casey Dougall [EMAIL PROTECTED] wrote:

 Wouldn't it be great if fireworks and photoshop created css for the
 layouts...

 Chopping up psd's all the time myself I haven't got a really good answer
 for
 you except to get the psd or png, if he's using fireworks and chop it
 yourself. I normally cop templates multiple times to get specific elements
 out of the template without all of the extra table cells I end up deleting
 anyway. To make this even worse I then take the new exported html, deleted
 all the stuff I don't want, make table cell background images out of those
 pieces which should flow vertical or horizontal 100%, view in firefox,
 re-save it again in another folder just so I can get the images I need for
 that element. I repeat this process again and again till I have everything
 from the original design and then start working it into my css.

 Normally I'm talking about 3 or 4 horizontal sessions like this where I'm
 saving pieces like headers, main body areas and footers. Then another
 bunch
 of sessions where your cutting more with the vertical rulers and snagging
 those items like the right, center, left columns of a page.

 I can't say it's a fun process but I end up with about 1/3 third of the
 images of the original template and everything looks like it should. i
 then
 use those elements where I need them and move on to actually coding the
 site...

 Good luck man, find a better way and i'm down~

 Find a way to chop gradients efficiently and your my hero!



 --
 Casey Dougall
 Web Applications Developer
 Ph: 518 743-9424  Fax: 743-0337
 [EMAIL PROTECTED]

 Mannix Marketing Inc. 10 East Washington St. Suite 1, Glens Falls, New
 York

 Marketing to New York State Destinations?
 We offer quality Travel Industry Directories, Including www.Albany.com,
 www.LakeGeorge.com  www.Saratoga.com


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236365
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfm vs. php?

2006-03-28 Thread Ricardo Russon
For cheap reliable CF hosting you can't beat www.hostingfuse.com at
$100AUD/year :) Get in now while the exchange rates are good and you will be
paying about $70USD

On 3/29/06, Eric Roberts [EMAIL PROTECTED] wrote:

 I believe uplinkearth.com offers Linux hosting for CF...but I am not sure
 as
 I prefer windows ;-)  I pay $105 quarterly for my hosting.  That with
 MySQL,
 email, a pretty good control panel (don't remember which one offhand).
 Though I do use PHPAdmin to manage MySQL...it just easier since I just
 have
 to unload the package on the server...and I am familiar with it.  I have
 been with uplinkearth for about 3 years now and I love them...great
 service,
 rarely ever goes down.  If I have a problem, their customer support is
 pretty quick in dealing with the issue.

 Eric

 -Original Message-
 From: Munson, Jacob [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, 28 March 2006 09:46
 To: CF-Talk
 Subject: RE: cfm vs. php?

 I'm a Linux snob when it comes to hosting.  Do those companies offer
 Linux/CF?

  -Original Message-
  From: Andy Matthews
  Sent: Tuesday, March 28, 2006 8:40 AM
 
  While you're talking about hosting Jacob, I'd suggest either
  Gearhost.com (CF hosting as low as $8.95, with mySQL included for as
  low as $16.95). I used them for almost 2 years and they were great.
  Their Control panel is quite good as well.
 
  Alternately, my company, ICGLink, offers CF hosting for as low as $10
  per
  month:
  http://www.icglink.net/features.html

 This transmission may contain information that is privileged, confidential
 and/or exempt from disclosure under applicable law. If you are not the
 intended recipient, you are hereby notified that any disclosure, copying,
 distribution, or use of the information contained herein (including any
 reliance thereon) is STRICTLY PROHIBITED. If you received this
 transmission
 in error, please immediately contact the sender and destroy the material
 in
 its entirety, whether in electronic or hard copy format. Thank you. A1.





 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236377
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Macromedia Using CFPoP?

2005-06-21 Thread Ricardo Russon
Jon,

We actually have a CFX_IMAP4 license but made the switch to cfpop for
that reason.

Sorry Paul. but like i said before, let me know if you port your tags to java.


Ric.



On 6/22/05, Jon Austin [EMAIL PROTECTED] wrote:
 On 6/21/05, Paul Vernon [EMAIL PROTECTED] wrote:
  Install the jar file that Paul H mentioned, get MM to adopt that same jar
  file as part of CF or, install a third party CFX tag like mine (CFX_POP3).
 
 I would use CFX_POP3 in a flash, except our app is designed to be
 platform independant and run on either Windows or Unix environments.
 
 I know the bug is because of Sun, but I was hoping MM could add
 support for it somehow. We process over 1000 emails a day and get 1-5
 UTF-7 encoded emails.
 
 We would all like to stick to RFC, but the fact is there is so many
 broken mailers/MTA's out there, we can't just send a message to
 /dev/null because of the encoding type.
 
 Regards,
 
 Jon
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210180
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Macromedia Using CFPoP?

2005-06-20 Thread Ricardo Russon
I take it that macromedia are using CFPoP on their Bug Report /
Feature request page.

It keeps sending me back emails saying : 

Unable to retrieve message content: java.io.UnsupportedEncodingException:
unicode-1-1-utf-7

You guys might want to change your form...

OR...

fix the bug in CFPoP. :D

Ricardo.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210054
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Appending variable names to CFSET

2005-06-13 Thread Ricardo Russon
Mark, 

Is this what you are looking for

cfset link#linkIndex# = linkIndex ?

HTH

Ricardo



On 6/14/05, Mark Henderson [EMAIL PROTECTED] wrote:
 Quick question. Is it possible to take a predefined variable and add
 that as part of another variable name inside cfset.
 
 Here is my example.
 
 cfquery name = qryLinkMaster datasource = #request.dsn#
   SELECTlink_ID,
 name,
 url,
 comment,
 category,
 active
   FROM  links
   WHERE active = Yes
 /cfquery
 
 
 And using QoQ
 
 cfset linkItems = Drivers,Security,Search,Partner,Admin /
 cfloop index=linkIndex list=linkItems
   cfquery dbtype=query name=qry#linkIndex#Links
 SELECT  *
 FROMqryLinkMaster
 WHERE   category = '#lcase(linkIndex)#'
   /cfquery
   !--- here is my problem 
   cfset link(insert linkIndex value to variable name here) = linkIndex
   /cfloop
 
 But before the loop ends I want to be able to name a variable WITH the
 relevant linkIndex in its name (to make it unique) so that in the above
 example I would have
 linkDrivers,linkSecurity,linkSearch etc  defined as variables. It wont
 let me add a predefined variable to a one new one and I keep getting
 syntax errors.
 
 Any ideas??
 
 TIA
 Mark
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209372
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CRM products

2005-06-06 Thread Ricardo Russon
Russ,

We offer a ColdFusion CRM. Although it is not OpenSource, we may be able to 
work on a co-development project with you.

Feel free to contact me off-list.

Ricardo.
[EMAIL PROTECTED]

On 6/7/05, Russ [EMAIL PROTECTED] wrote:
 We're looking for a CRM package to integrate with our current offering.  Can
 anyone recommend any (preferably open-source, preferably CF) packages that
 are out there?
 
 
 
 Russ
 
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208748
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Weird Error Message.

2005-05-26 Thread Ricardo Russon
I left my Dev box running overning.

When i came back into work I saw this error at the command prompt.

27/05 07:00:44 error Event Handler Exception.
[1]java.lang.OutOfMemoryError
[0]coldfusion.runtime.EventHandlerException: Event Handler Exception.
at 
coldfusion.runtime.AppEventInvoker.onRequest(AppEventInvoker.java:118)

Now. No one was accessing the box at 7am. I only arrived at 8:30AM.

By the looks of things it was the 'Client Storage Purge'

But what could have caused it to error.

It was running fine every 1hour and 7minutes (as per the admin
settings) since i left work yesterday.

Any ideas. Thanks.

Ricardo

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207827
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Coldfusion Uses Perl for QoQ ?

2004-10-28 Thread Ricardo Russon
Problem seems to be solved.

After reading through the docs i can accross
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/using_35.htm

Handling null values

That did the trick.

Just to note, that withoug using the fix AND NOT NULL that is
mentioned in the docs, if i changed the LIKE %val% to = val it ran
without problem.

Is this a bug? There were no null values anywhere.

Thanks again for your help
Ricardo.

On Thu, 28 Oct 2004 15:48:50 +1000, Ricardo Russon
[EMAIL PROTECTED] wrote:
 I am beginning to think that there is a limit in the size of the query
 that can be used in a QoQ? can anyone confirm this?
 
 The server dosen't struggle at all processing it... i'm totally lost
 on this one.
 
 The query dosen't contain any null values and the sql can be
 processed, but I am still getting the same error.
 
 thanks
 Ricardo.
 
 
 
 On Thu, 28 Oct 2004 11:49:59 +1000, Ricardo Russon
 [EMAIL PROTECTED] wrote:
  If i dump out the SQL i get the following:
 
  SELECT *
  FROM clientlistTable
  WHERE field2 LIKE %S%
  OR field3 LIKE %S%
  OR field16 LIKE %S%
  ORDER BY field3
  ASC
 
  Because of the way that cf handles data types in QoQ's i have
  converted all values to a string. This is a bitch of a workaround, but
  it does work. Because of this no value in the
  recordset has a null value, and they all have to be croped before use.
 
  I have narrowed it down to field16, but i can not see how that data is
  any different to any other in the recordset.
 
  I will keep playing with it.
  thanks for the help.
 
  ricardo..
 


~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=37

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182788
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Coldfusion Uses Perl for QoQ ?

2004-10-27 Thread Ricardo Russon
If i dump out the SQL i get the following:

SELECT * 
FROM clientlistTable 
WHERE field2 LIKE %S% 
OR field3 LIKE %S% 
OR field16 LIKE %S% 
ORDER BY field3 
ASC

Because of the way that cf handles data types in QoQ's i have
converted all values to a string. This is a bitch of a workaround, but
it does work. Because of this no value in the
recordset has a null value, and they all have to be croped before use.

I have narrowed it down to field16, but i can not see how that data is
any different to any other in the recordset.

I will keep playing with it. 
thanks for the help.

ricardo..

~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=38

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182781
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Coldfusion Uses Perl for QoQ ?

2004-10-27 Thread Ricardo Russon
I am beginning to think that there is a limit in the size of the query
that can be used in a QoQ? can anyone confirm this?

The server dosen't struggle at all processing it... i'm totally lost
on this one.

The query dosen't contain any null values and the sql can be
processed, but I am still getting the same error.

thanks
Ricardo.

On Thu, 28 Oct 2004 11:49:59 +1000, Ricardo Russon
[EMAIL PROTECTED] wrote:
 If i dump out the SQL i get the following:
 
 SELECT *
 FROM clientlistTable
 WHERE field2 LIKE %S%
 OR field3 LIKE %S%
 OR field16 LIKE %S%
 ORDER BY field3
 ASC
 
 Because of the way that cf handles data types in QoQ's i have
 converted all values to a string. This is a bitch of a workaround, but
 it does work. Because of this no value in the
 recordset has a null value, and they all have to be croped before use.
 
 I have narrowed it down to field16, but i can not see how that data is
 any different to any other in the recordset.
 
 I will keep playing with it.
 thanks for the help.
 
 ricardo..


~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=36

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182787
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Coldfusion Uses Perl for QoQ ?

2004-10-26 Thread Ricardo Russon
I am getting the following error, I can not find out what is causing
it. I can narrow down
the code. But the thing is that the SQL that is causing it is only
throwing the error
in this instance. I can dump out the sql fine, and i can run it
against another recordset.

Which is leaving me to think that it is a bug of some kind with QoQ's. 

 I know QoQ's have severe limitations, but I have learned to work
around most of them.
but this one has me stumped.

after some googling i found that this is a known bug with
org.apache.oro.text.regex.Perl5Matcher.matches but from what was in
the thread it was
not fixed because they couldn't produce a test case? Can anyone confirm this?

any ideas?
thanks,
ricardo.


The system has attempted to use an undefined value, which usually
indicates a programming error, either in your code or some system
code.

Null Pointers are another name for undefined values.
 
The error occurred in
C:\CFusionMX\wwwroot\sheadoffice\crm\crmPluginSelect.cfm: line 113
Called from C:\CFusionMX\wwwroot\sheadoffice\crm\crmPluginSelect.cfm: line 1
Called from C:\CFusionMX\wwwroot\sheadoffice\index.cfm: line 150
Called from C:\CFusionMX\wwwroot\sheadoffice\index.cfm: line 1

111 :   cfelse
112 :ORDER BY #url.column# #url.dir#
113 :   /cfif
114 :   /cfquery
115 :   

Please try the following:

* Check the ColdFusion documentation to verify that you are using
the correct syntax.
* Search the Knowledge Base to find a solution to your problem.

Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.3)
Gecko/20040921 Firefox/0.10.1
Remote Address  127.0.0.1
Referrer
http://localhost:8500/sheadoffice/index.cfm?cmd=crmxs=crmPluginSelectstart=1dir=ASCfieldList=field0,field2,field3,field16column=field3returnTo=tovalueList=field16
Date/Time   27-Oct-04 02:21 PM
Stack Trace
at 
cfcrmPluginSelect2ecfm744667458._factor1(C:\CFusionMX\wwwroot\sheadoffice\crm\crmPluginSelect.cfm:113)
at 
cfcrmPluginSelect2ecfm744667458.runPage(C:\CFusionMX\wwwroot\sheadoffice\crm\crmPluginSelect.cfm:1)
at cfindex2ecfm1423500030._factor14(C:\CFusionMX\wwwroot\sheadoffice\index.cfm:150)
at cfindex2ecfm1423500030.runPage(C:\CFusionMX\wwwroot\sheadoffice\index.cfm:1)

java.lang.NullPointerException
at org.apache.oro.text.regex.Perl5Matcher.matches(Unknown Source)
at coldfusion.sql.imq.rttExprCondLike.evaluate(rttExprCond.java:540)
at coldfusion.sql.imq.rttExprCondTest.evaluate(rttExprCond.java:273)
at coldfusion.sql.imq.rttExprCondOr.evaluate(rttExprCond.java:194)
at coldfusion.sql.imq.rttExprCondOr.evaluate(rttExprCond.java:194)
at coldfusion.sql.imq.rttExprCondOr.evaluate(rttExprCond.java:194)
at 
coldfusion.sql.imq.rttSelectExprSpec.evaluateWhere(rttSelectExprSpec.java:245)
at coldfusion.sql.imq.rttSelectExprSpec.evaluate(rttSelectExprSpec.java:189)
at coldfusion.sql.imq.rttSelectStmt.evaluate(rttSelectStmt.java:61)
at coldfusion.sql.imq.jdbcStatement.fetchResult(jdbcStatement.java:539)
at coldfusion.sql.imq.jdbcStatement.execute(jdbcStatement.java:131)
at 
coldfusion.sql.imq.jdbcPreparedStatement.execute(jdbcPreparedStatement.java:94)
at coldfusion.sql.Executive.executeQuery(Executive.java:979)
at coldfusion.sql.SqlImpl.execute(SqlImpl.java:233)
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:447)
at 
cfcrmPluginSelect2ecfm744667458._factor1(C:\CFusionMX\wwwroot\sheadoffice\crm\crmPluginSelect.cfm:113)
at 
cfcrmPluginSelect2ecfm744667458.runPage(C:\CFusionMX\wwwroot\sheadoffice\crm\crmPluginSelect.cfm:1)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
at 
cfindex2ecfm1423500030._factor14(C:\CFusionMX\wwwroot\sheadoffice\index.cfm:150)
at cfindex2ecfm1423500030.runPage(C:\CFusionMX\wwwroot\sheadoffice\index.cfm:1)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:107)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:24)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
at 
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at 

Re: late night query ?

2004-10-15 Thread Ricardo Russon
dave.

What database are you using?

try..

SELECT usercards.cardID, tblcards.cardID
WHERE usercards.cardID = cfqueryparam value=#guserID#
cfsqltype=cf_sql_integer
AND usercards.cardID = tblcards.cardID

Ricardo.

On Fri, 15 Oct 2004 02:09:15 -0400, dave [EMAIL PROTECTED] wrote:
 i have a query thats uses a userid to get items out of a db that have a
 matching userID
and i need to run another query thats uses those numbers to get
 descriptions outta another table

the basic query is this

cfquery name=qCards datasource=#dsn# username=#un# password=#pw#
SELECT cardID
FROM userscards 
WHERE usersID = cfqueryparam value=#guserID# cfsqltype=cf_sql_integer
/cfquery

the other tables is called tblcards and i need to match the list from the
 1st query to get all the descriptions from this one from a field called
 CardID

brain is mush, any help?

tia

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




query size error

2004-10-10 Thread Ricardo Russon
I am getting this error

Error during query: Unexpected Exception:
java.lang.IllegalArgumentException message given: Packet is larger
than max_allowed_packet from server configuration of 1048576 bytes

Is there any way to change the max packet size? I can't seem to find
anyting in the admin.

I don't have the option of changing what is being sent, as it is a
query returned by cfpop.

Thanks
Ricardo
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




cf pop

2004-10-06 Thread Ricardo Russon
is there any way to make cfpop return only a list of uids?

that would speed things up a great deal for me.

thanks
Ricardo
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




6.1 updater

2004-10-05 Thread Ricardo Russon
Is the 6.1 updater buggy?

It is returning some weird errors.

anyone know what this means?

 Invalid branch target position offset for goto[167](3):-1: -1: Label

its returning the cfinclude as the break, but its 
cfif IsDefined(form.smtpUsername)value=#smtpUsername#/cfif

that is causing the error. if i remove it it works. i have the same
line of code that passes fine beforehand in the same page.

It cached my Application.cfm, but only for one particular pice of
code. It was a cfobject, that should have thrown a completely
different error. Instead it was showing me my application page, and
stopping on code that was not only valid, but was removed the day
before. Even clearing the cache and deleting the class files did not
help.

Thirdly...

cfdump var=#url.msgID#
shows the msgID, its just a simple string

cfoutput#url.msgID#/cfoutput
shows noting... not even an error. 

Is this normal?

Thanks
Ricardo.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




cf_imap

2004-10-01 Thread Ricardo Russon
Is there any way of makeing cf_imap from DRK 6 return a uid for a message?

I know that IMAP supports uid's.

TIA
Ricardo
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Struct Insert

2004-09-14 Thread Ricardo Russon
this is weird, on my dev box this code works

cfset StructInsert(form, #tmpFieldList.id#, 
tmpFieldList.defaultvalue, false)

but on the production box, it tells me :

Cannot insert item with key 1. This key already exists. 

This happens from time to time, i don't know why, but when it does
i usually put a try catch around it.

cftry
cfset StructFind(form, #tmpFieldList.id#)
 cfcatch type=any
cfset StructInsert(form, #tmpFieldList.id#, 
tmpFieldList.defaultvalue, false)
/cfcatch
 /cftry

but it is still giving me the same error. wtf??

I know that cf has troubles with variable names that start with numbers. 
but up
until a few weeks ago it didn't seem to care to much.

TIA
Ricardo.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Struct Insert

2004-09-14 Thread Ricardo Russon
Ok, now i have the try catch working again. dunno what
happened, but i am using the exact same code.

but that is a very slow process. why can't i use the structInsert ?

Thanks
Ricardo.

Ricardo Russon wrote:

 this is weird, on my dev box this code works

 cfset StructInsert(form, #tmpFieldList.id#,
 tmpFieldList.defaultvalue, false)

 but on the production box, it tells me :

 Cannot insert item with key 1. This key already exists. 

 This happens from time to time, i don't know why, but when it does
 i usually put a try catch around it.

 cftry
cfset StructFind(form, #tmpFieldList.id#)
cfcatch type=any
cfset StructInsert(form, #tmpFieldList.id#,
 tmpFieldList.defaultvalue, false)
/cfcatch
 /cftry

 but it is still giving me the same error. wtf??

 I know that cf has troubles with variable names that start with numbers.
 but up
 until a few weeks ago it didn't seem to care to much.

 TIA
 Ricardo.

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Fw: any java cf'ers online?

2004-09-14 Thread Ricardo Russon
I am currently writing a mail client using javamail.
??
Ricardo.

Lori wrote:

 Anyone out there right now that uses java with cf?

 -Lori

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Struct Insert

2004-09-14 Thread Ricardo Russon
Isn't that what the Allow Overwrite is for?
To overwrite the key if it exists?

Ricardo.

Douglas Knudsen wrote:

 keys must be unique.Does cfdump var=#tmpFieldList# / show a
 unique list of ids?

 Doug

 - Original Message -
 From: Ricardo Russon [EMAIL PROTECTED]
 Date: Wed, 15 Sep 2004 09:49:55 +1000
 Subject: Re: Struct Insert
 To: CF-Talk [EMAIL PROTECTED]

 Ok, now i have the try catch working again. dunno what
 happened, but i am using the exact same code.

 but that is a very slow process. why can't i use the structInsert ?

 Thanks
 Ricardo.

 Ricardo Russon wrote:

  this is weird, on my dev box this code works
 
  cfset StructInsert(form, #tmpFieldList.id#,
  tmpFieldList.defaultvalue, false)
 
  but on the production box, it tells me :
 
  Cannot insert item with key 1. This key already exists. 
 
  This happens from time to time, i don't know why, but when it does
  i usually put a try catch around it.
 
  cftry
 cfset StructFind(form, #tmpFieldList.id#)
 cfcatch type=any
 cfset StructInsert(form, #tmpFieldList.id#,
  tmpFieldList.defaultvalue, false)
 /cfcatch
  /cftry
 
  but it is still giving me the same error. wtf??
 
  I know that cf has troubles with variable names that start with numbers.
  but up
  until a few weeks ago it didn't seem to care to much.
 
  TIA
  Ricardo.
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: .net remoting

2004-09-13 Thread Ricardo Russon
Alvin,

Can you call the cfstart bat file to start cf?
It calls

@Echo off
setlocal
cd ..\runtime\bin
jrun -start default
endlocal

so it looks like you you need to call jrun not the java.

HTH
Ricardo

Alvin Hom wrote:

 I am connecting to a third party SDK that uses .net remoting in order to
 connect to another application server(Ellie Mae Encompass). I can 
 connect to
 this SDK using COM but since the SDK uses .NET Remoting, there needs to be
 an XML formatted file [app].exe.config where [app] is the name of the
 executable.

 Can someone tell me what the exe is that acutually executes CF? I've tried
 the ColdfusionMX\runtime\jre\bin\java.exe but I don't think it is correct.

 Alvin Hom
 Web Services
 Goloan Mortgage Banking
 6420 Wilshire Blvd, 19th Floor
 Los Angeles, CA 90048
 Direct: (323) 330-1348
 (800) 222-0668 ext 229
 mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Splitting a Query

2004-09-13 Thread Ricardo Russon
Let me start by saying that i am having a very slow day.

I have a query:

SELECT crmFields.groupof, crmFields.id
FROM crmFields
WHERE crmFields.position = 99
AND crmFields.id
IN(SELECT crm.fieldid FROM crm
WHERE crm.clientid = 1248
AND crm.value != )

It runs very very very slow, and chunks up the server a lot.
There are thousands of fields for it to cross reference. I am 
thinking that splitting it up, and taking the load off the db 
would be a good idea.

Can anyone suggest a way to do this?

thanks
Ricardo.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




code debugging

2004-09-08 Thread Ricardo Russon
are there any tools out there that will let me step
through my coldfusion code and set break points?
like you would with java or c++ ?

TIA,
Ricardo.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: code debugging

2004-09-08 Thread Ricardo Russon
It normally is,

But i am finding as my application grows, its harder to find out where
the bugs are.

Are there any tools that i can use to find stats on my app, such as lines
of code, average page length, and that?

Thanks
Ricardo.

Dave Watts wrote:

  are there any tools out there that will let me step through
  my coldfusion code and set break points? like you would with
  java or c++ ?

 If you're using CF 4 or 5, you can do that with CF Studio. If you're using
 CFMX, that functionality has been removed. Fortunately, this isn't usually
 much of an obstacle, as CFML code tends to be very easy to debug 
 compared to
 Java or C++.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 phone: 202-797-5496
 fax: 202-797-5444

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




OT : web stats

2004-09-07 Thread Ricardo Russon
does anyone know of any good, free
web stats apps that i can run on my
windows 2003 / CF MX server?

Or if there is any good webstat
software that comes with either of the 2?

TIA,
Ricardo.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Displaying a dynamic map - how?

2004-09-05 Thread Ricardo Russon
You could still do it in flash and cf using the loadVars() function.

?? Ricardo

Mike Kear wrote:

 I have a prospective client - a real estate developer who has a
 subdivision we're proposing a site for. He wants a map of his
 subdivision and wants to have the colours of the various blocks change
 depending on their sale status showing in a query when the page is
 called. (i.e. sold, available,on holding deposit etc).

 What's the best way to be changing the colours of the blocks, given
 that they're not rectangular and all different sizes?

 Before you yell FLASH REMOTING!it's CF5.0 only, not CFMX so flash
 remoting isn't an option.

 IS DHTML a way to go here, with layers changing colour based on the
 value of the 'status' field?or perhaps CSS?

 How would you do it in flash without using remoting?

 Any ideas?

 -- 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 AFP Webworks
 http://afpwebworks.com
 .com,.net,.org domains from AUD$20/Year

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




IMAP

2004-09-02 Thread Ricardo Russon
I am writing a custom IMAP client in CF.

Things seem to be working fine on my windows machine, but once i move my 
code and class files to the Red Hat server it fails to connect.

I have tested that all the objects are being created properly but it 
fails on connection.

Also..

When i start my CF server on my windows box, i can view all the messages 
that i print out from my java in the Command Prompt.

Is there any way to see these same messages on my Red Hat server, after 
the server has already started?

TIA

Ricardo.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]