Re: CFLDAP socket closed error against SSL

2013-12-10 Thread Mahcsig
you can try ldap browser, http://www.ldapbrowser.com/download.htm?download=browser ~Mahcsig On Tue, Dec 10, 2013 at 4:32 PM, Dan LeGate d...@legeek.com wrote: I've connected to the port using telnet and using a port scanner - both show the port is open. This is an LDAPS connection (port

Re: Retrieving line number

2013-10-08 Thread Mahcsig
you can get to it through getPageContext(). cfset c = getpagecontext() cfoutput#c.getCurrentLineNo()#/cfoutput ~Mahcsig On Tue, Oct 8, 2013 at 10:05 AM, wrote: Hi, Since error messages include the number of the line where the error occured, I suppose this line number is stored

Re: What is this code doing? Is it harmful?

2013-01-03 Thread Mahcsig
It also has an option for cfexecute, and filesetlastmodified, so they could have covered some of their tracks that way. If CF is running as local system, they could have done some really bad things to the system... ~Mahcsig On Thu, Jan 3, 2013 at 11:05 AM, Dave Watts dwa...@figleaf.com wrote

Re: QofQ cast and valuelist

2011-07-28 Thread Mahcsig
If you use quotedValueList instead of valueList, it will wrap the values in single quotes. Would that work? ~Mahcsig On Thu, Jul 28, 2011 at 10:48 AM, Richard White rich...@j7is.co.uk wrote: Hi, i am running a Query of Query with the following where clause: WHERE QueryA.column1

Re: QofQ cast and valuelist

2011-07-28 Thread Mahcsig
Cool, you could also use cfqueryparam cfsqltype=cf_sql_varchar list=true if you can't trust the input. ~Mahcsig On Thu, Jul 28, 2011 at 11:00 AM, Richard White rich...@j7is.co.uk wrote: thanks that worked :) If you use quotedValueList instead of valueList, it will wrap the values

Re: Clearing session vars and cookies from subdomain

2011-07-11 Thread Mahcsig
or maybe ajax calls to update the other domains. ~Mahcsig On Fri, Jul 8, 2011 at 12:00 PM, Gerald Weir malleth...@verizon.net wrote: Hello, We have 3 sites. I'll call them www, abc, and xyz. I have a cookie that is a domain cookie and has a userid as a value. I have written code for each

Re: secure site woes

2010-12-01 Thread Mahcsig
There is a file spacer.gif that is being served without the ssl at the very bottom of the age (after the footer). ~Mahcsig On Wed, Dec 1, 2010 at 10:57 AM, Rob Voyle robvo...@voyle.com wrote: Hi Folks I have a secure site that works fine: https://www.appreciativeway.com/secure

Re: Getting AD logged in user

2010-11-15 Thread Mahcsig
though. ~Mahcsig On Sat, Nov 13, 2010 at 2:37 AM, Robert Filipovich dnetma...@gmail.comwrote: So what I want to do is see the logged in AD username from an intranet user hitting my page, so that I can make queries based on that information without them having to log in again. I have done

Re: CFLDAP query attribute with multiple values

2010-11-02 Thread Mahcsig
Are you using the separator attribute? I use it to query active directory for user groups and it returns a list of all memberOf entries. I haven't tried it without the separator though. ~Mahcsig On Mon, Nov 1, 2010 at 7:38 PM, Azadi Saryev azadi.sar...@gmail.com wrote: does cfldap tag

Re: left outer join in query of query

2010-10-25 Thread Mahcsig
.id = t2.id /cfquery this works though: cfquery dbtype=query name=tmp SELECT * FROM t1, t2 WHERE t1.id = t2.id /cfquery ~Mahcsig On Mon, Oct 25, 2010 at 1:35 PM

Re: What version-/source control are you using (if any)?

2010-09-29 Thread Mahcsig
Joel On Software created a Mercurial tutorial site here: http://hginit.com/ ~Mahcsig On Wed, Sep 29, 2010 at 4:54 AM, Will Swain w...@hothorse.com wrote: Any good tutorials out there that people can recommend on getting up to speed with Mercurial? We use SVN at the moment, and it's fine

Re: ColdFusion Distributed Mode

2010-04-08 Thread Mahcsig
Is the new ColdFusion instance running as a user that has permission to read from the share? ~Mahcsig On Wed, Apr 7, 2010 at 12:55 PM, brad f b...@ciswired.com wrote: Have a question in regards to setting up distributed mode. We have ran in distributed mode for years with CF7 and windows

Re: cfselect with binding problem if select multiple is yes

2010-01-28 Thread Mahcsig
It looks like the getGPDesc function is expecting a number. Selecting multiple items will return a list of numbers separated by commas. The code calling getGPDesc will need to take this into consideration. ~Mahcsig On Wed, Jan 27, 2010 at 5:51 PM, Les Mizzell lesm...@bellsouth.net wrote

Re: CF9 cfquery not giving same insert results as CF7

2010-01-27 Thread Mahcsig
Depending on the database, you could also try just adding: SELECT identityfield = SCOPE_IDENTITY() to the end of the insert queries, this one is SQL Server specific though. ~Mahcsig On Wed, Jan 27, 2010 at 1:25 PM, Michael Dinowitz mdino...@houseoffusion.com wrote: OK, so it turns out

Re: REReplace Statment Help

2009-10-21 Thread Mahcsig
also, if you are replace all non alpha-numeric characters you can do this:reReplace(arguments.txt, '[^[:alnum:].]', '-', 'all'); ~Mahcsig On Wed, Oct 21, 2009 at 8:57 AM, Glyn Jackson glyn.jack...@newebia.co.ukwrote: Makes sense, thanks you

Re: Looking for jQuery Form Help...

2009-10-13 Thread Mahcsig
,disabled); } else{ $(input, select, textarea, #DifferentShippingAddress).removeAttr(disabled); } } ~Mahcsig On Tue, Oct 13, 2009 at 8:16 AM, Tony Bentley t...@tonybentley.com wrote: Sure: input type=radio onclick=showHide() value=true name=UseDifferentShippingAddress div id

Re: Display web page and download a file

2009-10-13 Thread Mahcsig
Try creating your stats page then cflocation to another page that pushes the file out. ~Mahcsig On Tue, Oct 13, 2009 at 9:49 AM, John Pullam jpul...@mcleansystems.comwrote: I have an app in CF8 that needs to show a web page and then download a file that my user requested. Nothing too

Re: ssl

2009-10-05 Thread Mahcsig
If you are using IIS, this page got me going. http://eduncan911.com/blog/getting-godaddy-ssls-working-in-firefox-on-iis.aspx http://eduncan911.com/blog/getting-godaddy-ssls-working-in-firefox-on-iis.aspx ~Mahcsig On Fri, Oct 2, 2009 at 2:39 PM, denstar valliants...@gmail.com wrote: Maybe

Re: Twitter hashtag RegEx help

2009-08-10 Thread Mahcsig
You could look for hash tags without an in front of it. something like this: (?:[^]|^)##([a-z0-9_\-]+) ~Mahcsig On Mon, Aug 10, 2009 at 10:24 AM, Paul Vernon paul.ver...@web-architect.co.uk wrote: Ok, so I thought I'd cracked this and I have to some extent but not completely. The well