Re: cfheader - thanks

2014-02-11 Thread Sebastiaan Naafs - van Dijk
Better yet, make it unobtrusive by using rel=external in the A-tag. the needed JS: $(document).ready(function(){ $(a[rel=external]).each(function(){ this.target=_blank; }); }); Sebastiaan Naafs - van Dijk http://onlinebase.nl/ On 02/10/2014 04:12 PM, Rob Voyle wrote: Thanks

CF10 / SQL Server Windows Authentication

2014-02-11 Thread Anthony Doherty
Hi, Im having difficulty in creating a datasource to SQL server that has windows authentication setup. When i create the datasource using the SA account it creates successfully, but when i try and use the windows account i get an error: 'Login failed for user'\domain\username' i have checked

Re: CF10 / SQL Server Windows Authentication

2014-02-11 Thread Steve 'Cutter' Blades
Would you happen to be using MS SQL Express locally? You may need to adjust your TCP/IP connection settings for SQL, as well as adjust the systems firewall rules for access. The following post may assist some: http://www.fusioncube.net/index.php/coldfusion-sql-server-express Steve 'Cutter'

Re: CF10 / SQL Server Windows Authentication

2014-02-11 Thread Russ Michaels
best method is to use mixed mode and use an sql login from coldfusion dsn. If you want to use a windows authentication then you need to run coldfusion under a windows user with authentication on the sql server. On Tue, Feb 11, 2014 at 8:43 PM, Anthony Doherty anthony...@gmail.comwrote: Hi,

Re: CF10 / SQL Server Windows Authentication

2014-02-11 Thread Dave Watts
Im having difficulty in creating a datasource to SQL server that has windows authentication setup. When i create the datasource using the SA account it creates successfully, but when i try and use the windows account i get an error: 'Login failed for user'\domain\username' i have

CFPDF Portfolio - using a custom layout style?

2014-02-11 Thread John Drake
I seem to be hitting a brick wall here. I am merging PDFs, and when I set package=yes, it creates a PDF package/portfolio/whatever they are calling it this week. It is the barebones portfolio, which defaults to the files view with the listing of the filenames of the included PDFs sitting at

Re: CFPDF Portfolio - using a custom layout style?

2014-02-11 Thread Steve 'Cutter' Blades
DDX is the way to go, when you need a higher level of control bringing these things together. CF 10 and below do not give you complete DDX functionality, but there is quite a bit available. It's all a lot of trial and error. Steve 'Cutter' Blades Adobe Community Professional Adobe Certified

Re: CF10 / SQL Server Windows Authentication

2014-02-11 Thread Russ Michaels
I would also point out that if you are currently running CF as system, then you obviously have not locked it down either, so you should consider doing that. You should also remember that if you run CF as a domain user who has access to network resources and all the databases on your sql server,