Re: [cfaussie] Re: Strange problem - Element RECORDCOUNT is undefined in query

2016-11-03 Thread Mike K
I wonder why it suddenly appeared in the mailbox then? I admit i didnt
even look at the date.

Cheers
Mike Kear



On Fri, Nov 4, 2016 at 9:05 AM, Scott Thornton <
scott.thorn...@hnehealth.nsw.gov.au> wrote:

> HI Guys,
>
>
>
> That post was from 2010!
>
>
>
> *From:* cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] *On
> Behalf Of *Mike K
> *Sent:* Friday, 4 November 2016 8:21 AM
> *To:* cfaussie
> *Subject:* Re: [cfaussie] Re: Strange problem - Element RECORDCOUNT is
> undefined in query
>
>
>
> Have you run the query in your database to be certain it actually should
> return some rows?   And that there's no syntax errors or anything like
> that in the query itself?  It's possible that your CFQuery is correctly
> returning no rows.
>
>
>
> Cheers,
>
> Mike Kear
>
> Windsor, NSW, Australia
>
> AFP Webworks.
>
>
>
> On Fri, Nov 4, 2016 at 1:16 AM, Hanswurst Globobrüll <
> rm.onlineumfra...@gmail.com> wrote:
>
> I had exactly the same problem in CF8, CF9 und also CF11.
>
> Out team was analyzing and examining for days (!) - because the problem
> was not repleatable on purpose. It just occured sometimes and we found
> evidence in log files.
>
> and finally we found out that the problem is the database. we use mysql,
> and when mysql (under huge load) creates deadlocks and a single request
> just times out, the  not exist because the query result could not be created.
>
> observe your database as a first step!
>
> best regards
>
> raffael
>
>
>
> Onlineumfragen.com
>
>
> Am Freitag, 1. Oktober 2010 01:35:44 UTC+2 schrieb Scott.thornton:
>
> Hi,
>
>
>
> Running across a odd problem in CF 9,0,0,251028. development server.
>
>
>
> I was just running a process that usually works and has not been modified
> for quite a long time. part of that process runs a query and then loops
> over the result set. Simple enough… however the query does not seem to
> exist after it has run.
>
>
> eg: The following code returns Element RECORDCOUNT is undefined in
> FIX_THIS.
>
>
>
>
>
> 
>
> select sb_invoice.sb_invoice_id,
> sb_invoice.sb_reminder_date, max(sb_claim_date) as sb_claim_date
>
> from sb_invoice
>
> inner join sb_invoice_item
>
> on sb_invoice.sb_invoice_id = sb_invoice_item.sb_invoice_id
>
> inner join sb_item_claim
>
> on sb_invoice_item.sb_invoice_item_id =
> sb_item_claim.sb_invoice_item_id
>
> where sb_invoice.sb_bill_mech_code in
> ('M','F','AG','SC','MB','MO')
>
> and sb_invoice_item.sb_item_status_code in
> ('21','24','31')
>
> group by sb_invoice.sb_invoice_id,
> sb_invoice.sb_reminder_date
>
> having sb_invoice.sb_reminder_date <
> DateAdd(d,30,max(sb_claim_date))
>
> 
>
>
>
> 
>
>
>
> 
>
>
>
>  datasource="#DSN#">
>
> update sb_invoice
>
> set sb_reminder_date =
>  ,31,fix_this.sb_claim_date),"dd-mmm-")#">
>
> where sb_invoice_id =
> 
>
> 
>
>
>
> 
>
>
>
> 
>
>
>
> I have changed the name of the query to a few different values, I have
> used cfloop instead of cfoutput, I added the cfif.recordcount to see if
> that helped, to no avail. Without the CFIF the error was :
>
> *Attribute validation error for tag cfoutput. *
>
>
>
> The value of the attribute query, which is currently fix_this, is invalid.
>
>
>
>
>
> Debug output shows that the query executed in 922ms and returned no rows.
>
>
>
> What am I missing?
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cfaussie+unsubscr...@googlegroups.com.
> To post to this group, send email to cfaussie@googlegroups.com.
> Visit this group at https://groups.google.com/group/cfaussie.
> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
>
> --
>
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer
> AFP Webworks
> http://afpwebworks.com
> ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month
>
> --
> You rec

Re: [cfaussie] Re: Strange problem - Element RECORDCOUNT is undefined in query

2016-11-03 Thread Mike K
Have you run the query in your database to be certain it actually should
return some rows?   And that there's no syntax errors or anything like
that in the query itself?  It's possible that your CFQuery is correctly
returning no rows.

Cheers,
Mike Kear
Windsor, NSW, Australia
AFP Webworks.

On Fri, Nov 4, 2016 at 1:16 AM, Hanswurst Globobrüll <
rm.onlineumfra...@gmail.com> wrote:

> I had exactly the same problem in CF8, CF9 und also CF11.
> Out team was analyzing and examining for days (!) - because the problem
> was not repleatable on purpose. It just occured sometimes and we found
> evidence in log files.
> and finally we found out that the problem is the database. we use mysql,
> and when mysql (under huge load) creates deadlocks and a single request
> just times out, the  not exist because the query result could not be created.
> observe your database as a first step!
> best regards
> raffael
>
> Onlineumfragen.com
>
> Am Freitag, 1. Oktober 2010 01:35:44 UTC+2 schrieb Scott.thornton:
>>
>> Hi,
>>
>>
>>
>> Running across a odd problem in CF 9,0,0,251028. development server.
>>
>>
>>
>> I was just running a process that usually works and has not been modified
>> for quite a long time. part of that process runs a query and then loops
>> over the result set. Simple enough… however the query does not seem to
>> exist after it has run.
>>
>>
>> eg: The following code returns Element RECORDCOUNT is undefined in
>> FIX_THIS.
>>
>>
>>
>>
>>
>> 
>>
>> select sb_invoice.sb_invoice_id,
>> sb_invoice.sb_reminder_date, max(sb_claim_date) as sb_claim_date
>>
>> from sb_invoice
>>
>> inner join sb_invoice_item
>>
>> on sb_invoice.sb_invoice_id =
>> sb_invoice_item.sb_invoice_id
>>
>> inner join sb_item_claim
>>
>> on sb_invoice_item.sb_invoice_item_id =
>> sb_item_claim.sb_invoice_item_id
>>
>> where sb_invoice.sb_bill_mech_code in
>> ('M','F','AG','SC','MB','MO')
>>
>> and sb_invoice_item.sb_item_status_code in
>> ('21','24','31')
>>
>> group by sb_invoice.sb_invoice_id,
>> sb_invoice.sb_reminder_date
>>
>> having sb_invoice.sb_reminder_date <
>> DateAdd(d,30,max(sb_claim_date))
>>
>> 
>>
>>
>>
>> 
>>
>>
>>
>> 
>>
>>
>>
>> > datasource="#DSN#">
>>
>> update sb_invoice
>>
>> set sb_reminder_date =
>> > ,31,fix_this.sb_claim_date),"dd-mmm-")#">
>>
>> where sb_invoice_id =
>> 
>>
>> 
>>
>>
>>
>> 
>>
>>
>>
>> 
>>
>>
>>
>> I have changed the name of the query to a few different values, I have
>> used cfloop instead of cfoutput, I added the cfif.recordcount to see if
>> that helped, to no avail. Without the CFIF the error was :
>>
>> *Attribute validation error for tag cfoutput. *
>>
>>
>>
>> The value of the attribute query, which is currently fix_this, is
>> invalid.
>>
>>
>>
>>
>>
>> Debug output shows that the query executed in 922ms and returned no rows.
>>
>>
>>
>> What am I missing?
>>
>>
>>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cfaussie+unsubscr...@googlegroups.com.
> To post to this group, send email to cfaussie@googlegroups.com.
> Visit this group at https://groups.google.com/group/cfaussie.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] Update to CF 9.0.2

2016-03-14 Thread Mike K
I have the WIn64 installer for CF9.0.2 if you want it.

On Tue, Mar 15, 2016 at 10:58 AM, Scott Thornton <
scott.thorn...@hnehealth.nsw.gov.au> wrote:

> Hi,
>
>
>
> Have Enterprise 9.0.1, and would like to go to 9.0.2
>
>
>
> Cannot locate the installer in the adobe website.
>
>
>
> The page
> https://helpx.adobe.com/coldfusion/release-note/coldfusion-9-0-update-2.html
> eventually leads to a page for downloading hot fixes.
>
>
>
> I have seen previously a link to http://www.gpickin.com/cfrepo/ , however
> the View Files link https://copy.com/nhIbHZYZnmPN  doesn’t appear to work
> currently.
>
>
>
> Could anyone provide any advice on obtaining the updater if possible?
>
>
>
>
>
>
>
>
>
>
>
> Scott Thornton, Platypus2
>
> Phone: 498 53361 Fax: 498 53364
>
>
>
-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] Has anyone used the HierarchyID data type in MS SQLServer?

2016-01-28 Thread Mike K
Thanks for your response, Christophe. And a good question.

I've been using Kevan Stannard's way of handling nested sets until now but
it is cumbersome in that it has to have 3 fields to position an element in
the tree. Moving an element from one place in the tree to another requires
quite a lot of sql.   Not a problem if there are only a few movements at a
time (e.g. a CMS) but in a products database there could be lots of
movements, or mass movements or whole product groups.

The MS HierarchyID uses a single field, which is part of the element's
record along with the part name, part number, etc etc,  and elements can be
moved around the tree with a single update statement on a single table,
just like updating any other field. That seems on the face of it to be
a much simpler thing to use.

Hence my question - my understanding is largely theoretical,   from reading
and a few small scale experiments.Before I dive in and commit to using
it, I thought I'd see if anyone else had used hierarchyID types and if
there were any 'gotcha's'  and if it did in fact deliver the improvements i
thought it might.


Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com



On Fri, Jan 29, 2016 at 12:23 PM, Christophe Albrech <
christophe.albr...@gmail.com> wrote:

> Nested sets are so rad. I fell in love with them back when I read joe
> celko's "sql for smarties" and its companion book "tree and hierarchies in
> sql". Way to think outside the box. It just gets a bit more complex when it
> comes to moving nodes around, but if you have the sprocs handy, you're in
> business.
>
> As far as the hierarchy datatype, I've only played with it briefly to
> study for a cert. It works well, as far as I remember. While under the hood
> it's pretty much a binary representation of materialized path
> implementation, the fact that it's a CLR object means it comes with a bunch
> of helper methods out of the box. Very much like spatial data, if you've
> ever worked with it (again, awesome).
>
> What I am wondering is why you are considering the change if you are happy
> with the speed and stability of your current implementation (or are you
> just curious?). Also consider the fact that using the hierarchyID will make
> it harder to move to a different DBMS or a pre-2008 server if the need
> arises.
>
> To answer your question based on my experimentation and readings, no, MS
> is not full of it, and yes it's a step in the right direction. Just like CF
> has always kept adding support for new stuff (xpath, cfdocument...),
> microsoft is doing the same and that's a good thing.
>
>
>
>
> On Wed, Jan 27, 2016 at 6:05 PM, Mike K <afpwebwo...@gmail.com> wrote:
>
>> Kevan Stannard
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


[cfaussie] Has anyone used the HierarchyID data type in MS SQLServer?

2016-01-26 Thread Mike K
Is anyone using the HierarchyID data type in MS SqlSERVER to organise data
into trees?

On the face of it,  accepting Microsoft's word for it  (always a risky
position to take, I know) it seems like a quick and straightforward way to
set up and manipulate data.

Has anyone any real life experience to draw on to give me an assessment
about whether Microsoft is full of it as usual or is it a step forward from
using nested sets and a tree table with right nodes and left nodes to
manipulate?   (I'm referring to Kevan Stannard's excellent piece on Nested
Sets that has kept my data sorted for quite a few years now)


-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] SQL identity issue

2016-01-26 Thread Mike K
Can you combine that random number with something sequential like maybe an
index field?  that way you'll give the customer a random order number but
still be able to keep uniqueness.  You could generate the random
number,  then append the sequential index to it making a larger integer.

Or you could use the UUID

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

On Wed, Jan 27, 2016 at 10:31 AM, Brian Knott  wrote:

> Hi everyone.
>
> I have an issue with inserting orders into a database.  What I currently
> do is create a random number and insert that number into the database when
> an order is inserted.  I then query the database to get the order number
> (unique ID generated by SQL Server).  Using this order number I then insert
> the items into an item table.
>
> The issue is that its possible for 2 orders to end up with the same unique
> number, this is because the random function is not actually that random.
> If two people are submitting orders at the same time, they get the
> same random number.  This means that all of the items ordered go to one
> customer, and the other customer gets no items.
>
> Current code for the random number is
>
> 
>
> Is there a more reliable way of doing this?
>
> Brian
>
>
> --
>

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] SQL identity issue

2016-01-26 Thread Mike K
Whats the advantage of returning result.getPrefix().generatedkey  rather
than using the @@identity function of the database?

Is it just to make it database agnostic?  or is there another reason for
it?


Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] How to learn about IIS 10?

2016-01-21 Thread Mike K
You are right, Charlie,  I AM in luck!!   That's EXACTLY what i was hunting
for.

Once again you have proved to be the goldmine of help and resource you have
been for years.

Thank you.   Thank you.   Thank you.

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com


On Fri, Jan 22, 2016 at 9:29 AM, Charlie Arehart  wrote:

> Mike, you’re in luck (finding resources for learning more about IIS). *I
> have something to share which is I hope just what you may have been looking
> for*.
>
> 1) First, let me clarify that as far as your not finding much on IIS 10,
> I’d not worry about that myself. I find that there’s virtually no change in
> it form 8, and there was really hardly any change in that from 7.
>
> 2) So when you are expressing the desire to become more versed in it, as a
> newcomer to it, or even for those reading along who are experienced, I
> can’t recommend enough *a wonderful set of 50 brief, practical IIS videos*
> that were put together by IIS guru Scott Forsyth. They are about 10-20 mins
> each, but all really, really relevant and useful (not a boring repetition
> of the docs, as some resources can be).
>
> And while they are from the IIS 7 timeframe, they are still relevant for
> the reason I state above. I blogged about them just last week, and I offer
> the topic titles and links to them:
>
> *Great set of substantial, practical, but brief videos on IIS*
> http://www.carehart.org/blog/client/index.cfm/2016/1/16/50_video_iis_series
>
>
> Let me know if they look or prove helpful for you.
>
> /charlie
>
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


[cfaussie] How to learn about IIS 10?

2016-01-20 Thread Mike K
Clearly I dont know anywhere near enough about IIs.  Can anyone recommend a
good way to learn about it?

I've looked at the usual places I learn things - Lynda.com,  TutsPlus.com,
  google for tutorials and learn,  and there isnt much available.

Even Microsoft's own sites dont have much.   Almost everything that's there
is about IIs7 or IIs8,  but the one with Windows 10 is IIs10, as far as I
can tell  (but it's hard to tell because I dont think anything actually
says in the 'about' tab.

And after the  frustration of the last week, it's pretty clear that
Microsoft themselves haven't got a clue about it or arent telling.I
wasted 8 days trying to talk to someone from there about how to make my IIS
work.   And didnt succeed.

Anyone have any good ideas where I can learn enough about IIs10 to be
self-sufficient on most routine things?

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


[cfaussie] How to learn IIS 10?

2016-01-20 Thread Mike K
Clearly I dont know anywhere near enough about IIs.  Can anyone recommend a
good way to learn about it?

I've looked at the usual places I learn things - Lynda.com,  TutsPlus.com,
  google for tutorials and learn,  and there isnt much available.

Even Microsoft's own sites dont have much.   Almost everything that's there
is about IIs7 or IIs8,  but the one with Windows 10 is IIs10, as far as I
can tell  (but it's hard to tell because I dont think anything actually
says in the 'about' tab.

And after the  frustration of the last week, it's pretty clear that
Microsoft themselves haven't got a clue about it or arent telling.I
wasted 8 days trying to talk to someone from there about how to make my IIS
work.   And didnt succeed.

Anyone have any good ideas where I can learn enough about IIs10 to be
self-sufficient on most routine things?

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


[cfaussie] IIS Error 500.19 0x80070005 Anyone had that?

2016-01-19 Thread Mike K
For day after frustrating day now I've been wrestling with this problem -
mostly swinging on the phone to Microsoft support,  and arguing over
whether I should be passed up the line to someone who can understand IIS.


Has anyone seen that problem and knows what I can do to get rid of it?

I had IIS working just fine until I updated this box to Windows 10
Profesional.Now my local pages show this error:

HTTP Error 500.19 - Internal Server Error
ModuleIIS Web Core
NotificationUnknown
HandlerNot yet determined
Error Code0x80070005
Config ErrorCannot read configuration file due to insufficient
permissions
Config File
   \\?\D:\Sites\MySites\atalkingdog.com.2006\LiveSite\wwwroot\web.config


--I googled the problem and I think the problem is to do with permissions
on the user IIS_IUSRS .  So i've made sure that user has full control
permissions,  but the problem hasn't gone away.

Strangely,  the default page on http://localhost  works ok  and the CF
Administrator pages work fine.   It's just my own site that gives this
error.

Anyone have any hints where I should go now?

Microsoft dont have any Australian support staff any more - it's handled by
the low level support people in the Phillippines on 132058 who end up
passing me to the US support people who then say they wont help, even
though they could if they chose to.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] IIS Error 500.19 0x80070005 Anyone had that?

2016-01-19 Thread Mike K
Thank you so much for responding, Bill and  Mark.   I'm a newbie IIS user,
so forgive me if i say dumb things ...  (been using Apache for 18 years -
just switched to IIS)

 It's IIS10 - the version that comes with Windows 10 Pro.

Bill:   I set them each up with their own application.pool, which is the
way the dialog box fills itself when I create a new site.I'm starting
to think I should have overridden that to use only DefaultAppPool.  Is that
how I should do it?

Follow-up question: How do i change it from what it is, to that?   I
can't see where i do that.

Mark:  Yes I have it set to anonymous authentication.   How do I find out
who the user it's set to run as?

Cheers
Mike Kear


On Wed, Jan 20, 2016 at 5:32 PM, Mark King <m...@ampersand.net.au> wrote:

> Is your web site set to run as the IIS user, someone else or as the
> application pool user?
>
>
>
> Not sure about your version but in my version of IIS it’s authentication >
> anonymous authentication, and then you have to edit it to see who it is
> running as.
>
>
>
>
>
>
>
> *From:* cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] *On
> Behalf Of *Mike K
> *Sent:* Wednesday, 20 January 2016 4:28 PM
> *To:* cfaussie <cfaussie@googlegroups.com>
> *Subject:* [cfaussie] IIS Error 500.19 0x80070005 Anyone had that?
>
>
>
> For day after frustrating day now I've been wrestling with this problem -
> mostly swinging on the phone to Microsoft support,  and arguing over
> whether I should be passed up the line to someone who can understand IIS.
>
>
>
>
> Has anyone seen that problem and knows what I can do to get rid of it?
>
>
>
> I had IIS working just fine until I updated this box to Windows 10
> Profesional.Now my local pages show this error:
>
>
> HTTP Error 500.19 - Internal Server Error
>
> *Module*
>
>IIS Web Core
>
> *Notification*
>
>Unknown
>
> *Handler*
>
>Not yet determined
>
> *Error Code*
>
>0x80070005
>
> *Config Error*
>
>Cannot read configuration file due to insufficient permissions
>
> *Config File*
>
>\\?\D:\Sites\MySites\atalkingdog.com.2006\LiveSite\wwwroot\web.config
>
>
>
>
>
> --I googled the problem and I think the problem is to do with permissions
> on the user IIS_IUSRS .  So i've made sure that user has full control
> permissions,  but the problem hasn't gone away.
>
>
>
> Strangely,  the default page on http://localhost  works ok  and the CF
> Administrator pages work fine.   It's just my own site that gives this
> error.
>
>
>
> Anyone have any hints where I should go now?
>
>
>
> Microsoft dont have any Australian support staff any more - it's handled
> by the low level support people in the Phillippines on 132058 who end up
> passing me to the US support people who then say they wont help, even
> though they could if they chose to.
>
>
>
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer
> AFP Webworks
> http://afpwebworks.com
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cfaussie+unsubscr...@googlegroups.com.
> To post to this group, send email to cfaussie@googlegroups.com.
> Visit this group at https://groups.google.com/group/cfaussie.
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cfaussie+unsubscr...@googlegroups.com.
> To post to this group, send email to cfaussie@googlegroups.com.
> Visit this group at https://groups.google.com/group/cfaussie.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] IIS Error 500.19 0x80070005 Anyone had that?

2016-01-19 Thread Mike K
Bill I have some sites that have IUSR as the anomyous user,  and others
where the anonymous authentication credentials show "Application Pool
Identity".

If i look at the application pool identity,  I see that the identity is
ApplicationPoolIdentity.So I guess that's the answer -
 ApplicationPoolIdentity.

Cheers
Mike Kear
Windsor, NSW,  Australia


On Wed, Jan 20, 2016 at 6:10 PM, Mark King  wrote:

> For me in IIS once you click authentication you then have to right click
> anonymous and then click edit.
>
>
>
> Then you get a dialog to tell you who the anonymous user actually is!
>
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


[cfaussie] THERE'S A FIRST!! A Sales call from Adobe!!!

2016-01-14 Thread Mike K
Wonders will never cease!!   After more than 20 years working in and around
ColdFusion,   I have NEVER heard from any sales people .  Not since
1997 anyway.And even after leaving message after message at Adobe in
Australia at various times who just weren't interested in discussing
opportunities with me, obviously because they never once took my call or
called me back.   Or even finding out what I was calling about.

Until today.

Today i had a call from someone from Adobe following up on my downloading
CF11 trial and seeing what possibilities there might be.

I was so flabbergasted I nearly dropped the phone.

He said he was put into this role because they were worried about the
enormous loss of developers and site owners to other technologies and were
wanting to find ways to turn that around.I'm afraid I was a bit
brutal on him, and told him in very blunt terms what I thought they could
do.He took it with good humour and I thought he listened and took in
what I said.

Well I hope so anyway.

Amazing.

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] THERE'S A FIRST!! A Sales call from Adobe!!!

2016-01-14 Thread Mike K
His email says:


Abhimanyu Bakshi
Account Manager- Inside Sales

Coldfusion
Adobe Systems Incorporated

He's in India but his call sounded like it was coming from next door.   Not
at all like the other calls I get from India at this time of day.



On Fri, Jan 15, 2016 at 5:25 PM, AJ Mercer  wrote:

> who was it?
>
>
> *AJ Mercer*
>   |  community="Open" /> 
> http://twitter.com/webonix
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cfaussie+unsubscr...@googlegroups.com.
> To post to this group, send email to cfaussie@googlegroups.com.
> Visit this group at https://groups.google.com/group/cfaussie.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


[cfaussie] Need CSS3 help please. (Sorry off topic)

2016-01-06 Thread Mike K
Sorry this is off topic.I hope you'll all forgive me.

I need some help figuring out what i've got wrong with my CSS. Can
anyone see what i've got wrong (or more specifically what I need to do to
fix) with the page at http://modelwarship.com

The problem is when you hover over the menu items at the top of the page
(the ones with a red border temporarily around them).Instead of the
whole area changing colour,  only the top half of it changes. I can't
see where i've set the wrong line  height or whatever it is that's causing
the problem.

can anyone tell me what CSS setting is causing that problem?

Thanks in advance ...

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] Need CSS3 help please. (Sorry off topic)

2016-01-06 Thread Mike K
On Thu, Jan 7, 2016 at 12:23 PM, Gareth Edwards <ghedwa...@gmail.com> wrote:

> Hi Mike,
>
> It seems to be because you’re using the line height with a mixture of
> inline-block instead of padding to adjust the vertical spacing?
>
> Something like the below might be a little better?
>
> @media (min-width: 71.875rem)
> ul.navmenu li a {
> /* line-height: 7.1875rem; */
> padding: 3.1rem 1.5625rem;
> }
>
> Cheers
> Gareth.
>
> On 7 Jan 2016, at 11:12 AM, Mike K <afpwebwo...@gmail.com> wrote:
>
> Sorry this is off topic.I hope you'll all forgive me.
>
> I need some help figuring out what i've got wrong with my CSS. Can
> anyone see what i've got wrong (or more specifically what I need to do to
> fix) with the page at http://modelwarship.com
>
> The problem is when you hover over the menu items at the top of the page
> (the ones with a red border temporarily around them).Instead of the
> whole area changing colour,  only the top half of it changes. I can't
> see where i've set the wrong line  height or whatever it is that's causing
> the problem.
>
> can anyone tell me what CSS setting is causing that problem?
>
> Thanks in advance ...
>
> --
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer
> AFP Webworks
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cfaussie+unsubscr...@googlegroups.com.
> To post to this group, send email to cfaussie@googlegroups.com.
> Visit this group at https://groups.google.com/group/cfaussie.
> For more options, visit https://groups.google.com/d/optout.
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cfaussie+unsubscr...@googlegroups.com.
> To post to this group, send email to cfaussie@googlegroups.com.
> Visit this group at https://groups.google.com/group/cfaussie.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] Need CSS3 help please. (Sorry off topic)

2016-01-06 Thread Mike K
Yep  that's the place.   Thanks Gareth.   I just need to tinker a bit with
the values to get the size right.   I am most grateful.  I've been
hunting about looking for the source of this issue for ages.

Cheers,
Mike Kear


On Thu, Jan 7, 2016 at 12:31 PM, Gareth Edwards <ghedwa...@gmail.com> wrote:

> Or just add the following to the same class, haven’t tested this cross
> browser though.
>
> display: table-cell;
>
> Cheers
> Gareth.
>
> On 7 Jan 2016, at 11:23 AM, Gareth Edwards <ghedwa...@gmail.com> wrote:
>
> Hi Mike,
>
> It seems to be because you’re using the line height with a mixture of
> inline-block instead of padding to adjust the vertical spacing?
>
> Something like the below might be a little better?
>
> @media (min-width: 71.875rem)
> ul.navmenu li a {
> /* line-height: 7.1875rem; */
> padding: 3.1rem 1.5625rem;
> }
>
> Cheers
> Gareth.
>
> On 7 Jan 2016, at 11:12 AM, Mike K <afpwebwo...@gmail.com> wrote:
>
> Sorry this is off topic.I hope you'll all forgive me.
>
> I need some help figuring out what i've got wrong with my CSS. Can
> anyone see what i've got wrong (or more specifically what I need to do to
> fix) with the page at http://modelwarship.com
>
> The problem is when you hover over the menu items at the top of the page
> (the ones with a red border temporarily around them).Instead of the
> whole area changing colour,  only the top half of it changes. I can't
> see where i've set the wrong line  height or whatever it is that's causing
> the problem.
>
> can anyone tell me what CSS setting is causing that problem?
>
> Thanks in advance ...
>
> --
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer
> AFP Webworks
>
>
> --
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] Are folks tracking CFJOBS Google Group?

2015-12-17 Thread Mike K
I didnt think anyone worth anything hired CF developers any more,   and
Adobe doesnt seem interested in promoting CF any more either (if it ever
was)

I dont think it matters.

Cheers
Mike Kear
Windsor, NSW, Australia
.AFP Webworks



On Fri, Dec 18, 2015 at 2:09 PM, Geoff Bowers  wrote:

> Just posted a job to CFJOBS and thought given the light traffic in our
> lists these days if it wouldn't be worthwhile merging CFJOBS and CFAUSSIE?
> Or are we happy to just keep on keeping on?
>
> GB
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cfaussie+unsubscr...@googlegroups.com.
> To post to this group, send email to cfaussie@googlegroups.com.
> Visit this group at https://groups.google.com/group/cfaussie.
> For more options, visit https://groups.google.com/d/optout.
>



--

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at https://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF on Windows 10 yet?

2015-09-22 Thread Mike K
Thank you once again Charlie.   I've put my own upgrade process on hold
waiting for it.  I dont need the hassles of upgrading just so I can be at
the leading edge.I can wait to update my PCs for it.



On Wed, Sep 23, 2015 at 10:59 AM, Charlie Arehart <
charlie_li...@carehart.org> wrote:

> Nope. :-(
>
> I would expect it to be in the next update. The reason it was not in the
> last, was that that update was solely for an urgent vulnerability (in
> BlazeDS).
>
> I’m not defending the fact that they haven’t had the update out a LOT
> sooner. Not only was Windows 10 released in July, but it was known to be
> coming then for months. But it is what it is.
>
> /charlie
>
>
>
> *From:* cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] *On
> Behalf Of *Mike K
> *Sent:* Tuesday, September 22, 2015 7:17 PM
> *To:* cfaussie
> *Subject:* [cfaussie] CF on Windows 10 yet?
>
>
>
> Have Adobe released updates to CF to run on Windows 10 yet?
>
>
>
> --
>
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer
> AFP Webworks
> http://afpwebworks.com
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cfaussie+unsubscr...@googlegroups.com.
> To post to this group, send email to cfaussie@googlegroups.com.
> Visit this group at http://groups.google.com/group/cfaussie.
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "cfaussie" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cfaussie+unsubscr...@googlegroups.com.
> To post to this group, send email to cfaussie@googlegroups.com.
> Visit this group at http://groups.google.com/group/cfaussie.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF on Windows 10 yet?

2015-09-22 Thread Mike K
If you remember the start of the saga a few weeks ago,  the problem began
when I upgraded one of my machines to Windows10 and my Apache didnt work.
So rather than try to figure out why,  I decided to switch to using IIS
instead. (the only place I use Apache any more is on my dev machines so I
figured I'd change my dev environment to match my servers)

That's when everything went pear-shaped on me.   And I've never got back to
working out either why Apache didnt work under Windows10 (other people have
said it works just fine , so I must have some difference in my setup
somewhere) or how to make CF work under Windows10 and IIS.

It's all still sitting in the 'too hard' basket waiting for Adobe, while I
get on with life.



On Wed, Sep 23, 2015 at 12:23 PM, Charlie Arehart <
charlie_li...@carehart.org> wrote:

> Happy to help, but FWIW, if you mean you’ll put off upgrading to Windows
> 10, I’d point out that I’ve upgraded multiple machines to Windows 10 that
> already had CF 10 and 11 on it and it’s no problem.
>
> Where you get into trouble is if you try to install CF10 or 11 (or
> earlier, of course) on a machine that is running Windows 10, or if you had
> any reason to try to run the web server config tool on Windows 10.
>
> So if you have other benefits of running Windows 10, this doesn’t have to
> be a show-stopper.
>
> Anyone else have other experience (upgrading to Windows 10 on a machine
> already running CF)?
>
>
>
> /charlie
>
>
> --
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


[cfaussie] CF on Windows 10 yet?

2015-09-22 Thread Mike K
Have Adobe released updates to CF to run on Windows 10 yet?

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF and Windows 10 and IIS

2015-08-14 Thread Mike K
G'day Charlie,And the others following this thread..

I've been distracted away with more pressing matters relating to my domain
name registry so I havent done anything with the upgrade of my laptop to
Windows 10. I will need to get back to it, because I still have 3 more
machines upgrade,  or not.   And the decision what to do about those
machines is dependent on the outcome of this project - How do i get this
laptop upgraded to WIndows10 with ColdFusion running.

Currently its in the state of having Windows10 installed,  and everything
except ColdFusion running happily.

I'll hopefully get back to working on this during next week.   And I'll
keep you posted on what happens.   Good or bad.

Thank you Charlie for following up and staying across the issues.  You've
been a great help to CFers for a long time, and so you continue to be now.



On Wed, Aug 12, 2015 at 11:47 PM, Charlie Arehart 
charlie_li...@carehart.org wrote:

 Well, yes, I had set that yesterday. :-)

 I didn’t think I needed to repeat it here, as it was the last sentence of
 the note which I responded to, with this later note being its follow up.
 Indeed, there I was repeating it from the note before THAT one that I’d
 been following up. I thought saying it a third time might be redundant. :-)
 But in case you missed it (lots of words, to explain a challenging issue),
 I’ll repeat it here:


 “(Just remember what I said in my last note just now, about your needing
 to do a manual update to the IIS connector.)”

 /charlie


Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] Anyone know how to contact ICANN?

2015-08-14 Thread Mike K
I have to close out my domain registry because the wholesaler I use has
stopped responding at all to anything.  I have support tickets outstanding
for a long time,  a domain I renewed was allowed to expire and now is
almost at deletion point,  funds I deposit into my account havent been
credited and they dont answer the phone or emails.   In other words  I
reckon the wholesaler I'm using is dead.maybe even the owner is dead
for all I know.

SO i have an Australian based registry that costs me a little more but I
can get them to respond when I need help.

THe only problem is,  one of the domains I manage is a .name domain.  And
it appears no one supports them. You can't register them or transfer
them into any registry I've found.  According to the listings,  Godaddy and
a few others support .name domains but when you actually go to their web
sites,  there's no way to renew/buy/transfer in .name domains.So I'm
trying to contact ICANN to see if they can prod my old wholesaler into
action,  and help me find a way to transfer this .name domain to somewhere.
  Then i Can close out my old registry account.



On Fri, Aug 14, 2015 at 9:17 PM, Ricardo Russon ricardo.rus...@gmail.com
wrote:

 It doesn't look like they handle the disputes. They have a list of
 resolution service providers.

 https://www.icann.org/resources/pages/providers-6d-2012-02-25-en

 On Fri, Aug 14, 2015 at 9:07 PM, Tim Donovan t...@donovan.com.au wrote:

 Mate I'm guessing it's not a .au domain? I've heard it is not easy with
 .com etc. Are they an Australian based register?

 O

 --
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


[cfaussie] Anyone know how to contact ICANN?

2015-08-13 Thread Mike K
Does anyone know how to contact ICANN?   I have a problem transferring some
domains and need to contact them to complain about my registrar, but there
is bazillions of pages with policy for this and policy for that, but no way
to contact them.

I found a page that is in a subdomain called archive.icann.org   which
doesnt look too promising - it has a CAPTCHA at the bottom, that refuses to
give me an image to get the characters from so I cant submit that form.

Anyone know where there's a submission form or complalint form or email
address or somethign I can contact them on?


-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF and Windows 10 and IIS

2015-08-11 Thread Mike K
Andrew (Scott)  thanks for your input.Incisive as always.

I had a WIndows7 machine.With ColdFusion 9 Enterprise.  That's my dev
environment at the moment. I upgraded windows to WIn10 Home  and Apache
didnt work.  That's where this whole thread started. And I havent found
a way out of it yet, apart from moving CF up to CF11.

As it turns out,   ColdFusion 9 might run on any version of windows,  but
however its bloody well not running on my WIndows10 Home machine.  It wont
even run the installer.


I have 4 machines to deal with. The machine I'm working on at present
is the one i rarely use, but having any of the others out of action for
more than a day would be a big problem.  So i need to figure out what my
strategy is going to be before I even start on those ones.


-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com



On Tue, Aug 11, 2015 at 12:14 PM, Andrew Scott andr...@andyscott.id.au
wrote:

 Mike,

 ColdFusion 9 will run on any version of Windows, it is Java. The issues
 arises when trying to use the connectors on anything above Windows 7 as
 well as the installer.

 You have a few options that will work, depending on if you have the time.

 As Andrew Myers hinted, running multiple instance of ColdFusion is always
 a good thing in development. It allows you to add instances of any version
 of ColdFusion if you have the war/ear files to do so. ColdFusion 9 is not
 supported on Tomcat, but it will run fine and you will need to know how to
 manually set sites up. I know there was issues during ColdFusion 10 beta
 days, where ColdFusion 9 wars had issues being deployed on ColdFusion 10
 installs. So you may be in for some long learning sessions on how to do
 this manually.

 Another option, but time consuming is to install Windows 7 and ColdFusion
 9 and update it to Windows 10. Although this should work it may run into
 further unsupported issues. I know ColdFusion 10 and ColdFusion 11 are
 running fine here on my Windows 10 machine, but this was an update from
 Windows 8. The only issue is the connector detects its unsupported, so
 knowing how to manually configure the server is going to be handy.

 My favourite, is to just throw as much ram into the main machine as
 possible and go and install VirtualBox. This will allow you to setup and
 install any amount of Virtual Machines to suit your taste.

 I am guessing that you are in need to have it run on ColdFusion 9 because
 sites you maintain use it, but too be honest I would be looking at
 ColdFusion 10 and ColdFusion 11, with a Virtual Machine running ColdFusion
 9 and then you can migrate the site over to ColdFusion 10 at your
 convenience.


 Regards,
 Andrew Scott
 WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411



-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF and Windows 10 and IIS

2015-08-10 Thread Mike K
Ok y'all just knew that wasn't the end of the matter  didnt you g

I downloaded the CF9.0.2 from the repo that Charlie sent me to. It was
in a folder that was blank when I looked at,   and blank again when I
looked at it again,  while other folders had content in them.But when
Andrew sent me back there ... lo and behold! There was content.  So
I downloaded the file.  So far so good.


I uninstalled the old version of CF9 from that machine and all its
components using the uninstaller,checked in the Control panel
Uninstall programs that it was indeed gone,  and checked that all the
folders were gone.   Emptied the recycle bin,then rebooted the machine.


Now when I go to install the file I just downloaded  (using run as
adminstrator by the way),   I get an error message that seems to be
related to java and the install aborts.This happens before the first
install screen comes up - it never gets to the point where the installer
says welcome to ...  There's a java dialog box that says:

Fatal Application Error
This application has unexpectedly quit.
invocation of this java application has caused an
InvocationTargetException.This applicaton wil now exit (LAX)

And when I click on details   i see the following (which I'm afraid means
nothing to me).Can someone please tell me what's gone wrong here?
 Did I download the wrong version?

[quote]
ZeroGur: Windows DLL failed to load
at ZeroGa4.b(DashoA10*..)
at ZeroGa4.b(DashoA10*..)
at com.zerog.ia.installer.LifeCycleManager.b(DashoA10*..)
at com.zerog.ia.installer.LifeCycleManager.a(DashoA10*..)
at com.zerog.ia.installer.Main.main(DashoA10*..)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.zerog.lax.LAX.launch(DashoA10*..)
at com.zerog.lax.LAX.main(DashoA10*..)
[/quote]




On Tue, Aug 11, 2015 at 2:54 AM, Charlie Arehart charlie_li...@carehart.org
 wrote:

 Thanks for the update and the kind regards, Mike.

 One thing: you say you’ll “download the CF9 updater” because “removal of
 Verity doesn’t affect you”, but I want to make clear again that 902 is NOT
 AN UPDATER. You will need to uninstall your 9.0 or 9.0.1 install before
 proceeding. More on it at
 http://www.carehart.org/blog/client/index.cfm/2013/8/19/understanding_ColdFusion_9.0.2_a_FAQ.
 Just want to be clear on what it is, and is not.

 Indeed, as for my thinking ahead to provide that download repo link you
 needed, I’ll just note that there’s a fine line between my “reading folks
 minds” in offering such extra detail, and being counted a “tall poppy”, but
 it’s a line I feel I need to walk. :-)

 I saw your next note where you had trouble getting it at the download
 repo. Will reply to that separately.

 /charlie

 *From:* cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] *On
 Behalf Of *Mike K
 *Sent:* Monday, August 10, 2015 12:15 AM
 *To:* cfaussie
 *Subject:* Re: [cfaussie] CF and Windows 10 and IIS



 Charlie,  I think you've put your finger right on the issue.   I dont know
 for sure till i go check,  but I'll bet I havent updated my CF9 that far,
 certainly not on this laptop that I rarely use.  I'll do that and see
 if that fixes the problem.



 And just as i was thinking to myself  that's all very well but I get you
 can't get that downloader any more,  there you had a link in your email!!
It was like you were reading my mind!



 I'll download the CF9 updater,  install it and see if that allows the
 connector to work ok.  Removal of Verity doesnt affect me because I
 dont use it. I would prefer to stay with CF9 at this stage, so my
 feature set on my dev environment matches the production server, but if it
 proves I need to update, then that's what I'll have to do.



 Thanks for your help, Charlie.   I'm most grateful.



 Cheers
 Mike Kear



-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF and Windows 10 and IIS

2015-08-10 Thread Mike K
Paul, I'm afraid you're right.I'm coming to the conclusion that Im
going to have to move my CF up to date.   What puzzles me is the number
of people who say it can work.I'm not doubting them, but if  they say
it'll work,   how come it doesnt work for me?   that's what I'm pondering
at the moment,  as my CF11 downloads.

In the mean time,   I'm not daring to upgrade the OS on my other machines.
  Leave well enough alone for now!!


Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF and Windows 10 and IIS

2015-08-10 Thread Mike K
Charlie,  do you think you could find the CF9.0.2 installer and put it into
the folder on that repo you linked please?

On Mon, Aug 10, 2015 at 2:24 PM, Mike K afpwebwo...@gmail.com wrote:

 Figures. This is the story of my life.

 The link to the repo Charlie gave me has DOZENS of folders containing
 DOZENS of versions of ColdFusion and documentation and CFBuilders and all
 that.   And one of the folders is empty.   Only one. Guess which
 one?

 Does anyone know where I can get the CF9.0.2 installer from please?

 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com



-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF and Windows 10 and IIS

2015-08-09 Thread Mike K
So does this mean NO ONE is using ColdFusion and Windows10??   I do
hope Adobe have this issue fairly high on their list of things to fix.

We'll see now,  just how important ColdFusion is to Adobe.  Maybe we'll
prove whether or not the doomsayers who are predicting Adobe walking away
from ColdFusion are right.

How do the open course CFML engines work with Windows 10?

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com



On Sun, Aug 9, 2015 at 2:09 PM, Andrew Scott andr...@andyscott.id.au
wrote:

 lol,

 While reading this I was in the middle of reinstalling ColdFusion 11 on a
 new PC running Windows 10, low and behold the latest download from Adobe
 says Windows 10 is not a supported OS

 Go figure.



 Regards,
 Andrew Scott
 WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411


 On Sun, Aug 9, 2015 at 2:04 PM, Andrew Scott andr...@andyscott.id.au
 wrote:

 Hey Mike,

 I can't vouch for ColdFusion 9, but I don't recall Adobe actually
 updating the installer to work on Windows 8+. What you are experiencing
 seems to point to that as an issue.

 Now there is a known hack, but it is really use at your own risk, to
 extract the install files and install everything manually. The installer
 used prior to Windows 8, would have issues that you describe.

 When using the connectors, these must be run elevated as well.

 ColdFusion 10 and ColdFusion 11 as they both have the new updated
 installers, should work on Windows 10 as they do work on Windows 8. But I
 just can't vouch for ColdFusion 9, if it has these update installers or not.


 Regards,
 Andrew Scott
 WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411




-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF and Windows 10 and IIS

2015-08-09 Thread Mike K
Figures. This is the story of my life.

The link to the repo Charlie gave me has DOZENS of folders containing
DOZENS of versions of ColdFusion and documentation and CFBuilders and all
that.   And one of the folders is empty.   Only one. Guess which
one?

Does anyone know where I can get the CF9.0.2 installer from please?

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF and Windows 10 and IIS

2015-08-09 Thread Mike K
Charlie,  I think you've put your finger right on the issue.   I dont know
for sure till i go check,  but I'll bet I havent updated my CF9 that far,
certainly not on this laptop that I rarely use.  I'll do that and see
if that fixes the problem.

And just as i was thinking to myself  that's all very well but I get you
can't get that downloader any more,  there you had a link in your email!!
   It was like you were reading my mind!

I'll download the CF9 updater,  install it and see if that allows the
connector to work ok.  Removal of Verity doesnt affect me because I
dont use it. I would prefer to stay with CF9 at this stage, so my
feature set on my dev environment matches the production server, but if it
proves I need to update, then that's what I'll have to do.

Thanks for your help, Charlie.   I'm most grateful.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com



On Mon, Aug 10, 2015 at 1:00 PM, Charlie Arehart charlie_li...@carehart.org
 wrote:

 Woah, woah. Slow your roll, Mike. :-) To you both, about CF not supporting
 Windows 10, well I did point that out in my last note. It is NOT yet
 supported.

 And if you visit the Adobe blog post (which Peter pointed to), there’s a
 discussion of that (which I initiated last night). The post is
 http://blogs.coldfusion.com/post.cfm/configuring-connectors-manually-for-iis-10)
 where they offer the steps for how to get an aspect of CF 10/11 to work
 with IIS on Windows 10 (which I did NOT need to do to get CF 11 running ok
 on Windows 10). And those interested will see there that I offered a
 comment there for Adobe asking (as I knew many would) when CF 10/11 would
 be updated to run on Windows 10? And I address the countervailing points of
 “well no one should run a new OS in production as soon as it comes out” vs
 “but developers need to be able to test against it as soon as it comes
 out”. We’ll see what they may say.

 And Mike, you ask here “does this mean NO ONE is using ColdFusion and
 Windows 10”, I said in my last post that I DO have it working myself ( but
 again, it’s not supported yet.)

 Moving back to your problem, I hope my earlier not (just sent) helps with
 that. It’s 11pm my time, so I probably won’t see a reply until my tomorrow.

 /charlie



 *From:* cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] *On
 Behalf Of *Mike K
 *Sent:* Sunday, August 09, 2015 10:35 AM
 *To:* cfaussie
 *Subject:* Re: [cfaussie] CF and Windows 10 and IIS



 So does this mean NO ONE is using ColdFusion and Windows10??   I do
 hope Adobe have this issue fairly high on their list of things to fix.



 We'll see now,  just how important ColdFusion is to Adobe.  Maybe
 we'll prove whether or not the doomsayers who are predicting Adobe walking
 away from ColdFusion are right.



 How do the open course CFML engines work with Windows 10?



 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com







 On Sun, Aug 9, 2015 at 2:09 PM, Andrew Scott andr...@andyscott.id.au
 wrote:

 lol,



 While reading this I was in the middle of reinstalling ColdFusion 11 on a
 new PC running Windows 10, low and behold the latest download from Adobe
 says Windows 10 is not a supported OS



 Go figure.






 Regards,

 Andrew Scott

 WebSite: http://www.andyscott.id.au/

 Google+:  http://plus.google.com/113032480415921517411




-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF and Windows 10 and IIS

2015-08-09 Thread Mike K
Well I certainly wish I could find out how. Is there a resource anywhere
that will show me how?

This is rapidly becoming the same nightmare as I've had before setting up
ColdFusion. It plainly does NOT work for me, as I have spelled out in
detail several times. I haven't had much more response than people saying
it works for me. Or  it doesn't work at all

I would dearly love to know HOW I can make Cf9 work with windows 10 if the
installer won't connect it, Apache doesn't connect either, running the web
connect tool doesn't run-it just hangs

Cheers
Mike Kear


On Mon, 10 Aug 2015 at 9:46 am Andrew Scott andr...@andyscott.id.au wrote:

 Well Adobe lost my respect years ago.

 But you can set up the connectors manually and it will all work.

 Regards,
 Andrew Scott
 WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411


 On Mon, Aug 10, 2015 at 12:35 AM, Mike K afpwebwo...@gmail.com wrote:

 So does this mean NO ONE is using ColdFusion and Windows10??   I do
 hope Adobe have this issue fairly high on their list of things to fix.

 We'll see now,  just how important ColdFusion is to Adobe.  Maybe
 we'll prove whether or not the doomsayers who are predicting Adobe walking
 away from ColdFusion are right.

 How do the open course CFML engines work with Windows 10?

 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com



 On Sun, Aug 9, 2015 at 2:09 PM, Andrew Scott andr...@andyscott.id.au
 wrote:

 lol,

 While reading this I was in the middle of reinstalling ColdFusion 11 on
 a new PC running Windows 10, low and behold the latest download from Adobe
 says Windows 10 is not a supported OS

 Go figure.



 Regards,
 Andrew Scott
 WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411





-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


[cfaussie] CF and Windows 10 and IIS

2015-08-08 Thread Mike K
I am about to upgrade some of my machines to Windows 10 and I thought it
would be a good opportunity to drop Apache and start using IIS instead.   (
I'm doing the first upgrade on a laptop I dont use much, so if anything
goes pear-shaped it's no big deal. )

Can anyone point me to any resources for learning about the Win10 version
of IIS (or any version if it comes to that - my knowledge of IIS is pretty
basic)

And how do I connect CF (I have CF9 Enterprise installed) to IIS instead of
the Apache I've been using?   DO i have to uninstall and reinstall CF9?

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF and Windows 10 and IIS

2015-08-08 Thread Mike K
Thanks Rae,

[1] because I have been meaning to learn about IIS for a long time now  ..
  and
[2]  Apache doesnt work on my upgraded machine..   Rather than try to debug
it and figure out what didnt work,  I thought maybe that I'd switch to IIS
now and learn more about that.

Apache wont start.  Probably a permissions thing or something   but rather
than try to figure it out I thought I'd switch.

Cheers
Mike Kear


On Sat, Aug 8, 2015 at 5:37 PM, Rae Buerckner rae.buerck...@gmail.com
wrote:

 Why not just upgrade and see how Apache goes, I’ve been using it no probs
 J



 Cheers,



 RAe



 *Rae Buerckner*

 *ACT Adobe Product User Group Manager*



 E: rae.buerck...@gmail.com

 M: +61 458 754 042



 *From:* cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] *On
 Behalf Of *Mike K
 *Sent:* Saturday, 8 August 2015 4:45 PM
 *To:* cfaussie cfaussie@googlegroups.com
 *Subject:* [cfaussie] CF and Windows 10 and IIS



 I am about to upgrade some of my machines to Windows 10 and I thought it
 would be a good opportunity to drop Apache and start using IIS instead.   (
 I'm doing the first upgrade on a laptop I dont use much, so if anything
 goes pear-shaped it's no big deal. )



 Can anyone point me to any resources for learning about the Win10 version
 of IIS (or any version if it comes to that - my knowledge of IIS is pretty
 basic)



 And how do I connect CF (I have CF9 Enterprise installed) to IIS instead
 of the Apache I've been using?   DO i have to uninstall and reinstall CF9?



 --

 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/d/optout.

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/d/optout.




-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CF and Windows 10 and IIS

2015-08-08 Thread Mike K
I'm sorry Rae,  that doesnt make any sense to me.

What might be an app?

What would getting control panel do for me?

And I'm sure you had the normal result from Apache but I've never had the
normal result from Apache ever since I first started using it back at CF5
days.   It's always been a pain in the neck to get it to do anything on a
new install. The only thing that works fine for me with Apache is
installing a new web site.

Anyway I now have servers on line with IIS and I need to know a lot more
about managing them than I do,  so that's the main reason I wanted to
switch.This hiccup with Apache now is not unexpected,  given the
history I've had with it,   but it's given me the push to get off my ass
and learn more about IIS.

Cheers
Mike Kear

On Sat, Aug 8, 2015 at 5:58 PM, Rae Buerckner rae.buerck...@gmail.com
wrote:

 Hi mike,

 I didn't have to do anything Apache just worked. Try windows key + x to
 get to control panel, otherwise it might be an app :)

 Cheers,

 Rae

 Sent from my iPhone

 On 8 Aug 2015, at 5:53 pm, Mike K afpwebwo...@gmail.com wrote:

 Thanks Rae,

 [1] because I have been meaning to learn about IIS for a long time now  ..
   and
 [2]  Apache doesnt work on my upgraded machine..   Rather than try to
 debug it and figure out what didnt work,  I thought maybe that I'd switch
 to IIS now and learn more about that.

 Apache wont start.  Probably a permissions thing or something   but rather
 than try to figure it out I thought I'd switch.

 Cheers
 Mike Kear


 On Sat, Aug 8, 2015 at 5:37 PM, Rae Buerckner rae.buerck...@gmail.com
 wrote:

 Why not just upgrade and see how Apache goes, I’ve been using it no probs
 J



 Cheers,



 RAe



 *Rae Buerckner*

 *ACT Adobe Product User Group Manager*



 E: rae.buerck...@gmail.com

 M: +61 458 754 042



 *From:* cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] *On
 Behalf Of *Mike K
 *Sent:* Saturday, 8 August 2015 4:45 PM
 *To:* cfaussie cfaussie@googlegroups.com
 *Subject:* [cfaussie] CF and Windows 10 and IIS



 I am about to upgrade some of my machines to Windows 10 and I thought it
 would be a good opportunity to drop Apache and start using IIS instead.   (
 I'm doing the first upgrade on a laptop I dont use much, so if anything
 goes pear-shaped it's no big deal. )



 Can anyone point me to any resources for learning about the Win10 version
 of IIS (or any version if it comes to that - my knowledge of IIS is pretty
 basic)



 And how do I connect CF (I have CF9 Enterprise installed) to IIS instead
 of the Apache I've been using?   DO i have to uninstall and reinstall CF9?



 --

 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/d/optout.

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/d/optout.




 --
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/d/optout.

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/d/optout.




-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group

Re: [cfaussie] CF and Windows 10 and IIS

2015-08-08 Thread Mike K
In this case I have now tried :

[ A ] Run the jrun web server configuration utility. ( the green thing ) to
connect ColdFusion to IIS It hangs saying it can't find a folder. But
doesn't tell me which folder it can't find and since there's no place to
enter a folder location up to that point I have no way to find out.

[ B ] uninstall ColdFusion, thinking if I reinstall it, it might resolve
that folder issue by itself. Nope. Still hangs at the point of configuring
the web server. Obviously the same problem, but still no way to work out
what the problem is

[ C ] uninstall ColdFusion again and reinstall as single server rather than
J2EE. Same result

So unless I can get the web server configuration utility to work I think
I'm screwed on this machine

Cheers,
Mike Kear
On Sat, 8 Aug 2015 at 6:57 pm Mike K afpwebwo...@gmail.com wrote:

 Oh yes. In about five separate instances over the years. For one reason or
 another they all resulted in anguish. And asking for help from the
 community usually summarised to :

 Me: I have a problem installing this

 Community: well I didn't

 Me: well I do and I'd be grateful for a hint what I can do to find out
 what I've done wrong

 Community: Well it worked just fine for me

 Me: good I'm pleased for you. But any idea how I figure out what's
 different in my case so I can work out a way around it?

 Community: it works fine for us. Must be you.

 In other words. Not much help on installation issues Oh and none at all
 ever from adobe or any of their predecessors

 Cheers,
 Mike Kear
 On Sat, 8 Aug 2015 at 6:40 pm Rae Buerckner rae.buerck...@gmail.com
 wrote:

 Just an aside, did you follow the ACME guide for installing CF with
 Apache? If not that may be the root of your problems J



 Cheers,



 Rae



 *Rae Buerckner*

 *ACT Adobe Product User Group Manager*



 E: rae.buerck...@gmail.com

 M: +61 458 754 042



 *From:* cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] *On
 Behalf Of *Mike K
 *Sent:* Saturday, 8 August 2015 6:08 PM
 *To:* cfaussie cfaussie@googlegroups.com
 *Subject:* Re: [cfaussie] CF and Windows 10 and IIS



 I'm sorry Rae,  that doesnt make any sense to me.



 What might be an app?



 What would getting control panel do for me?

 And I'm sure you had the normal result from Apache but I've never had the
 normal result from Apache ever since I first started using it back at CF5
 days.   It's always been a pain in the neck to get it to do anything on a
 new install. The only thing that works fine for me with Apache is
 installing a new web site.

 Anyway I now have servers on line with IIS and I need to know a lot more
 about managing them than I do,  so that's the main reason I wanted to
 switch.This hiccup with Apache now is not unexpected,  given the
 history I've had with it,   but it's given me the push to get off my ass
 and learn more about IIS.



 Cheers

 Mike Kear



 On Sat, Aug 8, 2015 at 5:58 PM, Rae Buerckner rae.buerck...@gmail.com
 wrote:

 Hi mike,



 I didn't have to do anything Apache just worked. Try windows key + x to
 get to control panel, otherwise it might be an app :)



 Cheers,



 Rae

 Sent from my iPhone


 On 8 Aug 2015, at 5:53 pm, Mike K afpwebwo...@gmail.com wrote:

 Thanks Rae,



 [1] because I have been meaning to learn about IIS for a long time now
  ..   and

 [2]  Apache doesnt work on my upgraded machine..   Rather than try to
 debug it and figure out what didnt work,  I thought maybe that I'd switch
 to IIS now and learn more about that.



 Apache wont start.  Probably a permissions thing or something   but
 rather than try to figure it out I thought I'd switch.



 Cheers

 Mike Kear





 On Sat, Aug 8, 2015 at 5:37 PM, Rae Buerckner rae.buerck...@gmail.com
 wrote:

 Why not just upgrade and see how Apache goes, I’ve been using it no probs
 J



 Cheers,



 RAe



 *Rae Buerckner*

 *ACT Adobe Product User Group Manager*



 E: rae.buerck...@gmail.com

 M: +61 458 754 042



 *From:* cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] *On
 Behalf Of *Mike K
 *Sent:* Saturday, 8 August 2015 4:45 PM
 *To:* cfaussie cfaussie@googlegroups.com
 *Subject:* [cfaussie] CF and Windows 10 and IIS



 I am about to upgrade some of my machines to Windows 10 and I thought it
 would be a good opportunity to drop Apache and start using IIS instead.   (
 I'm doing the first upgrade on a laptop I dont use much, so if anything
 goes pear-shaped it's no big deal. )



 Can anyone point me to any resources for learning about the Win10 version
 of IIS (or any version if it comes to that - my knowledge of IIS is pretty
 basic)



 And how do I connect CF (I have CF9 Enterprise installed) to IIS instead
 of the Apache I've been using?   DO i have to uninstall and reinstall CF9?



 --

 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

 --
 You

Re: [cfaussie] CF and Windows 10 and IIS

2015-08-08 Thread Mike K
Thanks a lot Peter. I'll give that a try. Do you know if it works for cf9
or will i have to update to cf10 first?

And thanks Ricardo I'll give your suggestion a try too

Cheers,
Mike Kear
On Sat, 8 Aug 2015 at 10:11 pm Peter Tilbrook peter.tilbr...@gmail.com
wrote:


 http://blogs.coldfusion.com/post.cfm/configuring-connectors-manually-for-iis-10

 Have not tried this yet but hope it helps as so far no joy getting CF10 to
 work with Win10. Have not tried CF11 as that is still alpha.
 ​​


 ==
 Peter Tilbrook
 Professional Adobe ColdFusion 11 Application Development
 Managing Director, ColdGen Internet Solutions
 Web Administrator, The Club Group Pty Ltd
 PO Box 2247
 Queanbeyan, NSW, 2620
 AUSTRALIA

 Tel: +61-2-6104-9981
 Mob: +61-0478-623-579

 Email Address: peter.tilbr...@coldgen.com
 WWW: http://www.coldgen.com/

 On 8 August 2015 at 20:17, Ricardo Russon ricardo.rus...@gmail.com
 wrote:

 What if you run the Remove All Connectors script before running the
 config tool?

 On Sat, Aug 8, 2015 at 7:13 PM, Mike K afpwebwo...@gmail.com wrote:

 In this case I have now tried :

 [ A ] Run the jrun web server configuration utility. ( the green thing )
 to connect ColdFusion to IIS It hangs saying it can't find a folder. But
 doesn't tell me which folder it can't find and since there's no place to
 enter a folder location up to that point I have no way to find out.

 [ B ] uninstall ColdFusion, thinking if I reinstall it, it might resolve
 that folder issue by itself. Nope. Still hangs at the point of configuring
 the web server. Obviously the same problem, but still no way to work out
 what the problem is

 [ C ] uninstall ColdFusion again and reinstall as single server rather
 than J2EE. Same result

 So unless I can get the web server configuration utility to work I think
 I'm screwed on this machine

 Cheers,
 Mike Kear
 On Sat, 8 Aug 2015 at 6:57 pm Mike K afpwebwo...@gmail.com wrote:

 Oh yes. In about five separate instances over the years. For one reason
 or another they all resulted in anguish. And asking for help from the
 community usually summarised to :

 Me: I have a problem installing this

 Community: well I didn't

 Me: well I do and I'd be grateful for a hint what I can do to find out
 what I've done wrong

 Community: Well it worked just fine for me

 Me: good I'm pleased for you. But any idea how I figure out what's
 different in my case so I can work out a way around it?

 Community: it works fine for us. Must be you.

 In other words. Not much help on installation issues Oh and none at all
 ever from adobe or any of their predecessors

 Cheers,
 Mike Kear
 On Sat, 8 Aug 2015 at 6:40 pm Rae Buerckner rae.buerck...@gmail.com
 wrote:

 Just an aside, did you follow the ACME guide for installing CF with
 Apache? If not that may be the root of your problems J



 Cheers,



 Rae



 *Rae Buerckner*

 *ACT Adobe Product User Group Manager*



 E: rae.buerck...@gmail.com

 M: +61 458 754 042



 *From:* cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] *On
 Behalf Of *Mike K
 *Sent:* Saturday, 8 August 2015 6:08 PM
 *To:* cfaussie cfaussie@googlegroups.com
 *Subject:* Re: [cfaussie] CF and Windows 10 and IIS



 I'm sorry Rae,  that doesnt make any sense to me.



 What might be an app?



 What would getting control panel do for me?

 And I'm sure you had the normal result from Apache but I've never had
 the normal result from Apache ever since I first started using it back at
 CF5 days.   It's always been a pain in the neck to get it to do anything 
 on
 a new install. The only thing that works fine for me with Apache is
 installing a new web site.

 Anyway I now have servers on line with IIS and I need to know a lot
 more about managing them than I do,  so that's the main reason I wanted to
 switch.This hiccup with Apache now is not unexpected,  given the
 history I've had with it,   but it's given me the push to get off my ass
 and learn more about IIS.



 Cheers

 Mike Kear



 On Sat, Aug 8, 2015 at 5:58 PM, Rae Buerckner rae.buerck...@gmail.com
 wrote:

 Hi mike,



 I didn't have to do anything Apache just worked. Try windows key + x
 to get to control panel, otherwise it might be an app :)



 Cheers,



 Rae

 Sent from my iPhone


 On 8 Aug 2015, at 5:53 pm, Mike K afpwebwo...@gmail.com wrote:

 Thanks Rae,



 [1] because I have been meaning to learn about IIS for a long time now
  ..   and

 [2]  Apache doesnt work on my upgraded machine..   Rather than try to
 debug it and figure out what didnt work,  I thought maybe that I'd switch
 to IIS now and learn more about that.



 Apache wont start.  Probably a permissions thing or something   but
 rather than try to figure it out I thought I'd switch.



 Cheers

 Mike Kear





 On Sat, Aug 8, 2015 at 5:37 PM, Rae Buerckner rae.buerck...@gmail.com
 wrote:

 Why not just upgrade and see how Apache goes, I’ve been using it no
 probs J



 Cheers,



 RAe



 *Rae Buerckner*

 *ACT Adobe Product User Group Manager

Re: [cfaussie] CF and Windows 10 and IIS

2015-08-08 Thread Mike K
Charlie, I'm grateful to you for your willingness to step up, as always.
You've been an asset to the community for a long time, and so it continues.


All i wanted to do, was upgrade my windows.   I have 4 machines all running
Windows 7  (one with Win7 ultimate,  2 with Win7 Pro,  and 1 with WIn7Home
Premium. ) Being cautious ever since an awful experience with Windows95
 years ago,  I started with my WIn7Home Premium laptop, which I dont use
very often.If it went pear-shaped on that machine it wouldn't be a big
deal.   And i can take as long as I need to get it worked out before I
need to upgrade all the other machines.

So I upgraded the Windows on that laptop.  Went swimmingly.   Just as
advertised.Took me a couple of hours to get a human to talk to me at
Microsoft so I could find out how to get hold of the installer so I didnt
have to download it all 4 times,   but finally i got what I needed.
 I upgraded my windows and started testing all the applications I had
loaded on there. To my surprise everything worked.Just as they had
previously,  but with a better look.   And to my amazement,  the new
Microsoft browser looks at first glance to be a fine piece of work.
(But I have yet to give it a real good workout) And Bing is no better
than it used to be.

But when I went to check how my dev versions of my sites ran,   I came into
problems.They are built on CF9 Enterprise.

My Apache didnt run.Wouldn't start. I could have debugged it and
got it working maybe, but I figured that I didnt know enough about IIS, and
I own a server that serves pages with IIS,  and i really need to know more
about IIS.   So.  why not take this opportunity to start using IIS in my
dev environment.   How hard can it be??? So I just left Apache
alone.   I removed it from the list of programs that auto start on reboot
and that's where it stayed.

HAH   You'd think I would learn wouldnt you. These things NEVER run
smoothly for me.  Never have,  so why would I expect this to be any
different?

I installed the IIS components,  taking a guess as to what elements I'd be
needing if all i was doing was using it as a web server for my ColdFusion
sites and maybe a simple static site or two. I loaded a static site
into it and it worked fine. Great.   I can assume IIS is working ok,
even if I'm not 100% i have all the required components.

Now all I have to do is connect my CF9 to IIS and run a CF site on it and I
can relax.  If only!

So if you've followed this thread you'll see that I started out just trying
to add IIS using the Web Connector tool. That didnt work.   It just
hung, and never got to the point of offering me the web servers it's found
for me to select. The dialog box opened and it started searching for
web servers installed on the machine and that's where it stayed.

So i figured maybe what I'll do is uninstall CF9 and reinstall it.   That
way I can eliminate Apache from everything, in case that was the problem.

I did that 3 times all with the same result.I installed CF9 as each of
the variants offered in the install routine.   Each time it would install
apparently fine,   but hang at the last point where it's connecting to the
web server.

That's where I'm up to. I don't know whether a Windows10/CF9
combination is EVER going to work,  or I need to go to a later version of
CF.  (I am sticking with CF9 because that's what 's on my server, and I
like to have my dev environment as similar to the production environment as
I can get.But I can upgrade if that's the only way to go to Win10.  I
guess I'm going to have to update CF sooner or later, but I have no need
yet because of clients needing the newer features or anything like that.
I dont want to go to that expense just to stay near the cutting edge.
 I'll upgrade when/if there's a client need.  )


I want to upgrade all my machines to Windows10 for reasons unrelated to web
development.   There are some problems with another app that we use for the
radio station programming that are unstable and need upgrading.   It's not
urgent  but we have a year before Win10 is no longer free.

So I dont know what to do next.I suspect one option might be just wait
till Adobe provide a fix.

   Do you have any suggestions?



Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] what domain reseller program do you use?

2014-09-24 Thread Mike K
Thanks Paul, Dale, Tim.I'm checking those out.  Paul the fact that
TPP are owned by MelbourneIT is a big negative for me. I'll check that
out too.


On Thu, Sep 25, 2014 at 12:05 PM, Paul Kukiel kuki...@gmail.com wrote:

 I've used tpp there good.

 Pretty sure they are now owned by MElbourne it
 On Sep 24, 2014 11:36 PM, Tim Donovan donovanme...@gmail.com wrote:

 Mate we use tpp wholesale...they have been great. Good support.
 On 22 Sep 2014 16:41, Mike K afpwebwo...@gmail.com wrote:

 I am looking at moving my domain name reseller accounts to another
 company.  what companies do you recommend (or not recommend)?

 I need to register .au domains as well as all the top level domains
 (.com, .net etc)
 I need to retain control, branding etc - dont want them contacting my
 customers to hassle them for renewals etc)
 I need a viable price - a lot of the companies offering reseller
 programs price wholesale prices above the going price for retail)

 anyone to consider?  (or to avoid?)
 --
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

 --
 You received this message because you are subscribed to the Google
 Groups cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/d/optout.

  --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/d/optout.

  --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to cfaussie+unsubscr...@googlegroups.com.
 To post to this group, send email to cfaussie@googlegroups.com.
 Visit this group at http://groups.google.com/group/cfaussie.
 For more options, visit https://groups.google.com/d/optout.




-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


[cfaussie] what domain reseller program do you use?

2014-09-22 Thread Mike K
I am looking at moving my domain name reseller accounts to another company.
 what companies do you recommend (or not recommend)?

I need to register .au domains as well as all the top level domains (.com,
.net etc)
I need to retain control, branding etc - dont want them contacting my
customers to hassle them for renewals etc)
I need a viable price - a lot of the companies offering reseller programs
price wholesale prices above the going price for retail)

anyone to consider?  (or to avoid?)
-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] Are there any mid-snr CF devs left in Australia

2014-02-25 Thread Mike K
I'm guessing a lot of us got sick of the daily grind of finding people who
would pay for our skills and went off on our own projects.  I dont look for
contracting work any more - sometimes it comes my way, but I'm just not
interested in talking to whippersnappers who think cos im over 40 years
old I must be stupid and incapable of understanding the interweb.   I built
my first web site in 1996,  and I spend about a third of my time learning,
just like everyone else, and I stay up with current techniques, just like
everyone else,   but unlike the whippersnappers, I have a few miles on the
clock and know a bit about how to sell things and communication.

But try telling that to someone aged 25 who is barely out of short pants.
 They rate you on what kind of tie you are wearing at the interview, and
ask questions like '.. and where do you see yourself in 5 years?'.   Or the
total stupido- what do you think is your weakest quality?(to which
I'm thinking ..Do you want an experienced programmer or dont you?   and
for how long?  months or years?   I'm not looking for a career here - just
to do the job you want done.  When you call a plumber to fix your sink, do
you ask him what his career aspirations are?)

That's why I'm not in the market any more.

I'm still using ColdFusion a lot, and I'm building some pretty
sophisticated applications, and maintaining some pretty sophisticated web
 sites.   I cant remember the last time I tried to sell anyone on
ColdFusion over other technologies.  Few of my clients care a damn.  They
talk about the end result web site,  not the technology used to build it.




On Wed, Feb 26, 2014 at 8:42 AM, Mark Mandel mark.man...@gmail.com wrote:

 On 26/02/2014 7:48 AM, Dave davidame...@gmail.com wrote:

 Hi there,

 I was wondering if there are any mid-senior level ColdFusion developers
 left in Australia (specifically, Melbourne).

 We are finding is really tough to hire people that have written
 enterprise (ie, complex, framework driven) applications.


 dave


-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


[cfaussie] Australia: Calculating shipping costs programmatically

2014-01-09 Thread Mike K
I have a client who sells car parts and wants to be able to conduct sales
on line, including credit card processing.  That means we're going to have
to calculate shipping costs, I think, so that his site knows the entire
price of the order at the time of placing it.

Up until now,  he's been able to get away with processing the order,  then
personally working out the best way to ship the goods,  calling the courier
or shipping company,  then calling his customer back with the total value
of the order then processing the credit card transaction manually. This
was a workaround a couple of years ago when we first built the site, but it
is too cumbersome now and we need to automate it.

How are the rest of you handling shipping costs?The goods,  being car
parts,  are sometimes really bulky, like a racing seat,  sometimes small,
like a set of spark plugs,  sometimes heavy like a Diff assembly or a
gearbox or an alloy racing wheel hub.

Is there any shipping company handling all-around-Australia shipping that
would have an API that I could use to work out the value of the shipping
costs?   UPS and FEDEX  do this in the USA,  and presumably are
possibilities for us here too,Is there anyone else I should consider?

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [cfaussie] Re: Adobe appear to be unable to handle my customer issue - or even talk to me.

2013-12-02 Thread Mike K
Nothing and no one is indispensable, Matt.   But i dont want to have to
change all my methods.  I just wanted them to process my payment so my
creative cloud subscription stayed valid. I dont think it should have
taken nearly a month to get it done.  It's a fairly simple thing to do -
re-process a credit card that doesnt pay the first time.Like a lot of
people,  for online transactions, I use a credit card that rarely has any
money in it, for security purposes.I put money in that account to cover
transactions that I know are going through.

Only this time, I cut it a bit fine and there was insufficient funds to
cover the CC subscription payment so it bounced.  Now I have spent about 6
hours of otherwise billable time trying to get the problem fixed.It
should have taken no more than 5 minutes to get it fixed.

What a huge workload it would be to find, download, install, configure,
learn,  tweak and become fluent with alternative apps for Photoshop,
 Fireworks,  Dreamweaver,  Audition,  Bridge,  Lightbox,  Edge,  ColdFusion
Builder  - all of which I use almost daily, when all i really wanted was
for Adobe to just process my credit card payment.

However, as I said earlier, it has turned out ok finally - they've given me
a couple of months subscription free as compensation for the hassle.   Not
exactly the equivalent of 6 hours' billable time but I can live with it.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com



On Mon, Dec 2, 2013 at 8:41 PM, M@ Bourke
m.electronic.at.sym...@gmail.comwrote:

 If Adobe is offering such poor customer service, what product are they
 offering that you can't do without?


 On Mon, Dec 2, 2013 at 12:48 AM, Chris Velevitch 
 chris.velevi...@gmail.com wrote:

 Mike,

 I found the number switching regions on the Adobe website, and yes, that
 is the Australian Adobe customer service.




-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [cfaussie] Re: Adobe appear to be unable to handle my customer issue - or even talk to me.

2013-12-01 Thread Mike K
It's resolved now, Chris. but no I didnt call the 1800 number, because I
was of the understanding that American 1800 numbers arent accessible from
Australia.  There was no indication that this was not an American 1800
number.Have you managed to call it and get an answer?

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com


On Sun, Dec 1, 2013 at 9:46 PM, Chris Velevitch
chris.velevi...@gmail.comwrote:

 Did try calling 1800 426 570? It's the Adobe Creative Cloud, desktop and
 consumer products purchase by phone number. See
 http://www.adobe.com/au/company/contact.html.


 Chris
 --
 Chris Velevitch
 Manager - Adobe Platform Users Group, Sydney
 m: 0415 469 095
 www.apugs.org.au

 Adobe Platform Users Group, Sydney
 Topic: TBD
 Date: Monday, 3rd February
 Details and RSVP on http://www.meetup.com/Sydney-Adobe-Platform-User-Group

 --


-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


[cfaussie] Adobe appear to be unable to handle my customer issue - or even talk to me.

2013-11-28 Thread Mike K
Apparently,  Adobe are unable to process ANY credit card details,

And it would seem they are unable to have anyone in Australia take a phone
call.  I have been trying for nearly a MONTH to get to talk to someone
about this and never get to anyone. I leave messages and no one ever calls
me back.

There was an issue with my credit card when they went to process my
November Creative Cloud payment,   but instead of just trying it again a
day or so later as most companies do,  I had to go and update my CC
details.  I did that (the details were correct already but I updated them
anyway)  and would expect a new attempt at payment in a day or so and all
would be well. NO such luck with Adobe.I keep getting messages when
I open any CC application saying I have xx days to update my details or it
will be cancelled.

I have contacted their support  THREE times - and been assured the issue
will be resolved.I  have been promised that someone from the
appropriate team will contact me.No such luck.   I have been assured
that my card will be charged within 24 hours and all will be well.   NO
such luck.   I have used a new credit card.That hasnt been charged
either.   I have now tried changing the credit card details back to the
original card.   Still hasn't charged, therefore my CC subscription is
STILL unpaid.

Now I have only 5 days left before my creative cloud subscription expires
and I assume I'll be unable to open my CC applications at all.

If i can't get to talk to anyone at Adobe on the phone,   multiple contacts
to the support centre have come to nothing,   several emails have had no
result,  I dont know what choices I have left.

Apart from going to the NSW Department of Fair Trading and complaining,  or
taking Adobe to the small claims court,   or exploring the possibility of
pirate copies,   what the hell else can I do?I NEED those applications.


-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [cfaussie] Adobe appear to be unable to handle my customer issue - or even talk to me.

2013-11-28 Thread Mike K
Thanks Dale.   Who responds then?Adobe Australia people?   Support
people?  Billing people?



On Fri, Nov 29, 2013 at 2:57 PM, Dale Fraser d...@fraser.id.au wrote:

 Mike,



 I find tweeting @AdobeCare gets great results, give that a try.



 Regards

 Dale Fraser




 --
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [cfaussie] Adobe appear to be unable to handle my customer issue - or even talk to me.

2013-11-28 Thread Mike K
Update:

I had yet another online chat with a support person.   This is the fourth
so far.This time I got quite aggressive with the poor person - he got
full blast.But I managed to get his attention beyond the normal
boilerplate phrases they usually use.( I believe I'm entitled to be a
bit aggressive, because I've been hounding them for nearly a month and had
plenty of promises with no result )  He arranged for someone to phone
me from the billing department.   When i told him I'd been promised that
half a dozen times with no result,  he said he'd make sure I got a call
NOW,  while he was still on the chat.   That way we could be sure a
resolution happened.(Good move on his part I think).

Someone called me  and I gave him my credit card details yet again. I
honestly tried to keep my sarcasm and irritated manner to a minimum but I
don't think i was very successful.

Now I've just received an email advising me that my Creative cloud
membership has been processed.  And it's been extended with 2 months free
as compensation for the trouble I've had.

So I reckon that's a good outcome.   It shouldn't have taken so long to
resolve, but I think at last someone there has shown some good sense and
instead of giving me assurances and promises,   has actually DONE something
about it,  and compensated me for all the hassle they caused.



On Fri, Nov 29, 2013 at 3:12 PM, Kai Koenig grmblz...@gmail.com wrote:

 @AdobeCare is Adobe global customer support. They can be a bit hard to
 deal with, too - but I've seen them successfully helping quite a few people
 I know myself in the past.

 Cheers
 Kai


 Thanks Dale.   Who responds then?Adobe Australia people?   Support
 people?  Billing people?



 On Fri, Nov 29, 2013 at 2:57 PM, Dale Fraser d...@fraser.id.au wrote:

 Mike,



 I find tweeting @AdobeCare gets great results, give that a try.



 Regards

 Dale Fraser





Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [cfaussie] Adobe appear to be unable to handle my customer issue - or even talk to me.

2013-11-28 Thread Mike K
Dale,  I went to the Adobe.com web site and went to support.  There is a
mechanism there if you hunt hard enough and look long enough to get a live
chat to a support person.   You can tell they really dont want you to do it
because it's so well hidden and there are disclaimers about how long a wait
you might have but it's the only way I've found to get to communicate with
an actual person, until your suggestion about using twitter.


On Fri, Nov 29, 2013 at 3:37 PM, Dale Fraser d...@fraser.id.au wrote:

 Was that via adobecare on twitter or elsewhere

 Regards
 Dale Fraser


 Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [cfaussie] Adobe appear to be unable to handle my customer issue - or even talk to me.

2013-11-28 Thread Mike K
Thanks Andrew.  I guess if i have a problem I can describe in 140
characters I'll consider joining twitter and using that method in future.




On Fri, Nov 29, 2013 at 4:01 PM, Andrew Scott andr...@andyscott.id.auwrote:

 The support on twitter is similar to the support you received, difference
 is they respond a lot quicker. If they don't have the answer they will get
 back to you after chasing it up, as with anyone who can forget a quick DM
 to them will remind them to chase it up for you. A lot of the times it is
 their own staff that forget to get back to them.

 I think my experience is the same as others with the support from twitter,
 they do bend over backwards to help there.

 Regards,
 Andrew Scott
 WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411


Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/groups/opt_out.


[cfaussie] How to learn to build mobile apps..

2013-04-18 Thread Mike K
I need to learn how to build mobile apps for iPad/iPhone and Android.

I have been building responsive web sites for mobile devices and think I
have a reasonable understanding of the issues involved with that, but I
have a project coming up that will require a full-on app not just a web
site.

So here's my question to those of you who build mobile apps ... how would I
go about learning this?   Is there a course i can take?   On line course?
Books?Where do i gather the skills?

I dont have a tertiary qualification in programming - everything I've
learned so far I've picked up along the way, so I have quite a steep
learning curve for building mobile apps, I think.


Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.