Re: CFML restart ACF 10 app server service

2014-10-02 Thread Wil Genovese
If you are having to do regular restarts for server stability then there is definitely something wrong. At CF Webtools we have work with a large number of clients on CF10 that have very high load websites. None of them need regular restarts anymore. We are experts at rooting out server

Re: CFML restart ACF 10 app server service

2014-10-02 Thread Russ Michaels
so just to clarify, these are servers with hundreds of different websites and customers on right ? not just 1 client/app per server? which is easy to tune On Thu, Oct 2, 2014 at 10:09 PM, Wil Genovese jugg...@trunkful.com wrote: If you are having to do regular restarts for server stability

Re: CFML restart ACF 10 app server service

2014-10-02 Thread Wil Genovese
Russ, I love those types of challenges! Yes, I have stabilized very large shared hosting ColdFusion 10 servers. Even some with hundreds of websites. It can be true that it’s not always as easy to do, but I know it can be done. Of course one of the best bangs for the buck is to buy Fusion

Re: CFML restart ACF 10 app server service

2014-10-02 Thread Claude Schnéegans
None of them need regular restarts anymore. If you do need restart, it could be because you have a problem in your code. I have a task scheduled every 2 hours, it scans mail rebounces with regular expressions and who knows why, after one year with no problem, I recently got a certain string

Re: CFML restart ACF 10 app server service

2014-10-02 Thread Russ Michaels
we have been using FR for years. The primary issue we have on shared servers is hung database queries, which causes all coldfusion requests to be used up until there are none left, and cf will then stop serving up pages to any new requests. There are so many things that can cause this, especially

Re: CFML restart ACF 10 app server service

2014-10-01 Thread Gerald Guido
I don't know if this is the best way but you can put the following text in a .bat file and run it using cfexecute. net stop ColdFusion 10 Application Server net start ColdFusion 10 Application Server cfexecute name = C:\somefolder\yourbatfile.bat /cfexecute HTH G! *Gerald Anthony Guido*

Re: CFML restart ACF 10 app server service

2014-10-01 Thread Russ Michaels
we have a scheduled task setup to restart CF every morning. Since we have done this we have hardly any cf issues any more. On Wed, Oct 1, 2014 at 3:46 PM, Gerald Guido gerald.gu...@gmail.com wrote: I don't know if this is the best way but you can put the following text in a .bat file and run

Re: CFML restart ACF 10 app server service

2014-10-01 Thread John M Bliss
And do you do it the way Gerald recommended...? On Wed, Oct 1, 2014 at 12:16 PM, Russ Michaels r...@michaels.me.uk wrote: we have a scheduled task setup to restart CF every morning. Since we have done this we have hardly any cf issues any more. On Wed, Oct 1, 2014 at 3:46 PM, Gerald Guido

Re: CFML restart ACF 10 app server service

2014-10-01 Thread Russ Michaels
we have a batch file which we run via a windows scheduled task, we don't do it via CF. On Wed, Oct 1, 2014 at 7:10 PM, John M Bliss bliss.j...@gmail.com wrote: And do you do it the way Gerald recommended...? On Wed, Oct 1, 2014 at 12:16 PM, Russ Michaels r...@michaels.me.uk wrote: we

Re: CFML restart ACF 10 app server service

2014-10-01 Thread John M Bliss
Care to share the batch file? On Oct 1, 2014 5:56 PM, Russ Michaels r...@michaels.me.uk wrote: we have a batch file which we run via a windows scheduled task, we don't do it via CF. On Wed, Oct 1, 2014 at 7:10 PM, John M Bliss bliss.j...@gmail.com wrote: And do you do it the way Gerald

Re: CFML restart ACF 10 app server service

2014-10-01 Thread Wil Genovese
The simplest way would be to use these two commands net stop “Servcie name net start “Servcie name Thats all you really need to stop and start ANY Windows service from the command line on the local machine. You can eve use the NET command to access a remote Windows server to stop and start

Re: CFML restart ACF 10 app server service

2014-10-01 Thread Russ Michaels
Just use the previously mentioned commands that is all you need On Wed, Oct 1, 2014 at 22:57 PM, John M Bliss bliss.j...@gmail.com wrote: Care to share the batch file? On Oct 1, 2014 5:56 PM, Russ Michaels r...@michaels.me.uk javascript:; wrote: we have a batch file which we run via a

Re: CF10 creating extra CFID/CFTOKEN cookies at the domain level

2014-10-01 Thread John Pullam
I did what you suggested and thought that the problem had gone away. I was successful in getting any traffic to move to the www prefixed name but that didn't solve the cookie problem. I am having trouble creating the failure but I am still seeing duplicate cookies with the same CFID and

Re: CF10 creating extra CFID/CFTOKEN cookies at the domain level

2014-10-01 Thread Byron Mann
If your Application has setclientcookies=yes, which is the default, a cookie/session will be created for each host used by the client to access the site. So domain.com,www.domain.com, 127.0.0.1, could all be the same physical web site, but would have 3 different cookies and sessions generated.

Re: Getting memory amount used

2014-10-01 Thread Byron Mann
Might be able to get this using Java. http://stackoverflow.com/questions/52353/in-java-what-is-the-best-way-to-determine-the-size-of-an-object For simpler objects maybe serialize the variable to json or wddx and do a regex to replace all the syntax characters and get the length. Fusion reactor

RE: Anyone have experience running CyberSource Secure Acceptance

2014-09-30 Thread Sandra Clark
I got it working, thanks Had to configure a Java Development VM, and get their sample working. It wasn't, figured out that problem and then re-wrote a Security.cfc that basically just calls the Java. -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Thursday

Re: cfchart issue...

2014-09-30 Thread Gonzo Rock
just figured out that cfchart format = flash or html will create this problem, while: cfchart format = jpg or png do not no clue as to why yet Also... verified all works as expected on CF 10... it seems to only be a CF 11 issue. Oh and it's a format=flash for the cfchart On Mon, Sep 29, 2014

Re: cfchart issue...

2014-09-29 Thread Al Musella, DPM
Maybe replace the $ with # At 03:40 PM 9/29/2014, you wrote: I have just finished updating a large application to run on CF 11 but not having any luck chasing down a particular issue with cfchart. Any any ideas as to why $ITEMLABEL$ will not resolve in CF 11 but the same template works just

Re: cfchart issue...

2014-09-29 Thread Gonzo Rock
I wish! the $ is a cfchart specific way of passing values.you can find the deets here: https://wikidocs.adobe.com/wiki/display/coldfusionen/cfchart On Mon, Sep 29, 2014 at 1:04 PM, Al Musella, DPM muse...@virtualtrials.com wrote: Maybe replace the $ with # At 03:40 PM 9/29/2014, you wrote:

RE: Not able to read a RSS feed from a WordPress website

2014-09-28 Thread Robert Harrison
That was my original suggestion was to check the firewall of the receiving server :-) -Original Message- From: Ben [mailto:b...@webworldinc.com] Sent: Friday, September 26, 2014 6:55 PM To: cf-talk Subject: Re: Not able to read a RSS feed from a WordPress website Ah. Good call! I'm

Re: Not able to read a RSS feed from a WordPress website

2014-09-28 Thread Chris h
That was my original suggestion was to check the firewall of the receiving server :-) I agree Robert, but I told them to check and they responded there was nothing in the firewall blocking that IP address. I appreciate your assistance and time with this thread.

Re: Using caching and threading to load a page quickly

2014-09-28 Thread .jonah
To have the rest of the page load and then the feed display later, you'll have to use AJAX to pull in a separate CF page clientside. (You'd still use caching in the feed.cfm so it'd only be slow occasionally.) Another approach would have the feed fetching functionality in a separate template

Re: Not able to read a RSS feed from a WordPress website

2014-09-26 Thread Chris h
Hi Dave, The server hosting WordPress was blocking the IP address of server running ColdFusion because it was seeing too much traffic for the news feeds from the server running ColdFusion. I just wish the hosting company which was running WordPress had told me this before. I appreciate all

Re: Not able to read a RSS feed from a WordPress website

2014-09-26 Thread Ben
Wow. How in hell did you figure that out? Ben On Sep 26, 2014, at 10:34 AM, Chris h h_chris...@yahoo.com wrote: Hi Dave, The server hosting WordPress was blocking the IP address of server running ColdFusion because it was seeing too much traffic for the news feeds from the server

Re: Not able to read a RSS feed from a WordPress website

2014-09-26 Thread Chris h
Wow. How in hell did you figure that out? Ben Hi Ben, I asked for the firewall logs of the server running WordPress and saw that the IP address of server running ColdFusion was blocked. ~| Order the Adobe Coldfusion

Re: Not able to read a RSS feed from a WordPress website

2014-09-26 Thread Ben
Ah. Good call! I'm surprised they had them. Ben On Sep 26, 2014, at 3:39 PM, Chris h h_chris...@yahoo.com wrote: Wow. How in hell did you figure that out? Ben Hi Ben, I asked for the firewall logs of the server running WordPress and saw that the IP address of server running

Re: cf talk

2014-09-26 Thread Matthew Allen
http://serhanpompa.com/jfhlz/tkuaweqgxtjhh ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Anyone have experience running CyberSource Secure Acceptance

2014-09-25 Thread Russ Michaels
Have they given you code and an example hash? On Tue, Sep 16, 2014 at 18:48 PM, Sandra Clark sclarkli...@gmail.com wrote: I'm trying to take a sample that they have written and convert it to ColdFusion. I have the Java in the signature code which is creating the HMAC exactly the same as

Re: Anyone have experience running CyberSource Secure Acceptance

2014-09-24 Thread Shawn Coughlin
I've been working on a solution you can see here: https://forums.adobe.com/thread/1560066 ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Adding n characters to a string

2014-09-24 Thread Bill Moniz
I think you're looking for repeatString(string, count). On 25 September 2014 13:54, Mike K afpwebwo...@gmail.com wrote: I'm having a brain fade - I know I've done this before but for the life of me I can't find where it was.I hope someone can help me out here before i go crazy ... I

Re: Adding n characters to a string

2014-09-24 Thread Mike K
Damn!!! Thanks Bill you posted this just seconds before I was about to post that I'd found it. Yes you're right, it's repeatstring( ) that i want. Thanks for your help anyway. On Thu, Sep 25, 2014 at 1:56 PM, Bill Moniz hydro.b...@gmail.com wrote: I think you're looking for

Re: First Data Global Gateway e4 sample code

2014-09-23 Thread Michael Dinowitz
Thanks for the API reference but it's already in my compiled notes. The issue is that there are a number of examples in other languages but nothing current in CF. Someone mentioned to me about a problem in CF9 and firstdata's SSL gateway, but I need more information on that. As a follow-up,

Re: Cartweaver code

2014-09-23 Thread Matt Quackenbush
I don't see a `cw-auth-firstdata.cfm` in the CW4 code base. However, the code snippets you posted **are** exceptionally similar to those in CW4 auth files. ~| Order the Adobe Coldfusion Anthology now!

Re: Cartweaver code

2014-09-23 Thread Michael Dinowitz
I know that there is a cw-auth-authorize.net.cfm so I assumed a small name change on that or another template like it for a 'new' cw-auth-firstdata.cfm. I've emailed Cartweaver and I'm hoping they'll send me a copy of their auth code templates so I can do some more in-depth comparisons. Again,

Re: Not able to read a RSS feed from a WordPress website

2014-09-22 Thread Chris h
Thanks Dave. This is no longer a programming issue, though. It has nothing to do with reading and displaying the RSS feeds at this point. Instead, it has to do with fixing the connectivity problem between the two machines. People on a mailing list are not going to be able to help you do

Re: Not able to read a RSS feed from a WordPress website

2014-09-22 Thread Dave Watts
This is no longer a programming issue, though. It has nothing to do with reading and displaying the RSS feeds at this point. Instead, it has to do with fixing the connectivity problem between the two machines. People on a mailing list are not going to be able to help you do this

RE: Forms not passing data?

2014-09-22 Thread UXB Internet
The issue mainly is that it's not always happening all the time. So it's not repeatable as far as I can tell. If you have verified the code then check to see if the user in question is running an internet security program of some kind. Many of the firewalls they install prevent form

Re: Forms not passing data?

2014-09-22 Thread Phillip Vector
AAAa... There we go. That's the most logical answer (since I blocked the error emails from that one user and when that specific error shows up and it's been quiet). I'll pass the word along and let him know. Thank you. :) On Mon, Sep 22, 2014 at 12:19 PM, UXB Internet

Re: Forms not passing data?

2014-09-22 Thread .jonah
But the correct answer is to correct the enctype so this won't be an issue. On 9/22/14, 12:21 PM, Phillip Vector wrote: AAAa... There we go. That's the most logical answer (since I blocked the error emails from that one user and when that specific error shows up and it's been quiet).

Re: Forms not passing data?

2014-09-22 Thread Phillip Vector
Already corrected it and it's still doing it. I'm willing to try anything at this point. On Mon, Sep 22, 2014 at 1:16 PM, .jonah jonah@creori.com wrote: But the correct answer is to correct the enctype so this won't be an issue. On 9/22/14, 12:21 PM, Phillip Vector wrote: AAAa...

Re: Forms not passing data?

2014-09-22 Thread .jonah
Gotit. Apologies for not tracking the thread closely. It might be interesting to log ALL the variables in the various scopes when that happens and see what's coming through. Good luck! On 9/22/14, 1:25 PM, Phillip Vector wrote: Already corrected it and it's still doing it. I'm willing to

Re: First Data Global Gateway e4 sample code

2014-09-22 Thread Michael Dinowitz
According to zendesk, the file with the ColdFusion sample code does not exist. I'm using php code as my sample for a ColdFusion app. Not the way things should be. If anyone has any First Data Global Gateway sample code that they want to send to First Data and/or Adobe, please do so. It's

Re: First Data Global Gateway e4 sample code

2014-09-22 Thread Bryan Stevenson
I'll 2nd thatIF I have seen CF examples in payment processing APIs, they has generally looked like a 5th grader wrote it with a crayon ;-) c'est la vie! *Bryan Stevenson*B.Comm. President CEO Electric Edge Systems Group Inc. - makers of FACTS^(TM) phone: 250.480.0642 cell: 250.920.8830

Re: First Data Global Gateway e4 sample code

2014-09-22 Thread Maureen
I have a client who uses First Data, but the gateway code is in PHP. I could take a crack at doing a CF version if you still need it. On Mon, Sep 22, 2014 at 6:27 PM, Michael Dinowitz mdino...@houseoffusion.com wrote: According to zendesk, the file with the ColdFusion sample code does not

Re: First Data Global Gateway e4 sample code

2014-09-22 Thread .jonah
Create it as a gateway to plug in to CFPayment. It's a nice framework for handling payment processing stuff. On 9/22/14, 4:39 PM, Maureen wrote: I have a client who uses First Data, but the gateway code is in PHP. I could take a crack at doing a CF version if you still need it. On Mon, Sep

Re: First Data Global Gateway e4 sample code

2014-09-22 Thread Casey Dougall - Uber Website Solutions
https://firstdata.zendesk.com/entries/407571-First-Data-Global-Gateway-e4-Web-Service-API-Reference-Guide slacker On Sep 22, 2014 7:58 AM, Michael Dinowitz mdino...@houseoffusion.com wrote: I'm updating a payment gateway to the First Data e4 spec and after looking through their site, I can't

Re: Forms not passing data?

2014-09-21 Thread Dan G. Switzer, II
Are you posting the data via AJAX? There's a known issue w/IE9 and earlier w/AJAX POST operations, where if the server's keep alive timeout is lower than 60 seconds, it can cause IE problems and what you get is a request that doesn't post the data back to the server. -Dan On Sun, Sep 21, 2014

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
No. Just a straight form. No AJAX. I THINK I traced it down to a bug in Railo in that it needs write access to the Web-Inf directory. But we will see if the issue is solved or not later. On Sun, Sep 21, 2014 at 8:47 AM, Dan G. Switzer, II dswit...@pengoworks.com wrote: Are you posting the

Re: Forms not passing data?

2014-09-21 Thread Dave Watts
I don't know if this is a CFML issue or what... But perhaps someone has run across this and can offer a hand... form action=#myself#Login.CheckLogin method=post enctype=multipart/form-data input type=text name=username input type=Password

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
It was just a copy over from an old form. The old login page was a combo login/create account that had a picture upload as part of the creation process. I removed the enctype and I'm still getting the error. On Sun, Sep 21, 2014 at 10:12 AM, Dave Watts dwa...@figleaf.com wrote: I don't know

Re: Forms not passing data?

2014-09-21 Thread Russ Michaels
ISTR fusebox apps by default always used FormURL2Attributes tag o convert all the form and url scope to attributes scope. obviously it has been many many years since I looked at fusebox, although the thought of it still makes me ill :-) but perhaps this tag kills off the original scope in certain

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
The issue mainly is that it's not always happening all the time. So it's not repeatable as far as I can tell. On Sun, Sep 21, 2014 at 1:07 PM, Russ Michaels r...@michaels.me.uk wrote: ISTR fusebox apps by default always used FormURL2Attributes tag o convert all the form and url scope to

Re: Forms not passing data?

2014-09-21 Thread Russ Michaels
ok a few couple of reasons I can think of. you have an un-closed tag somewhere in the form, but it doesn't always get rendered, maybe some conditional logic causes it to only display for some people. Some other conditional logic that causes the page to get redirected or reloaded, thus without

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
Thanks for the tips. I'll see what I can find. On Sun, Sep 21, 2014 at 1:59 PM, Russ Michaels r...@michaels.me.uk wrote: ok a few couple of reasons I can think of. you have an un-closed tag somewhere in the form, but it doesn't always get rendered, maybe some conditional logic causes it

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-19 Thread Brian FitzGerald
Can you post the code for the set_first_name.cfm? Thanks for chiming in Byron. set_first_name.cfm is not a real file, but if it were, it would just look like this: cfset firstName = Brian And it would work in all cases, except for the scenario that I'm describing (where the byte code is

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-19 Thread Russ Michaels
did you check the settings I suggested previously ? as this do affect the generation of the class files which contain the java byte code On Fri, Sep 19, 2014 at 2:37 PM, Brian FitzGerald bmfitzgera...@gmail.com wrote: Can you post the code for the set_first_name.cfm? Thanks for chiming in

Re: IIS not being recognized by CF 11 install

2014-09-18 Thread Russ Michaels
Yes from add/remove features in roles manager or using web platform installer On Thu, Sep 18, 2014 at 4:23 AM, Dave Watts dwa...@figleaf.com wrote: Yep, that's why I re installed IIS. Thanks Russ! I think what Russ is getting at is that you can install individual IIS components without

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-17 Thread Dave Watts
I am wondering if many others have run into this issue. Basically, when we deploy certain high volume .cfm files (i.e. index.cfm), they are sometimes incorrectly compiled to java byte code. How do you know this? What do you mean exactly by incorrectly compiled? What version of CF are you

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Gonzo Rock
I have just opened up wide all the permission on the Default Web Site in IIS... I am still not getting CF 11 Std Install to see that IIS is running. wsconfig.exe is not seeing it either. What am I doing wrong? Totally baffled now. On Tue, Sep 16, 2014 at 3:51 PM, Gonzo Rock

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Dave Watts
from the cf logs... Sep 16, 2014 17:49:10 PM Information [localhost-startStop-1] - Starting WebSocket... Sep 16, 2014 17:49:10 PM Information [localhost-startStop-1] - WebSocket server listens on port: 8577 Sep 16, 2014 17:49:11 PM Information [localhost-startStop-1] - ColdFusion started

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Dave Watts
I have just opened up wide all the permission on the Default Web Site in IIS... I am still not getting CF 11 Std Install to see that IIS is running. wsconfig.exe is not seeing it either. What am I doing wrong? Totally baffled now. My guess is that there's some sort of network port

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Russ Michaels
have you installed the following REQUIRED IIS components ? - ASP.NET - .NET Extensibility - CGI - ISAPI Extensions - ISAPI Filters On Wed, Sep 17, 2014 at 5:51 PM, Gonzo Rock gonzor...@gmail.com wrote: I have just opened up wide all the permission on the Default Web Site in

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-17 Thread Russ Michaels
do you have cf set set to save compiled files to disk ? this is the default so probably yes. if so, then try disabling this and deleting all those compiled class files from the server. The only benefit having this option enabled gives you is that when CF is restarted, it loads all those files

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-17 Thread Brian FitzGerald
How do you know this? What do you mean exactly by incorrectly compiled? What version of CF are you running? What are the exact error messages you're seeing? The reason I know it's not being compiled correctly is because when this issue occurs, the errors that happen are indicative of the

RE: IIS not being recognized by CF 11 install

2014-09-17 Thread Eric Roberts
[mailto:dwa...@figleaf.com] Sent: Wednesday, September 17, 2014 12:16 PM To: cf-talk Subject: Re: IIS not being recognized by CF 11 install from the cf logs... Sep 16, 2014 17:49:10 PM Information [localhost-startStop-1] - Starting WebSocket... Sep 16, 2014 17:49:10 PM Information [localhost

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-17 Thread Dave Watts
How do you know this? What do you mean exactly by incorrectly compiled? What version of CF are you running? What are the exact error messages you're seeing? The reason I know it's not being compiled correctly is because when this issue occurs, the errors that happen are indicative of

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Gonzo Rock
Okay it's running now... I will detail what I did and the order I did it in so that others can find this in the future. CF11 connector install problems trouble failure CF 11 connector install problems trouble failure I took Dave's advice above and installed the web server that comes with CF11

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Russ Michaels
I did actually ask earlier if you had installed all the required IIS features. As you have now stated that you did indeed not have these installed, simply installing these features as suggested would have resolved your problem, negating the need to re-install everything,. On Wed, Sep 17, 2014

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Gonzo Rock
Yep, that's why I re installed IIS. Thanks Russ! On Wed, Sep 17, 2014 at 2:59 PM, Russ Michaels r...@michaels.me.uk wrote: I did actually ask earlier if you had installed all the required IIS features. As you have now stated that you did indeed not have these installed, simply installing

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-17 Thread Byron Mann
Can you post the code for the set_first_name.cfm? firstName variable is undefined. I have seen this type of error before when the variable is set to null. Something like a web service call that fails or really does not return anything. In this instance setName might be a function that returns

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Dave Watts
Yep, that's why I re installed IIS. Thanks Russ! I think what Russ is getting at is that you can install individual IIS components without uninstalling and reinstalling IIS itself, for future reference. Dave Watts, CTO, Fig Leaf Software 1-202-527-9569 http://www.figleaf.com/ http

Re: Could not initialize class coldfusion.security.ESAPIUtils

2014-09-16 Thread Adam Parker
I found this proposed solution elsewhere and am trying it: Add a file read permission to the esapi.properties file present in CF_HOME\lib directory for each sandbox. If you can not access CF Admin console manually add this permission in neo-security.xml which can be found in CF_HOME\lib

Re: Could not initialize class coldfusion.security.ESAPIUtils

2014-09-16 Thread Russ Michaels
thanks for the info. I had this issue with CF9 a few months back, although it is the first time ever it has occured, so I presume it must be caused by one of the more recent patches. On Tue, Sep 16, 2014 at 1:44 PM, Adam Parker adgpa...@iupui.edu wrote: I found this proposed solution

RE: Test - Ignore

2014-09-16 Thread Robert Harrison
Test from new account... also ignore. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Anyone have experience running CyberSource Secure Acceptance

2014-09-16 Thread Captain Obvious
http://www.bennadel.com/blog/2412-crypto-cfc-for-hmac-sha1-hmac-sha256-and-hmac-md5-code-generation-in-coldfusion.htm ~| Order the Adobe Coldfusion Anthology now!

RE: Anyone have experience running CyberSource Secure Acceptance

2014-09-16 Thread Sandra Clark
To: cf-talk Subject: Re: Anyone have experience running CyberSource Secure Acceptance http://www.bennadel.com/blog/2412-crypto-cfc-for-hmac-sha1-hmac-sha256-and-h mac-md5-code-generation-in-coldfusion.htm ~| Order the Adobe

Re: Anyone have experience running CyberSource Secure Acceptance

2014-09-16 Thread Jon Clausen
is turning my hair gray. -Original Message- From: Captain Obvious [mailto:mr.happ...@gmail.com] Sent: Tuesday, September 16, 2014 1:58 PM To: cf-talk Subject: Re: Anyone have experience running CyberSource Secure Acceptance http://www.bennadel.com/blog/2412-crypto-cfc-for-hmac

Re: IIS not being recognized by CF 11 install

2014-09-16 Thread Dave Watts
IIS not being recognized by CF 11 install... at least that is what I am thinking now. It's there... it's running... it has a Default Web Site with a couple of user installed folders... which serve up .html files across the net no problem. Are you explicitly right-clicking on wsconfig.exe and

Re: IIS not being recognized by CF 11 install

2014-09-16 Thread Gonzo Rock
Yep... that idea was outlined in the link I shared... I also tried the install that way as well. Then I uninstalled IIS on the 2008 box ... rebooted it and then installed IIS again. No luck with that either. from the cf logs... Sep 16, 2014 17:49:10 PM Information [localhost-startStop-1] -

Re: cfmail and special characters

2014-09-13 Thread Uwe Degenhardt
From: Uwe Degenhardt cf-t...@sdsolutions.de Sent: Wednesday, September 10, 2014 3:51 AM To: cf-talk Subject: Re: cfmail and special characters Hi Philipp, thanks. Unfortunately, that doesn't work either. Has anybody any other ideas ? @Philipp, can you send me one cfmail

RE: cfmail and special characters

2014-09-12 Thread David Phelan
From: Uwe Degenhardt cf-t...@sdsolutions.de Sent: Wednesday, September 10, 2014 3:51 AM To: cf-talk Subject: Re: cfmail and special characters Hi Philipp, thanks. Unfortunately, that doesn't work either. Has anybody any other ideas ? @Philipp, can you send me one cfmail-code

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: How can I force clients to refresh JavaScript files?

2014-09-12 Thread David Phelan
The easiest way is to simply expire the page using cfheader. Take a look at http://www.bennadel.com/blog/1619-caching-coldfusion-pages-with-expires-header-value.htm. David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore Information Technology 3 Odell Plaza,

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

2014-09-12 Thread Claude Schnéegans
Try CF Static (http://cfstatic.riaforge.org/), it appends a unique string to the end of the file requests, Ok, good technique. But instead of downloading 262 files, I developped this simple CF_script custom tag: CFSETTING ENABLECFOUTPUTONLY=Yes CFSET scriptFile = expandPath(attributes.src)

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

2014-09-12 Thread Claude Schnéegans
The easiest way is to simply expire the page using cfheader. The problem with this technique is that you will force a reload even if the file was not changed. ~| Order the Adobe Coldfusion Anthology now!

Re: Not able to read a RSS feed from a WordPress website

2014-09-11 Thread Chris h
Thanks Robert, but don't think they(hostingcompanyA) would block a particular IP address(server running CF which belongs to hosting company B) Yes, they would if they detected something funny coming your server... like a bunch of pings or form bots or something... for that matter a

Re: Not able to read a RSS feed from a WordPress website

2014-09-11 Thread Dave Watts
Hosting company B says we are not blocking the website your CF server is trying to read. They say all is well with the machine running CF server. We went with a hosting company because network engineers in our organization did not have time for such things. Reading the RSS feeds and

Re: CF10 creating extra CFID/CFTOKEN cookies at the domain level

2014-09-11 Thread Claude Schnéegans
I notice that your site is reachable both through www.whitevalegolfclub.com and whitevalegolfclub.com. I had the same problem with one of my sites. It looks like two different cookies are created, one for www.whitevalegolfclub.com and the otheone for whitevalegolfclub.com and this this goofs

Re: CFHTTP connection failure

2014-09-11 Thread Steve Milburn
A few questions... first can you show us some code? Second, are you sure it is SFTP and not FTPS? What happens if you try to use an SSH client like Putty? Are you able to connect? The SFTP server should be listening on port 22 - your telnet connection uses port 23 and your ftp connection uses

Re: CFHTTP connection failure

2014-09-11 Thread Scott Stewart
This is specific to our production environment, the exact same code works fine in our staging environment.. But a putty connection may be worth a shot. We did have to install the Java JCE extensions. But again it works in every other environment but production. On Sep 11, 2014 3:20 PM, Steve

Re: CFHTTP connection failure

2014-09-11 Thread Scott Stewart
We got this figured out.. Our apps need to be refreshed when changes are made to the settings ini file. Our production team didn't refresh.. DOH!! On Sep 11, 2014 3:30 PM, Scott Stewart webmas...@sstwebworks.com wrote: This is specific to our production environment, the exact same code

Re: cfmail and special characters

2014-09-10 Thread Philipp Cielen
Uwe, try cfmail charset=utf-8“... Gruß, Philipp Am 10.09.2014 um 09:17 schrieb Uwe Degenhardt cf-t...@sdsolutions.de: Hi Everybody, to be honest: I am pulling my hair out ! I have a problem with cfmail and special characters. The german umlaute seem to be displayed wrong. This is

Re: cfmail and special characters

2014-09-10 Thread Uwe Degenhardt
Hi Philipp, thanks. Unfortunately, that doesn't work either. Has anybody any other ideas ? @Philipp, can you send me one cfmail-code snippet with special characters that runs on your CF8/Linux-box as an example ? Uwe am Mittwoch, 10. September 2014 um 09:24 schrieben Sie: Uwe,

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Chris h
Thanks Dave, Just to clarify: from the machine running CF, if you use a browser, can you get to the site correctly? No, I cannot access the site from the machine running CF. If the server admin can't tell you why a machine he or she manages can't get to a remote server, you need to

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Chris h
Thanks Russ, you need to do some basic tests, which your server admin should have already done. for a start ping the domain from the cf server, does this work and do you get the right IP, if not then it is a dns issue. make sure that someone has not created an entry in the local hosts file. I

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Chris h
If I use a browser, I can see the feeds. Using a feed reader in Google Chrome browser, I can notice the feeds load correctly. Are you using a browser from the machine running CF? No, the machine running CF cannot access the website. I get a message that the request timed out.

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Dave Watts
Just to clarify: from the machine running CF, if you use a browser, can you get to the site correctly? No, I cannot access the site from the machine running CF. OK, this is good! This means it's not a CF problem. If the server admin can't tell you why a machine he or she manages can't get

RE: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Robert Harrison
Just to clarify: from the machine running CF, if you use a browser, can you get to the site correctly? No, I cannot access the site from the machine running CF. It's possible the issue is not on your side. It could be on the side of the site you are trying to read from. You can't display

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Chris h
Thanks Dave, OK, this is good! This means it's not a CF problem. But - and now I'm being completely serious - the server admin should be able to diagnose the problem preventing the server that he manages from connecting to this other server. This is clearly not a CF problem. This could

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Chris h
Thanks Robert, Just to clarify: from the machine running CF, if you use a browser, can you get to the site correctly? No, I cannot access the site from the machine running CF. It's possible the issue is not on your side. It could be on the side of the site you are trying to read

<    5   6   7   8   9   10   11   12   13   14   >