Re: mySQL administration

2010-12-10 Thread Anene Isioma Wealth
just google any of the following: Heidisql, mySQLFront Best Regrads, Chuka I.W. Anene Chief Software Eng./CEO Quorium Solutions www.quorium.org +2347032696113 +23418812777 +2347029609185 From: Rob Voyle robvo...@voyle.com To: cf-talk

Re: mySQL administration

2010-12-10 Thread Stefan Richter
+1 for Navicat. Well worth it. That reminds me - I bought a Windows copy of Navicat for MySQL and then moved back to Mac... It's for the MySQL (Windows) Non-Commercial Edition version 9 so if you decide to purchase drop me a line. Stefan On 10 Dec 2010, at 04:27, Azadi Saryev wrote:

Re: how to mail merge in coldfusion

2010-12-10 Thread James Holmes
clfock can be used for any shared resource where access needs to be synchronised (e.g. files, search collections etc). -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 10 December 2010 06:36, Michael Grant mgr...@modus.bz wrote: It looks to me like you keep overwriting

Re: how to mail merge in coldfusion

2010-12-10 Thread James Holmes
*cflock (my typing sucks). -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 10 December 2010 18:32, James Holmes james.hol...@gmail.com wrote: clfock can be used for any shared resource where access needs to be synchronised (e.g. files, search collections etc). --

Re: how to mail merge in coldfusion

2010-12-10 Thread Michael Grant
Well would you look at that. You learn something new every day. On Fri, Dec 10, 2010 at 5:32 AM, James Holmes james.hol...@gmail.comwrote: clfock can be used for any shared resource where access needs to be synchronised (e.g. files, search collections etc). -- WSS4CF - WS-Security

Re: Getting the value of a hidden form field with changing names

2010-12-10 Thread Richard Steele
That's it! Thanks. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: index.cfm being hacked (now application.cfm)

2010-12-10 Thread Mary Jo Sminkey
(changed the ftp password for the umpteenth time today as well). Hhm, if they are getting in via FTP, which is certainly a strong possibility as well, you might want to try turning it off for that site, or at least restricting it to only the IP addresses that use it. I have seen numerous

Re: Getting the value of a hidden form field with changing names

2010-12-10 Thread Claude Schnéegans
If the hidden field nam is set on the fly by CF, have CF set another hidden field containing the name of the first. ~| Order the Adobe Coldfusion Anthology now!

Re: mySQL administration

2010-12-10 Thread Gerald Guido
+1 for SqlYog and Heidi SQL SqlYog has a free community version BTW: http://code.google.com/p/sqlyog/ I am also partial to Toad for MySQL. It is free and full featured. http://www.quest.com/toad-for-mysql/ EMS SQL Manager for MySQL is worth mentioning. And I keep the Lite version on my thumb

RE: index.cfm being hacked (now application.cfm)

2010-12-10 Thread Jacob
We use cfqueryparam. But when ScanAlert tests our site every night, they want to see something like a cfabort or a blank page when they pass commands such as exec or delete. So we had to implement something like that below. -Original Message- From: Bryan Stevenson

(ot) jQuery and char sets

2010-12-10 Thread Rick Root
I have a jquery.getJSON() call that is failing to call the result handler when the JSON dataset being returned contains an ASCII 132 character (an e with a backtick above it) ... in this case, it's part of someones last name. It's not generating any kind of javascript error either.. the json

Re: (ot) jQuery and char sets

2010-12-10 Thread Rick Root
On Fri, Dec 10, 2010 at 10:23 AM, Rick Root rick.r...@gmail.com wrote: I have a jquery.getJSON() call that is failing to call the result handler when the JSON dataset being returned contains an ASCII 132 character (an e with a backtick above it) ... in this case, it's part of someones last

Re: (ot) jQuery and char sets

2010-12-10 Thread Marc Funaro
You sound very smart, why didn't you just google this first? Called out and thrown under the bus (no disrespect):) ~| Order the Adobe Coldfusion Anthology now!

Re: (ot) jQuery and char sets

2010-12-10 Thread Rick Root
On Fri, Dec 10, 2010 at 10:41 AM, Marc Funaro subscripti...@advantex.netwrote: You sound very smart, why didn't you just google this first? Called out and thrown under the bus (no disrespect):) Yeah, but I threw myself under the bus there ;) Suicide?

Re: (ot) jQuery and char sets

2010-12-10 Thread Dominic Watson
Side track, and probably something you're doing already, but one little trick is to explicitly disable debug output in these things (saves you time going barmy when you/someone else uses cf debug output and your ajax stuff stops working). I.e. cfsetting showdebugoutput=false / cfcontent

help with a rewrite rule

2010-12-10 Thread Mark A. Kruger
Rewrite gurus and afficianados, I have the following rewrite rule (uses helicon).. RewriteEngine on #- IGNORE DIRECTORIRES - RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d #- FORCE LOWERCASE - RewriteMap lc int:tolower RewriteCond

Log That Keeps Track of Scheduled Tasks

2010-12-10 Thread Asaf Peleg
Hi, I'm using CF8 and I have several scheduled tasks that run. I'm investigating an issue that looks like the scheduler sometimes fails to execute files. I'm making this assumption b/c the application.log didn't record any errors and I didn't get an email from my tasks that it failed (I

CFMail problem since upgrading to CF9

2010-12-10 Thread Rick Root
We've been having significantly more trouble getting CF to send mail to our MDaemon server ... after we upgraded to CF9, we started seeing a lot of these errors in the mail.log: [Error,scheduler-4,12/10/10,11:40:51,,Could not connect to SMTP host: 69.41.172.242, port: 25, response: 421 and

Re: Log That Keeps Track of Scheduled Tasks

2010-12-10 Thread Ian Skinner
On 12/10/2010 8:53 AM, Asaf Peleg wrote: Is there a log that CF keeps that records when it ran a task or something of this nature. You have to enable it from the ColdFusion Administrator. But then it will record the execution and scheduling of all the tasks.

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Ian Skinner
On 12/10/2010 9:04 AM, Rick Root wrote: [Error,scheduler-4,12/10/10,11:40:51,,Could not connect to SMTP host: 69.41.172.242, port: 25, response: 421 and [Error,mailWorker-6,12/10/10,10:50:29,,Could not connect to SMTP host: 69.41.172.242, port: 25, response: 421 Does the user that your

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Steven Durette
Smtp error 421 is the service is not available and the connection will be closed It is from the smtp server not ColdFusion, so you issue is the smtp server. Steve Sent from my iPhone On Dec 10, 2010, at 12:04 PM, Rick Root rick.r...@gmail.com wrote: We've been having significantly more

RE: help with a rewrite rule

2010-12-10 Thread Mark A. Kruger
Ok... I tried the following: RewriteRule (?!/scripts.*) [L] But instead of ignoring it it actually redirecte to [L] ... so it's rewriting to blank eh? Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Rick Root
AH, so Could not connect to SMTP Server reported by coldfusion is not really correct because it DID connect to the SMTP server, it just couldn't send the message. Okay, makes sense. On Fri, Dec 10, 2010 at 12:20 PM, Steven Durette st...@durette.org wrote: Smtp error 421 is the service is not

RE: help with a rewrite rule

2010-12-10 Thread Mark A. Kruger
So maybe... RewriteRule (?!/scripts.*) /scripts.* [L] ?? Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: Friday, December 10,

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Steven Durette
Actually the CF error is correct. CF tried to connect to the smtp server and all it got back was error 421. So connection couldn't be made. Sent from my iPhone ~| Order the Adobe Coldfusion Anthology now!

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Rick Root
Found a setting in MDaemon that restricted the maximum concurrent incoming connections. Since CF was set to 30 threads and we have 3 isntances, and MDaemon set to only accept 50 incoming connections, that was PROBABLY causing the issue. Thanks all. Rick

Re: FuseGuard, Anyone?

2010-12-10 Thread Pete Freitag
On Thu, Dec 9, 2010 at 11:24 AM, Rick Root rick.r...@gmail.com wrote: Anyone have an experience with this tool, FuseGuard? http://foundeo.com/security/ Just curious .. I wonder how much overhead it would add on a busy site.. Hi Rick, Our experience shows that it typically adds less than

RE: help with a rewrite rule

2010-12-10 Thread Mark A. Kruger
Anyone? -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: Friday, December 10, 2010 11:28 AM To: cf-talk Subject: RE: help with a rewrite rule So maybe... RewriteRule (?!/scripts.*) /scripts.* [L] ?? Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105

Re: help with a rewrite rule

2010-12-10 Thread Michael Grant
Bueller. On Fri, Dec 10, 2010 at 1:25 PM, Mark A. Kruger mkru...@cfwebtools.comwrote: Anyone? -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: Friday, December 10, 2010 11:28 AM To: cf-talk Subject: RE: help with a rewrite rule So maybe...

CF 9 demo videos on adobe.com

2010-12-10 Thread Greg Morphis
I have tried to view these demos in Chrome, FireFox and out of desperation IE. Sometimes I get sound, no video, sometimes nada.. What gives? ~| Order the Adobe Coldfusion Anthology now!

Re: CF 9 demo videos on adobe.com

2010-12-10 Thread John M Bliss
They work for me. Chrome and Flash Player 10. On Fri, Dec 10, 2010 at 1:06 PM, Greg Morphis gmorp...@gmail.com wrote: I have tried to view these demos in Chrome, FireFox and out of desperation IE. Sometimes I get sound, no video, sometimes nada.. What gives?

Re: CF 9 demo videos on adobe.com

2010-12-10 Thread Greg Morphis
The first one works half-assed for me.. it's darkened and the spinning circle shows the whole time. The others I just get sound. Chrome 8.0.552.215 Flash 10.1.103.20 according to http://kb2.adobe.com/cps/155/tn_15507.html http://kb2.adobe.com/cps/155/tn_15507.htmlJust checked out another Flash

Re: CF 9 demo videos on adobe.com

2010-12-10 Thread Nathan Strutz
I've have this problem, too. I think it is my corporate firewall - sometimes it blocks flash that runs content on non-standard ports and it blocks some CDNs. For whichever reason, ATV tends to be a victim of that. Hmm, suddenly I have an idea for a mobile app. Stream ATV content over 3G...

RE: help with a rewrite rule

2010-12-10 Thread Mark A. Kruger
Maybe I need: RewriteCond something... Followed by RewriteRule (?!/scripts.*) /scripts.* [L] ... I just don't want it to do anything at all... I just want it to STOP processing if the file is in the scripts directory.. how hard is that? Mark A. Kruger, MCSE, CFG (402) 408-3733 ext

RE: Webservice error after CF 8.01 update

2010-12-10 Thread Brook Davies
An update on this: Since the problem came back, what I ended up doing was reverting to the lower case file names and references used previously and taking a copy of the WSDL generated prior to CF 8.01 and saving it as a standalone WSDL. Then in the webservice CFC, I added component

RE: help with a rewrite rule

2010-12-10 Thread Mark A. Kruger
Come on folks... someone has to be know this... Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: Friday, December 10, 2010 1:24

Re: help with a rewrite rule

2010-12-10 Thread denstar
Might need to escape that slash: RewriteRule ^\/scripts\/(.*) /scripts/$1 [L] On Fri, Dec 10, 2010 at 2:41 PM, denstar valliants...@gmail.com wrote: I would think it would be something like this: RewriteRule ^/scripts/(.*)  /scripts/$1  [L] That's Apache style, but they're similar,

RE: Webservice error after CF 8.01 update

2010-12-10 Thread Brook Davies
Well, I didn't have to wait til 3am Sunday morning. I'm getting this error again... The fault returned when invoking the web service operation is:br preAxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: faultString:

Re: help with a rewrite rule

2010-12-10 Thread denstar
I would think it would be something like this: RewriteRule ^/scripts/(.*) /scripts/$1 [L] That's Apache style, but they're similar, right? HIH! :Den -- The omission of good is no less reprehensible than the commission of evil. Plutarch On Fri, Dec 10, 2010 at 2:30 PM, Mark A. Kruger

Re: index.cfm being hacked (now application.cfm)

2010-12-10 Thread Mike Little
hi rick, yes php is installed on this server. that is why i am assuming it may be a php script that is causing this. (cause it can't be coldfusion !! haha) you don't have php installed do you, even though you might not be using it?

Re: index.cfm being hacked (now application.cfm)

2010-12-10 Thread Mike Little
thanks for that mary. this seems like a good idea. i will contact hostek today to try and have the ftp restricted. because they are modifying just the application file now, i think it must be an auto script as when they were attacking the index file the links were very visible to google. it

RE: help with a rewrite rule

2010-12-10 Thread Mark A. Kruger
They are very similar... I'll give this a shot... thanks. Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: denstar [mailto:valliants...@gmail.com] Sent: Friday, December 10, 2010 3:41

RE: help with a rewrite rule

2010-12-10 Thread Mark A. Kruger
Nope... no dice... http://www.classicindustries.com/scripts/admin_newProductscarline.js Notice the P is upper case. When you fire this in a browser it does a 301 and redirects to the this http://www.classicindustries.com/scripts/admin_newproductscarline.js I put my rule above the rule for

Re: index.cfm being hacked (now application.cfm)

2010-12-10 Thread Josh Nathanson
AFAIK (kinda guessing here) Google doesn't sniff the files themselves, they just hit a link and sniff the resulting HTML. So anything that's output to the resultant page, whether on the index.cfm or application.cfm, will be picked up by Google. -- Josh On Fri, Dec 10, 2010 at 1:49 PM, Mike

RE: index.cfm being hacked (now application.cfm)

2010-12-10 Thread Terry Troxel
Is the site in question on a SHARED Server? I had this issue a while ago and it wasn't my site, but someone else's and it rewrote every default page on the entire server no matter what language. Just a thought. They could have modified the exploit to not only do index.html, index.cfm, etc. but