Re: Ajax Post Value on CF Side

2015-04-07 Thread Dean Lawrence
Once you convert it into a CF structure using deserializeJSON, you can then use cfdump to see how CF interprets it. On Tue, Apr 7, 2015 at 12:31 PM Robert Harrison rharri...@aimg.com wrote: Let me make this simpler. The value being send via an ajax post is: Object {name: rid, value: 1}

Re: Ajax Post Value on CF Side

2015-04-07 Thread Dean Lawrence
You can very easily convert it to a structure using the deserializeJSON function in CF. Here is a link with some examples of working with JSON in ColdFusion. http://www.learncfinaweek.com/week1/JSON/ On Tue, Apr 7, 2015 at 11:55 AM Robert Harrison rharri...@aimg.com wrote: I'm sending an Ajax

Re: ACF10 mail and Windows Server 2012

2015-04-07 Thread Dean Lawrence
Have you looked at the raw source of the email to make sure that CF is not placing the text in an html mailpart? On Tue, Apr 7, 2015 at 1:21 PM John M Bliss bliss.j...@gmail.com wrote: Yes. The code didn't change. Just moved from 32 bit Windows Server 2003 to 64 bit Windows Server 2012 and

Re: Handling invalid recipient in mailing list

2015-04-03 Thread Dean Lawrence
You can also utilize a tool like BoogieBounce by Boogie Tools ( http://www.boogietools.com/). I've used this in the past and it works great. It allows you to determine the cause of a rejected email (hard bounce, soft bounce, server unreachable, etc.) and then programmatically deal with it as

Re: considering two options for changing hosting

2015-03-31 Thread Dean Lawrence
Mark, I made the switch to Hostek (https://cp.hostek.com/aff.php?aff=931) a few years back and I have been very happy with the decision. I just went through a server upgrade over the weekend in which we ran into an issue with a couple of old sites that are still running on MS Access. Their

Re: considering two options for changing hosting

2015-03-31 Thread Dean Lawrence
Actually, my VPS is 64bit Windows 2008 r2. I manage it myself, so I know. Hostek has some workaround to be able to run these Access DSNs. It's all automated, so I don't pay it much mind. Also, even without Windows support, there is no reason that you could not use a Java driver to connect to the

Re: Should I migrate away from ColdSpring

2015-03-20 Thread Dean Lawrence
, 2015 at 8:37 AM, Dean Lawrence dean...@gmail.com wrote: Thanks, Nolan, I appreciate your insights. I'm pretty much on the same page as you, but I guess I am mainly concerned that with the ColdSpring site apparently gone, that I can't even get to the documentation to try to either

Re: Should I migrate away from ColdSpring

2015-03-20 Thread Dean Lawrence
, 2015 at 8:31 AM, Dean Lawrence dean...@gmail.com wrote: I've been using ColdSpring for a good number of years and it is pretty much a part of almost every site that I have developed. When trying to access http://coldspringframework.org/ to look at the docs, I get a service unavailable error

Should I migrate away from ColdSpring

2015-03-19 Thread Dean Lawrence
I've been using ColdSpring for a good number of years and it is pretty much a part of almost every site that I have developed. When trying to access http://coldspringframework.org/ to look at the docs, I get a service unavailable error. It was like this when I tried to access it about a month ago

Re: trying to shorten long string

2015-03-09 Thread Dean Lawrence
Another option would be to place the entire description in a div and then truncate it via css. http://www.w3schools.com/cssref/css3_pr_text-overflow.asp On Sat, Mar 7, 2015 at 1:31 AM, Mark Spence markpence...@gmail.com wrote: I have a long product description I am trying to truncate. I

Re: trying to shorten long string

2015-03-09 Thread Dean Lawrence
as intended. Mike On Mon, Mar 9, 2015 at 1:04 PM, Dean Lawrence dean...@gmail.com wrote: Another option would be to place the entire description in a div and then truncate it via css. http://www.w3schools.com/cssref/css3_pr_text-overflow.asp -- [image: profile picture] *Dean

Re: Passing arguments into base class

2015-02-06 Thread Dean Lawrence
the autowire option is on, at least for this object if not for all of your beans. It's strange that it is not working, maybe this would be a question for the ColdSpring list. Nathan Strutz -- [image: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381

Re: Passing arguments into base class

2015-02-06 Thread Dean Lawrence
Byron, This is pretty much what I was thinking that I had to do, but was hoping to not have to explicitly call the super.init() method for every class that extends the base class. I'm just not sure if what I am trying to do is even possible. On Fri, Feb 6, 2015 at 2:23 PM, Byron Mann

Re: Passing arguments into base class

2015-02-06 Thread Dean Lawrence
: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email:* d...@idatatech.com Programming | Database | Consulting | Training ~| Order the Adobe Coldfusion

Re: Passing arguments into base class

2015-02-06 Thread Dean Lawrence
of my head. An ioc container/factory will keep it all internally for you, wire your bean up, then hand you what you asked for, all ready to go. The only other solution is to send in your utility object each time you create something that needs it. -- [image: profile picture] *Dean

Passing arguments into base class

2015-02-06 Thread Dean Lawrence
] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email:* d...@idatatech.com Programming | Database | Consulting | Training ~| Order the Adobe Coldfusion Anthology now

Re: Passing arguments into base class

2015-02-06 Thread Dean Lawrence
to a circular reference and probably kill the app. component name='baseClass' { variables.utilClass = new UtilClass(); } -- [image: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email:* d...@idatatech.com

Re: Cannot access session variables in a cfc

2015-01-28 Thread Dean Lawrence
Byron, the ApplicationProxy.cfc needs to be in the root directory along with the main Application.cfc. When you extend a CFC, CF will first look in the same directory to see if that CFC exist. If it doesn't CF will start looking for the CFC from the application root down. So by simply adding

Re: Mura or ContentBox

2015-01-28 Thread Dean Lawrence
interceptor that way. -- [image: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email:* d...@idatatech.com Programming | Database | Consulting | Training

Re: Cannot access session variables in a cfc

2015-01-28 Thread Dean Lawrence
not even necessary, as this does work. /cfc/application.cfc - cfcomponent extends=root.application Cheers, Byron On Wed, Jan 28, 2015 at 3:44 PM, Dean Lawrence dean...@gmail.com wrote: Byron, the ApplicationProxy.cfc needs to be in the root directory

Re: Cannot access session variables in a cfc

2015-01-28 Thread Dean Lawrence
You could also extend the main application.cfc. You can't do this directly if the cfc's are in a sub-directory though. If that is the case, you could use a proxy, I do this all the time. Here would be the structure. root - Application.cfc - ApplicationProxy.cfc (extends Application) - cfc-folder

Re: Mura or ContentBox

2015-01-28 Thread Dean Lawrence
the roles/permissions administration and functionality of ContentBox to Mura Hope that helps, Jon [image: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email:* d...@idatatech.com Programming | Database

Mura or ContentBox

2015-01-26 Thread Dean Lawrence
insights into what they find best about either solution? Thanks, -- [image: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email:* d...@idatatech.com Programming | Database | Consulting | Training

Re: Call Rail API / CF

2015-01-19 Thread Dean Lawrence
=' MYKEYHERE'' / /cfhttp cfdump var=#r# / Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -- [image: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381

Re: Call Rail API / CF

2015-01-19 Thread Dean Lawrence
empty. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -- [image: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email

Re: Call Rail API / CF

2015-01-19 Thread Dean Lawrence
... I've tried every variation I can think of. I got a 200 response from GET but no data. Otherwise I get 401. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com [image: profile picture] *Dean Lawrence

Re: Call Rail API / CF

2015-01-19 Thread Dean Lawrence
Robert, can you share the code that you have tried? On Mon, Jan 19, 2015 at 9:31 AM, Robert Harrison rharri...@aimg.com wrote: Below is a call rail API request in PHP. This works in PHP, but I need to run this in ColdFusion. I've tried every combination of cfhttp and cfhttpparam I can

Re: Call Rail API / CF

2015-01-19 Thread Dean Lawrence
rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -- [image: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email:* d...@idatatech.com Programming | Database

Re: Trouble with ArrayAppend

2014-12-22 Thread Dean Lawrence
(); } Dave -Original Message- From: Dean Lawrence [mailto:dean...@gmail.com] Sent: Saturday, December 20, 2014 12:19 PM To: cf-talk Subject: Re: Trouble with ArrayAppend Ok, I just tried calling the same method directly from a CF template and the structures populated properly

Trouble with ArrayAppend

2014-12-20 Thread Dean Lawrence
local to the Address variable in the for loop, but it did not help. Thansk, -- [image: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email:* d...@idatatech.com Programming | Database | Consulting | Training

Trouble with ArrayAppend

2014-12-20 Thread Dean Lawrence
local to the Address variable in the for loop, but it did not help. Thansk, -- [image: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email:* d...@idatatech.com Programming | Database | Consulting | Training

Re: Trouble with ArrayAppend

2014-12-20 Thread Dean Lawrence
a reference of the tmpAddress to the array, so it is being overridden with each loop. Try the following to insert a copy of the structure into the array instead: ArrayAppend(results.Deal.addresses,duplicate(tmpAddress)); - Rodney On Fri, Dec 19, 2014 at 4:39 PM, Dean Lawrence dean...@gmail.com

Re: Trouble with ArrayAppend

2014-12-20 Thread Dean Lawrence
Ok, I just tried calling the same method directly from a CF template and the structures populated properly. It is only when I am calling it as a webservice that the structs are empty. On Sat, Dec 20, 2014 at 12:10 PM, Dean Lawrence dean...@gmail.com wrote: Thanks Rodney. I was hoping that what

Re: Bcrypt.class error

2014-12-20 Thread Dean Lawrence
Yes Russ, I have update 15 installed. On Fri, Dec 19, 2014 at 3:07 PM, Russ Michaels r...@michaels.me.uk wrote: Do you have all the cf10 updates installed? Always worth ruling that out first. On Fri, Dec 19, 2014 at 19:26 PM, Dean Lawrence dean...@gmail.com wrote: Well, this ended up

Re: Bcrypt.class error

2014-12-19 Thread Dean Lawrence
] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email:* d...@idatatech.com Programming | Database | Consulting | Training ~| Order the Adobe Coldfusion Anthology now! http

Re: Bcrypt.class error

2014-12-19 Thread Dean Lawrence
object in application scope so it doesn;t have to be instan tiated every time. application.bcrypt = CreateObject(java, BCrypt); obviously check that it exists before creating it , or you are just doing the same thing. -- [image: profile picture] *Dean Lawrence* *President* Internet

Bcrypt.class error

2014-12-18 Thread Dean Lawrence
= Not invoked as a web service; } return results; } } Any help would be greatly appreciated. -- [image: profile picture] *Dean Lawrence* *President* Internet Data Technology *Phone:* 888-438-4381 x701 *Web:* www.idatatech.com *Email:* d...@idatatech.com Programming

Re: Bcrypt.class error

2014-12-18 Thread Dean Lawrence
); obviously check that it exists before creating it , or you are just doing the same thing. On Thu, Dec 18, 2014 at 7:36 PM, Dean Lawrence dean...@gmail.com wrote: I am using the java bcrypt class library to encrypt passwords on one of my sites and it is working fine. However, I am

Re: JDBC drivers for old FoxPro DBF files.

2014-11-24 Thread Dean Lawrence
Here was a JDBC driver that I found that supposedly works with FoxPro, StelsDBF (http://www.csv-jdbc.com/stels_dbf_jdbc.htm). I've never used them before, but they have a demo version of the driver that you can download. On Fri, Nov 21, 2014 at 7:58 PM, Arden Weiss ardenwe...@verizon.net wrote:

Re: JDBC drivers for old FoxPro DBF files.

2014-11-24 Thread Dean Lawrence
You may also want to try the driver by HXTT (http://www.hxtt.com/dbf.html). I use their Access driver to be able to work with some of my old Access driven projects on my Mac. On Mon, Nov 24, 2014 at 9:28 AM, Dean Lawrence dean...@gmail.com wrote: Here was a JDBC driver that I found

Re: Avoiding a boat load of queries inserting multiple records - Better Way?

2014-10-09 Thread Dean Lawrence
Les, I think that it would probably be more efficient if you imported all the records into a temp table and then did an insert into the main email table based upon a join query that only includes records from the temp table that are not in the main email table. You could then do a similar insert

Re: CF11 changes to Application.cfc - no mappings defined?

2014-10-08 Thread Dean Lawrence
Mark, When you say global mappings, are you saying that you created a mapping in the ColdFusion admin? Also, can you maybe share some of your Application.cfc code for us to get a better idea as to what you are trying to accomplish? On Wed, Oct 8, 2014 at 1:58 PM, Gaulin, Mark

Re: CF11 changes to Application.cfc - no mappings defined?

2014-10-08 Thread Dean Lawrence
() { this.applicationManager.onApplicationStart(); } public void function onRequestStart() { application.applicationManager.onRequestStart(); } /cfscript /cfcomponent -Original Message- From: Dean Lawrence [mailto:dean

Re: How can I force clients to refresh JavaScript files?

2014-09-12 Thread Dean Lawrence
Try CF Static (http://cfstatic.riaforge.org/), it appends a unique string to the end of the file requests, which forces browsers to load the newer version. You can have it compress all your CSS and JS files or simply use it deliver your files. On Fri, Sep 12, 2014 at 11:05 AM, wrote: I

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Dean Lawrence
Sandy, I do believe that you can use any algorithm that the hash function supports. Take a look at the documentation for hash and you will see what options you have. On Tue, Sep 9, 2014 at 8:34 AM, Sandra Clark sclarkli...@gmail.com wrote: I'm working on a Cybersource Authorization form,

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Dean Lawrence
while generating HMAC. Error: Algorithm SHA-256 not available. HASH() documentation is showing SHA-256 *sigh* -Original Message- From: Dean Lawrence [mailto:dean...@gmail.com] Sent: Tuesday, September 9, 2014 9:53 AM To: cf-talk Subject: Re: HMAC Algorithms and Encoding? Sandy

Re: ColdFusion / authorize.net question

2014-08-18 Thread Dean Lawrence
Eric, looking at your sample form, you are never populating the hidden x_last_name field with the value from the LastName field. Also, your LastName field is outside of the form tags. You need to use javascript to populate the x_last_name field with the value of LastName when someone clicks the

Re: ColdFusion / authorize.net question

2014-08-18 Thread Dean Lawrence
Les, your implementation is using the Direct Post Method (DPM), not the Server Integration Method (SIM) that Eric is trying to implement. On Mon, Aug 18, 2014 at 2:52 PM, Les Mizzell lesm...@bellsouth.net wrote: On 8/18/2014 12:36 AM, Eric Bourland wrote: Has anyone here tried out the

Re: EMail Injection Attack

2014-08-18 Thread Dean Lawrence
The easiest thing to do is to scan your site code to see what pages contain the cfmail tag. The next thing is to look at your web server logs to see who is requesting those pages. If you allow for the site visitor to specify who the mail is being sent to, then you are opening yourself up to

Re: Invalid Data for Parameter but which one?

2014-07-29 Thread Dean Lawrence
Actually, the error is telling you exactly what is wrong. You are sending a string value of false to a field that only allows a maximum of 1 character. More than likely, you are trying to send a true/false value to a char(1) field. Try either converting your true/false value to 1/0. Also, I do

Re: AWeber Email List Management

2014-07-16 Thread Dean Lawrence
, 2014 at 10:39 PM, Byron Mann byronos...@gmail.com wrote: Is installing php and using the php lib via cfexecute an option? Byron Mann Lead Engineer Architect HostMySite.com On Jul 14, 2014 3:28 PM, Dean Lawrence dean...@gmail.com wrote: Does anyone have any experience

Re: AWeber Email List Management

2014-07-15 Thread Dean Lawrence
Thanks for the suggestion Russ, Unfortunately, my client already settled on using AWeber. On Mon, Jul 14, 2014 at 3:31 PM, Russ Michaels r...@michaels.me.uk wrote: no, but I can recommend www.sendgrid.com though On Mon, Jul 14, 2014 at 8:27 PM, Dean Lawrence dean...@gmail.com wrote

AWeber Email List Management

2014-07-14 Thread Dean Lawrence
Does anyone have any experience using the AWeber API (https://labs.aweber.com/) from within their ColdFusion app? They don't have an wrapper library for ColdFusion and their documentation is not very good. I haven't been able to find anything substantial by using Google, so any help pointing

ColdFusion Builder 3 syntax errors

2014-06-04 Thread Dean Lawrence
Since upgrading to CFB 3, I am getting some weird syntax error in the editor. An example is when I try to escape a pound sign with in a style block that falls within a cfoutput tag. .container { border: 1px solid ##ACACAC; margin-bottom:10px; width:700px; } The editor

Re: stripping characters for meta description

2014-05-13 Thread Dean Lawrence
You are also getting exclamation points, colons, and periods. The code that you have posted should replace anything that is not a letter, number or space (though I would use \s for a space, as it is more readable). Are you sure that you are not outputting the original text, not the modified

Re: CF Builder 3 frustrates!!!

2014-05-08 Thread Dean Lawrence
Also, you can use the AnyEditTools plugin (http://andrei.gmxhome.de/anyedit/) to export / import any working sets that you have defined. This works great if you use the same workspace that you had for your previous CFB or Eclipse installation. On Thu, May 8, 2014 at 3:10 PM, Carl Von Stetten

Could not initialize class com.rsa.jcm.c.ji

2014-05-07 Thread Dean Lawrence
I'm having issues with CF10 and cfhttp calls. Occasionally after a server reboot, some of my sites that utilize cfhttp start to throw this Could not initialize class com.rsa.jcm.c.ji error. I can usually get it to work again by stopping and restarting the CF services. However, today it does

Re: Could not initialize class com.rsa.jcm.c.ji

2014-05-07 Thread Dean Lawrence
of restarting the CF service again which made the difference. On Wed, May 7, 2014 at 10:32 AM, Dean Lawrence dean...@gmail.com wrote: I'm having issues with CF10 and cfhttp calls. Occasionally after a server reboot, some of my sites that utilize cfhttp start to throw this Could not initialize

Re: Unable to add text to HTML HEAD tag

2014-05-07 Thread Dean Lawrence
John, Have you seen this thread? ( http://stackoverflow.com/questions/17516757/cf10-unable-to-add-text-to-html-head) I don't know much content that you are trying to display, but have you tried to increase the Max Output Buffer? On Wed, May 7, 2014 at 2:21 PM, John Pullam

Re: More CFBuilder 3 frustration

2014-05-01 Thread Dean Lawrence
Mike, Code insight does work on CFC that have been invoked using ColdSpring, you just need to tell CFB where to find the CFC. Just follow these steps: 1. In the project properties, click on the CFC Mappings link. 2. Click on the New button in the CFC Variable Mapping section. 3. Enter usersDAO

Re: More CFBuilder 3 frustration

2014-05-01 Thread Dean Lawrence
into the CFC Mappings in CFBuilder, as you described. Right? Cheers Mike Kear On Fri, May 2, 2014 at 1:20 AM, Dean Lawrence dean...@gmail.com wrote: Mike, Code insight does work on CFC that have been invoked using ColdSpring, you just need to tell CFB where to find the CFC

Re: More CFBuilder 3 frustration

2014-04-30 Thread Dean Lawrence
Mike, I user CFB / Eclipse for rmultiple clients all the time. You simply create a new project (File -- New -- ColdFusion Project) for each site that you are working on. In the navigator pane, you will see each project in a separate folder. I then create a working set under the filter drop-down

Re: ColdFusion 10 does not allow Access datasource

2014-04-28 Thread Dean Lawrence
You could also use a Java driver to communicate with Access http://www.hxtt.com/access.html. I use this driver on my Mac to work on some older sites that I have to support and are using Access. On Mon, Apr 28, 2014 at 10:10 AM, Russ Michaels r...@michaels.me.uk wrote: The problem is not just

riaforge.org not found

2014-02-24 Thread Dean Lawrence
Is anyone able to reach riaforge.org? I'm coming up with a site not found error. I'm hitting something when I try riaforge.org because it is redirecting me to www.riaforge.org. However, I did a DNS lookup and the www is returning a 302 Moved Temporarily status code.

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Dean Lawrence
Rick, CFSTATIC (https://github.com/DominicWatson/cfstatic) will combine and minify both standard CSS and JS files as well as work with LESS file. I've used it in a number of projects and it works great. On Tue, Sep 10, 2013 at 11:47 AM, Rick Faircloth r...@whitestonemedia.comwrote: But one

Re: Do you use Hostek and Gmail for your mail?

2013-08-21 Thread Dean Lawrence
Andrew, Would setting the spoolenable attribute of cfmail to no possibly help the issue? I have no idea if CF utilizes existing connections when not using it's spool, but it is worth a try. On Wed, Aug 21, 2013 at 8:31 AM, Andrew Scott andr...@andyscott.id.auwrote: I can't reproduce

Re: Do you use Hostek and Gmail for your mail?

2013-08-21 Thread Dean Lawrence
Andrew, yes, that is an option that you can set server wide, but I was referring to the attribute for just the cfmail tag. I do believe that if you set it on a tag level, that it overrides the main server setting. On Wed, Aug 21, 2013 at 9:18 AM, Andrew Scott andr...@andyscott.id.auwrote:

Re: Tag replacement

2013-07-17 Thread Dean Lawrence
You could also simply use a regular expression to do the replace. cfset *testString* = 'reference-link id=2 type=reference/' / cfset *newstring* = *rereplace*(*testString*,'reference-link id=(\w) type=reference/',sup\1/sup) / The newstring variable would now be sup2/sup Dean On Wed, Jul 17,

Re: Tag replacement

2013-07-17 Thread Dean Lawrence
Your message is a reply to anothers post and is more than 100 lines of text. If possible, please trim your posts when replying. Thank you. This is just a friendly reminder and your message has not been blocked or altered in any way.

Re: Installing / compiling / signing JUpload

2013-07-11 Thread Dean Lawrence
Mike, Why don't you just download it from http://sourceforge.net/projects/jupload/. It includes both the source and a compiled version of jupload. The compiled jar is located in the site folder within the download and is named wjhk.jupload.jar On Wed, Jul 10, 2013 at 5:27 PM, Michael Muller

Re: trouble with cfheader/cfcontent

2013-06-18 Thread Dean Lawrence
Randy, This is more than likely your web server restricting the downloading of .exe files and not ColdFusion. Check with your server config. On Tue, Jun 18, 2013 at 4:13 PM, Randy Robinson rlrobin...@sartellgroup.com wrote: I'm attempting to use cfheader/cfcontent to allow our users to

Reading SOAP headers received from Flex

2013-06-01 Thread Dean Lawrence
I'm trying to read SOAP headers that a Flex client is sending my web service and the headers are blank. I am using username = getSOAPRequestHeader(http://mydomain/;, username); to read the header. Does anyone know if there is something special that needs to been done on either the ColdFusion

Re: Help needed with CF10 developer edition on XP w/IIS

2012-12-11 Thread Dean Lawrence
Stephen, Just to clarify, IIS on XP does allow you to define multiple sites, it just hides the create menu from within the gui and does not allow you to run more than one at a time. However, you can create multiple sites via the command line. I used to run a utility called IIsAdmin.NET (

Re: question about lists and CFMAIL

2012-12-02 Thread Dean Lawrence
Eric, Take a look a the Sending query-based email on this page http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec14b97-7ffb.html You specify the query name in the query attribute and the email column as your To: attribute. Cfmail will then loop over the query

Re: list delimiters question

2012-11-15 Thread Dean Lawrence
It is treading your form.some_url value as a list separated by a question mark. The listgetat is retrieving the second value in the list, which are all the url name-value pairs. On Thu, Nov 15, 2012 at 9:53 AM, morchella morchella.delici...@gmail.com wrote: not sure what the listgetat 2 is

Empty file upload field causing 403 error.

2012-08-02 Thread Dean Lawrence
I am about at my wits end with this. I have a weird scenario in that I have a simple form that allow for uploading a logo and adding a couple of fields of copy. When I choose a file and submit the form, everything works fine, the logo is uploaded and the form fields are added to my database.

Re: Empty file upload field causing 403 error.

2012-08-02 Thread Dean Lawrence
), otherwise you get issues like this. so give that a try and see if it helps. On Thu, Aug 2, 2012 at 3:32 PM, Dean Lawrence dean...@gmail.com wrote: I am about at my wits end with this. I have a weird scenario in that I have a simple form that allow for uploading a logo and adding a couple

Re: Empty file upload field causing 403 error.

2012-08-02 Thread Dean Lawrence
I could Ray, but I don't think that that will help, as the server is throwing the error before it reaches my processing page. I tested this by changing the form action to a non-processing page and received the same 403 error. On Thu, Aug 2, 2012 at 11:20 AM, Raymond Camden

Re: Empty file upload field causing 403 error.

2012-08-02 Thread Dean Lawrence
? If the image location is calling from the db- are you set up to check for file existence before processing? /Scott On 8/2/12 8:26 AM, Dean Lawrence dean...@gmail.com wrote: I could Ray, but I don't think that that will help, as the server is throwing the error before it reaches my

Re: Empty file upload field causing 403 error.

2012-08-02 Thread Dean Lawrence
Turns out that Foundeo was aware of the issue and had released a newer version of FuseGuard which fixed it. Everything is working properly now. Yea!! On Thu, Aug 2, 2012 at 1:20 PM, Dean Lawrence dean...@gmail.com wrote: Ok, I found out what the issue is. For this particular site, I am running

Re: High school algebra problem

2012-05-14 Thread Dean Lawrence
You would use the MOD Operator. #794625 MOD 256# will return 1, #794626 MOD 256# will return 2, etc. That will give you your folder number. If the result is 0, then the folder would be 256. On Mon, May 14, 2012 at 4:02 PM, Les Irvin les.cft...@gmail.com wrote: Not exactly a CF question per

Document Service Error (was deanlaw)

2012-02-07 Thread Dean Lawrence
Sorry, I realized that my original post had an ambiguous subject line. Has anyone come across this before? Do I need to reinstall (which I do not want to do) or is there something else that I should be looking for? Thanks I'm running CF9.01 on OSX Lion 64 bit. I've had problems displaying

deanlaw

2012-02-03 Thread Dean Lawrence
I'm running CF9.01 on OSX Lion 64 bit. I've had problems displaying the info page in the admin and with cfdocument. I came across a blog post at http://blog.maestropublishing.com/adobe-coldfusion-9-on-mac-lion-fix-for-hangin which fixed my problem with the info page, but I am still having a

MySQL date problem

2012-01-22 Thread Dean Lawrence
I have an app that I have created using CF 9.01, MySQL 5.1.41 and ORM. One of the properties of my object is a start date. Everything inserts and updates to the MySQL database without a problem. This issue that I am having is when I try to perform any CF date functions on the stored date. If

Re: MySQL date problem

2012-01-22 Thread Dean Lawrence
Nevermind. Stupid mistake. I was looping over a number of records and it turns out that one of the records had a null value set which was what caused the error. Had nothing to do with MySQL dates at all. Ugh. I have an app that I have created using CF 9.01, MySQL 5.1.41 and ORM. One of the

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Dean Lawrence
You are correct in the way that you were trying to implement this in the config file (or better yet, in an external config file that overrides the base config file). The problem is, is that it is not what you are looking for. I misunderstood your original post, in that I thought that CKEditor was

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Dean Lawrence
Thank you. But once again, the proper syntax is not included. I got this to work. I am calling CKEditor as such. script type=text/javascript charset=utf-8 //![CDATA[ $(function() { var config = { customConfig :

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-10 Thread Dean Lawrence
You should take a look at the protectedSource method in the config settings (http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.protectedSource). This allows you to use regular expressions to specify which tags should not be affected by the editor. On Tue, Jan 10, 2012 at 7:51

Re: Richtext Editor Woes

2012-01-03 Thread Dean Lawrence
Scott, Just for future knowledge, you can limit the abilities of the user based upon their role. config.accessControl = arrayNew(1); config.accessControl[1] = structNew(); config.accessControl[1].role = '*'; config.accessControl[1].resourceType = '*'; config.accessControl[1].folder = '/';

Re: (ot) Nivo slideshow

2011-12-15 Thread Dean Lawrence
Jenny, The page is not finding the jquery.nivo.slider.pack.js file. Make sure your path is correct. Dean On Thu, Dec 15, 2011 at 12:51 PM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote: Hi all, I am sure I am doing something daft.  Images are not sliding and I am getting the

Re: Fckeditor Security Issues

2011-12-03 Thread Dean Lawrence
Terry, It is a very easy fix. All you need to do is to add an additional argument to the JVM settings in you CF Admin. Here is a blog post which explains it. http://www.petefreitag.com/item/718.cfm On Sat, Dec 3, 2011 at 9:16 PM, Terry Troxel terry.tro...@gmail.com wrote: Ok, so that's

Re: runing CF and ASP.NET on the same web server (IIS 6)

2011-11-02 Thread Dean Lawrence
Nathan, as others have said, running ASP or .Net side-by-side with ColdFusion is not a problem, I've been doing it for years. It sounds like you may have a faulty .Net installation. I would try repairing it. Here is a link to the Microsoft article on fixing your install.

Problem deleting Solr Keys

2011-10-31 Thread Dean Lawrence
I have a Solr collection for literature which I store both a reference to the original file in a database and the physical file on the filesystem. When a new piece of literature is added to the system, I update the Solr collection with the following code: cfoutput query=literatureQuery

Re: Problem deleting Solr Keys

2011-10-31 Thread Dean Lawrence
want to double check to ensure litFile is matching case-wise. On Mon, Oct 31, 2011 at 4:01 PM, Dean Lawrence dean...@gmail.com wrote: I have a Solr collection for literature which I store both a reference to the original file in a database and the physical file on the filesystem. When a new

Re: Problem deleting Solr Keys

2011-10-31 Thread Dean Lawrence
. On Mon, Oct 31, 2011 at 4:09 PM, Dean Lawrence dean...@gmail.com wrote: Thanks Ray, I had done some troubleshooting using the status attribute and it only ever showed 0 records being affected. The litFile variable is identical and I've even tried to delete a key by manually adding the key name

Re: Coldfusion Hosting

2011-09-29 Thread Dean Lawrence
Paul, do you mean GoDaddy.com? I hadn't heard anything regarding hosting.com discontinuing ColdFusion hosting. I just checked their site and they still have it listed. Thanks, Dean On Thu, Sep 29, 2011 at 10:13 AM, Paul Smith psmit...@gmail.com wrote: Yesterday, hosting.com informs me they

Re: Solr Summary Text

2011-09-19 Thread Dean Lawrence
Hey Victor, Yes, I was finally able to get this working. If I remember correctly, it was a combination of editing the schema.xml and the solrconfig.xml files. However, I don't remember what updates I actually made. I will try to compare my backup files with the live files that are working. I'm

Simple Chinese Problem

2011-06-29 Thread Dean Lawrence
I have a site that is using fckeditor version 2.6.6 to edit it's pages. I am having a problem using text on a page that is written in Simple Chinese. When I past it into the editor, the text shows properly, but after I have saved it to the database, it is returned as just question marks. The

Re: Simple Chinese Problem

2011-06-29 Thread Dean Lawrence
Bingo!!! Thank you so much Dave! On Wed, Jun 29, 2011 at 12:16 PM, Dave Watts dwa...@figleaf.com wrote: I have a site that is using fckeditor version 2.6.6 to edit it's pages. I am having a problem using text on a page that is written in Simple Chinese. When I past it into the editor, the

Re: dbvarname mssql cf8?

2011-06-21 Thread Dean Lawrence
I have been using stored procs with SQL 2000 for many years on CF versions 5-9. dbvarnames are ignored in the java versions of ColdFusion. If you pass all the procparams to the stored procedure in the order that they are defined int the stored proc, it works fine. Dean On Tue, Jun 21, 2011 at

  1   2   >