Re: language for mailer

2010-01-24 Thread Carey Duryea
i was positive there was some hook into creating more efficiency. just like building a dragster, you basically can only go straight, but thats all you really wanna do! i am sort of a beginning developer in CF and a few other technologies, but non such as java or C, i have a potiential contra

Re: (ot) helicon isapi_rewrite config

2010-01-24 Thread Mik Muller
So... you're saying that using the rule below to turn this url... http://mysite.com/hello ... into this... http://mysite.com/page.cfm?name=hello ... the same rule might rewrite the following url... http://mydomain.com/images/whatever.jpg ... thusly... http://mydomain.com/index.cfm?name=ima

Re: (ot) helicon isapi_rewrite config

2010-01-24 Thread Judah McAuley
I don't have the config file for my former install here, but I'll look around for it. Basically, you need to first catch/exclude the patterns you don't want to rewrite, like /images, /stylesheets, etc. and then use your generic rewrite rule. I've not used ReWrite Base before, so I can't help you

RE: jQuery loaded page and

2010-01-24 Thread lists
If test.cfm has other markup then you need to rethink your use of cfwddx. Just throw an cfoutput around everything you want to return to the calling page. When the calling page receives the contents of test.cfm in the success handler, then you can do something with it. In this case, I'm dumping th

(ot) helicon isapi_rewrite config

2010-01-24 Thread Michael Muller
Hey all, I'm having trouble conceptualizing something here. I just installed Helicon ISAPI_Rewrite so I can turn the following URLs... http://mysite.com/hello ... into this... http://mysite.com/page.cfm?name=hello I have the following config set: RewriteEngine on #RewriteBase / RewriteRule

Re: jQuery loaded page and

2010-01-24 Thread Victor Moore
Yes, it helped crystallizing some ideas. In my case test.cfm has a lot of other html markup and if I do an eval I get an error. I have tried sticking the javascript in a div and getting it after, which I can and I can evaluate it too and dump the content to the console, but if I try to access d

cfmail with gmail - second question

2010-01-24 Thread Matthew Smith
I posted earlier about using cfmail with google hosted mail. I was told it would require cf8. We ended up upgrading the account to cf8, but I still can't get it to work. Here is what I have. The page runs without error, I just don't ever receive the test mail: port 465, SSL enabled port

cfmail with gmail - second question

2010-01-24 Thread Matthew Smith
I posted earlier about using cfmail with google hosted mail. I was told it would require cf8. We ended up upgrading the account to cf8, but I still can't get it to work. Here is what I have. The page runs without error, I just don't ever receive the test mail: port 465, SSL enabled port

cfexecute problems

2010-01-24 Thread Aaron Marshall
Hey all, I'm working on an admin panel for my webhosting - basically what I'm struggling with is getting coldfusion to execute batch files to start and stop other programs on my server. I'm running Windows Server 2003 x64 with Coldfusion Enterprise 8.0.1 x64. I've come across some pretty weird

cfexecute problems

2010-01-24 Thread Aaron Marshall
Hey all, I'm working on an admin panel for my webhosting - basically what I'm struggling with is getting coldfusion to execute batch files to start and stop other programs on my server. I'm running Windows Server 2003 x64 with Coldfusion Enterprise 8.0.1 x64. I've come across some pretty weird

Re: language for mailer

2010-01-24 Thread denstar
There's this (pic at bottom): http://ha-javamail.sourceforge.net/ Which should give you an idea of javamail's throughput. Theoretically ha-javamail should be usable from CF if you drop to the java level. Dave knows more about what limitations there are on standard vs. enterprise (spooling, I th