Re: [cfaussie] CF 11 creating barcodes

2015-04-22 Thread Dmitry Yakhnov

Hi Brian,

I am using BBQ library in one of the projects, had same problem, but in 
CF10.


>> In headless env there is no default font. It causes that text isn't 
added.

http://sourceforge.net/p/barbecue/patches/3/

You have to upgrade to version 1.9-alpha1, which has that patch:

1. Download [trunk] snapshot from 
http://sourceforge.net/p/barbecue/code/HEAD/tree/

2. Unzip file and run build.bat
3. Get barbecue-1.9-alpha1.jar from build/dist folder and replace 
barbecue-1.5-beta1.jar with it


Good luck!

Cheers,
Dmitry.

On 23/04/2015 10:43 AM, Brian Knott wrote:

Hi Guys.
I running the Barbecue barcode application on CF V8.  No issues works 
well.
I'm in the process of doing a migration to CF11.  The barcodes do 
generate but in CF11 there are no numbers below the barcode.  I think 
it has something to do with the font.
I'm running V1.5 beta 1.  Which appears to be the latest version 
http://barbecue.sourceforge.net/
Has anyone had an experience with this product and CF 10 or 11.  Does 
anyone use a different produce to produce barcodes.

Code snippet below.
bc = createobject("java","net.sourceforge.barbecue.Barcode");
bcFactory = 
createobject("java","net.sourceforge.barbecue.BarcodeFactory");
bcEnv = 
createObject("java","net.sourceforge.barbecue.env.EnvironmentFactory");

   os = createobject("java","java.io.FileOutputStream");
   number = orderNumber;
   bcImage = 
createobject("java","net.sourceforge.barbecue.BarcodeImageHandler");

   bc = bcFactory.createCode128("*2175#number#");
   bc.setLabel("*2175 #number#");
   bc.setBarWidth(0.35);
   bcEnv.setHeadlessMode();
   bc.setFont(bcEnv.getEnvironment().getDefaultFont());
   bc.setDrawingText(true);
   bc.setDrawingQuietSection(true);
   fileName = "c:\inetpub\wwwroot\iMine Prod\BBQ\#url.id#.jpg";
   bcImage.writeJPEG(bc, os.init(fileName));
   os.flush();
   os.close();
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 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.


Re: [cfaussie] SOme Sql / Logic assistance

2014-08-27 Thread Dmitry Yakhnov

Hi Gavin,

To me it looks like you have to do QoQ on "stuff" and select distinct 
employeeID. Results will be used for outer loop, instead of original "stuff".


Cheers,
Dmitry.


On August 27, 2014 5:55:18 PM Gavin Baumanis  wrote:


Hi Everyone,

I am having  one of those days when I just can't think creatively and would
like to ask for some help, please.

I realise what I am doing wrong... what I don't have is a sense of how to
do it correctly.
Please, let me give you the details in pseudo-code...

query "stuff" //gets lots of rows
loop stuff
employeeid =  stuff.employeeid[i]
qoq = query of queries from "stuff" all rows that have stuff.employeeid
= employeeid
   qoq also includes a sythetic column of max(date) as maxDate
so all rows of an employee have the same maxDate value
loop qoq
update a different table with a subset of qoq
do stuff based on employee with aggregated employee data


So assuming I have 3 rows of id 20,
I do something like;

update other table
set
columna = qoq.columnA[i],
-- " --   B = qoq.columnB[i],

newDate = maxdate


So the issue I have is that for each of the 3 instances of employeeid = 20
in STUFF, I do 3 updates
What I really want is just to do 1 set of updates per employeeid.
How do I exclude the 2nd and 3rd lot of updates? (in my example of
employeeid appearing 3 times in STUFF?

Obviously it gets worse - the more times a single employee appears in the
initial resultset!


As always thanks!
Gavin.



--
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.


Re: [cfaussie] Unable to read WSDL from URL

2014-07-10 Thread Dmitry Yakhnov

Hi Scott,

This seems to be a well known bug:

https://bugbase.adobe.com/index.cfm?event=bug&id=3531653
https://forums.adobe.com/message/5207697

Cheers,
Dmitry,

On 10/07/2014 10:37 AM, Scott Thornton wrote:


Hi,

I am working with webservices for the first time, and my knowledge is 
very rudimentary.


Scenario:

I need to implement NT Authentication on my intranet app. My CF6.1 
server can't process the  cfntauthenticate tag.


I also have a CF9 9,0,1,274733 server that I can use to process a 
webservice to provide authentication.


So, working locally at present on CF9...

My NTLoginService.cfc looks like :




displayname="Authenticates A User 
Against A Windows Domain"


hint="Authenticates a user against a 
Microsoft Windows Domain" >


displayname="username">


displayname="password">


displayname="domain">



password="#arguments.NTpassword#"



domain="#arguments.NTdomain#"


result="authUser"

listgroups="false"

throwonerror="false">







I hope to return the result of the cfntauthenticate call.

I can browse the cfc via URL http://localhost/login/NTLoginService.cfc 
and see the methods\parameters okay.


But if I browse to http://localhost/login/NTLoginService.cfc?wsdl

I receive the error:

*AXIS error*

Sorry, something seems to have gone wrong... here are the details:

Fault - Error attempting to create Java skeleton for CFC web service.; 
nested exception is:


coldfusion.xml.rpc.CFCInvocationException: 
[java.lang.NullPointerException : null]


AxisFault

faultCode: 
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException


faultSubcode:

 faultString: Error attempting to create Java skeleton for CFC web 
service.; nested exception is:


coldfusion.xml.rpc.CFCInvocationException: 
[java.lang.NullPointerException : null]


faultActor:

 faultNode:

 faultDetail:

{http://xml.apache.org/axis/}hostname:WSHBILL032

If I try to invoke the webservice with :


webservice="http://localhost/login/NTLoginService.cfc?wsdl";


method="loginUserNT"

returnvariable="authentication"

refreshWSDL="yes">





value="#form.domain#"/>




I receive the error:


  Unable to read WSDL from URL:
  http://localhost/login/NTLoginService.cfc?wsdl.



Error: 500 Internal Server Error.

http://localhost/login/ is a IIS virtual directory that points to 
c:\websites\login\


I have restarted the local CF server multiple times.

I wouldn't be surprised if I have missed something simple.

Would any one have any ideas on what to do next? Googling hasn't been 
very informative.


Thanks for any assistance.

--
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.


Re: [cfaussie] ORMExecuteQuery error on CF10

2014-06-11 Thread Dmitry Yakhnov

Hi Stephen,

Usually [undefined array element] error is referring to NULL value:






I am not an expert on ORM, but probably CF is expecting small_int while 
database has null value, so CF holds null until you want to use it 
(display or dump).


And probably CF9 convert is smart enough to convert null to 0, while 
CF10 allows to keep null as value.


The workaround could be to check if element 4 of your array isNull and 
convert it to 0 if required.


Cheers,
Dmitry.

On 11/06/2014 5:22 PM, Stephen M wrote:
I get the following error back as an element of the array returned 
from an ORMExecuteQuery


"[undefined array element] Element 4 is undefined in a Java object of 
type class coldfusion.runtime.Cast$1."


This is on my local dev box which has CF10.  But, on production which 
runs CF9, the same code and the same data run fine.


That element should simply be a small integer.

The first element of the outer array looks like this

C:\www\\views\user\view.cfm 48 - array
1   4340
2   Customer
3   Admin
4 	[undefined array element] Element 4 is undefined in a Java object 
of type class coldfusion.runtime.Cast$1.

5   Customer.Admin
6   0

Element 4 of that inner array should just be 0, 1 or 2.  Why is it 
undefined?


regards,
Stephen
--
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.


Re: [cfaussie] CFIMAP Error

2014-05-14 Thread Dmitry Yakhnov

Hi Brian,

Looking into Java code handling IMAP... it could be Outlook server 
forcibly closing connection (due to maintenance, compression, etc.).


If this is a case, you can try to use cftry -> cfcatch -> cfrethrow 
combination.


Cheers,
Dmitry.

On 15/05/2014 10:41 AM, Brian Knott wrote:

Having issues with CFIMAP and a Outlook server.



I can open a connect (most fo the time) and access email, save 
attachement etc.




The problem is that when i try to move emails form the inbox to an 
archived folder I sometines get an erro rmessage4 saying 'This 
operation is not allowed on a closed folder'.  This works about 50% of 
the time and mail is moved, the rest of the time I get the error.




Code



newfolder="archived/Thiess_prod" >




Anyone see this before?

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 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.


[cfaussie] Re: CF10 Cross Domain sessions with HTTPS

2014-04-02 Thread Dmitry Yakhnov
Hi Phil,

This post seems to be pretty relevant to your problem:
http://www.shilpikhariwal.com/2012/02/how-to-secure-coldfusion-session.html

In the end it says:
*Note: all these configurations we discussed are valid for CF session 
cookies and Authentication cookies. For JSESSIONID, one needs to make 
changes in server related configurations.*

So probably direct edit of config files is involved.

Cheers,
Dmitry.

On Thursday, 3 April 2014 09:26:13 UTC+11, Phil Rasmussen wrote:
>
> Hi Guys
>
> Just wondering if anyone has come across an issue in CF10 whereby sessions 
> are dropped when crossing between HTTP and HTTPS, even though the 
> JSESSIONID is being explicitly passed in these links which had worked for 
> us for over 5 years without fail prior to CF10. From what I have read there 
> appears to be a big change to address the Session Fixation security issues 
> which would explain the HTTP/HTTPS drops but I can't find a workaround for 
> this.
>
> Essentially we have CF10 installed with J2EE Session Management turned on, 
> and the default HTTPOnly set to true. In the application the domain 
> structure looks as follows:
>
> https://book.domain.com
> http://profile.domain.com
> http://approve.domain.com
>
> When crossing between the domains (which had worked for many years prior) 
> the session drops and CF issues a new set of session identifiers. In order 
> to try and bypass the SSL issue, i've switch the entire application over 
> the HTTPS so at no stage will the session or cookies be served over HTTP, 
> which works fine if the user doesn't cross domains, but the moment a 
> different subdomain is clicked (ie to make a booking) then the session 
> drops.
>
> Even setting a cookie  in the onSessionStart() as follows has no effect:
>
> 
>
> Has anyone come across this behaviour migrating to CF10?
>
> Cheers
> Phil
>

-- 
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] Coldfusion Builder 2 is now available to buy or try

2011-05-03 Thread Dmitry Yakhnov
Why do I need to buy CFB, if Eclipse + CFEclipse = FREE !?

-Original Message-

From: Zac Spitzer 

To: cfaussie@googlegroups.com

Date: Tue, 3 May 2011 15:39:10 +1000

Subject: Re: [cfaussie] Coldfusion Builder 2 is now available to buy or try




the pricing is a bloody outrage



$299 USD == $274 AUD, but they list it as $407 AUD



FFS adobe!

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



Re: [cfaussie] Security update: Hotfix available for ColdFusion

2010-08-11 Thread Dmitry Yakhnov
 Procheckup has discovered that the ColdFusion admin console (and 
various programs within) are vulnerable to multiple directory traversal 
attacks related to a input parameter. No authentication is needed; all 
that is needed is that the admin console is accessible to the Internet.


*The exploit strings will be published within seven days.*

http://www.procheckup.com/vulnerability_manager/vulnerabilities/pr10-07


On 12/08/2010 10:22 AM, Steve Onnis wrote:

They couldn't give more information about the actual security issue??

-Original Message-
From: Kai Koenig [mailto:k...@koeni.de]
Sent: Thursday, 12 August 2010 8:39 AM
To: cfugauckl...@googlegroups.com; cfaussie@googlegroups.com
Subject: [cfaussie] Security update: Hotfix available for ColdFusion

Sorry for the crosspost to the NZ and AU lists, but you might want to
install this one rather sooner than later:

http://www.adobe.com/support/security/bulletins/apsb10-18.html

Cheers
Kai

--
Kai Koenig - Ventego Creative Ltd
ph: +64 4 476 6781 - mob: +64 21 928 365 /  +61 450 132 117
web: http://www.ventego-creative.co.nz
blog: http://www.bloginblack.de
twitter: http://www.twitter.com/agentK
--









--
Best regards,
Dmitry.

---
Yakhnov Studio, www.yakhnov.info <http://www.yakhnov.info/>

--
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] Trying To Create A Basic Shopping Cart

2010-06-21 Thread Dmitry Yakhnov
Hi Claude,

 

Run this line of code only once to remove your session variable, which is a
string:

 



 

And here is the correct code:

 













 

Best regards,

Dmitry.

 

---

Yakhnov Studio,  <http://www.yakhnov.info> www.yakhnov.info

  _  

From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of rai...@ozemail.com.au
Sent: Tuesday, June 22, 2010 12:10 AM
To: cfaussie@googlegroups.com; coldfusion-ho...@yahoogroups.com
Subject: [cfaussie] Trying To Create A Basic Shopping Cart

 

Hi

 

I am trying my hand at a basic shopping cart

 

I have found an example online that uses the following code

 













 

 

However the code generates the following error message:

 

Object of type class java.lang.String cannot be used as an array 

 

 

If someone would like to advise where the above code is causing the error
message I would be grateful

Regards

Claude Raiola (B.Econ Acc; B.Hot. Mngt)
Samaris Software
Email: i...@samaris.net <mailto:i...@trackingcentral.om.au> 
Website: www.SAMARIS.net <http://www.TrackingCentral.com.au> 
Mobile: 0414 228 948

 

-- 
You received this message because you are subscribed to the Google Groups
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] Re: JB-HI Moving to dotnet

2010-05-25 Thread Dmitry Yakhnov
Hi guys,

 

Why don't we start Google Wave document to write an Open Letter to Adobe
from ANZ CF developers?

 

There we can discuss what is missing (in terms of communication with Adobe,
hosting issues and problems, better CF learning and education, as well as
promotions and conferences for business people) and what could be done to
fix this situation.

 

Once done, I guess we can forward that letter to Adobe officially.

 

Best regards,

Dmitry.

 

---

Yakhnov Studio,  <http://www.yakhnov.info> www.yakhnov.info

  _  

From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of Mark Mandel
Sent: Wednesday, May 26, 2010 1:43 PM
To: cfaussie@googlegroups.com
Subject: Re: [cfaussie] Re: JB-HI Moving to dotnet

 

So, to be clear - you would like to see a designated person for representing
CF in the ANZ region? Much like Adobe has evangelists in US and EU?

(and I would love to see this as well)

Even if their job was CF AND something else (I actually found out a little
while back that Terry Ryan is actually both a CF and Flash evangelist), I
think that would be a good idea.

On Wed, May 26, 2010 at 1:31 PM, Andrew Scott 
wrote:

All Adobe needs to do is have someone like Ben Forta come along into the
government sector and he can do his magic, it seems that they are doing all
this magic pushing of the product into companies and business in there own
backyard but not the rest of the world.




-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

cf.Objective(ANZ) - Nov 18, 19 - Melbourne Australia
http://www.cfobjective.com.au

Hands-on ColdFusion ORM Training
www.ColdFusionOrmTraining.com

-- 
You received this message because you are subscribed to the Google Groups
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] JB-HI Moving to dotnet

2010-05-24 Thread Dmitry Yakhnov
Hi Dale,

They have changed CEO in February, http://bit.ly/jbhificeo

Best regards,
Dmitry.
 
---
Yakhnov Studio, www.yakhnov.info
-Original Message-
From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of Dale Fraser
Sent: Monday, May 24, 2010 9:13 PM
To: cfaussie@googlegroups.com
Subject: RE: [cfaussie] JB-HI Moving to dotnet

Interesting,

Anyone know who the IT manager is, I'd love to email him about the factors
that led to the decision. 

Regards
Dale Fraser

http://dale.fraser.id.au
http://cfmldocs.com
http://learncf.com
http://flexcf.com

-Original Message-
From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of Dawesi
Sent: Monday, 24 May 2010 4:57 PM
To: cfaussie
Subject: [cfaussie] JB-HI Moving to dotnet

Looks like JB-HI is moving to .net
http://www.seek.com.au/job/software-developer/melbourne-east/17358904/72/1/

Another misinformed IT manager.

-- 
You received this message because you are subscribed to the Google Groups
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.

-- 
You received this message because you are subscribed to the Google Groups
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] Australian Payment Gateways - recommendations?

2010-05-24 Thread Dmitry Yakhnov
Hi Mike,

 

+1 to eWay and/or NetRegistry, http://www.netregistry.com.au/

 

Best regards,

Dmitry.

 

---

Yakhnov Studio,  <http://www.yakhnov.info> www.yakhnov.info

  _  

From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of Mike Kear
Sent: Monday, May 24, 2010 11:24 AM
To: cfaussie
Subject: [cfaussie] Australian Payment Gateways - recommendations?

 

It's a while since I last set up a payment gateway for my clients.  I have
to do another one and I'm updating my research on them.Does anyone have
any recommendations?  Are any of them particularly ColdFusion-friendly?  (I
dont want to have to deal with one like i did years ago with Commonwealth
Bank who told me they dont support ColdFusion because it's not a significant
technology)

 

At this stage I'm not asking about cost structure - that's the easy part to
research.   I'm asking about the other factors.

 

Here's what we need: 

 

Non-bank - if we deal with a third party gateway, we can change banks and
not have a huge problem

Reasonably intelligent support people who know at least something about
coldfusion

Can handle transactions on their own site, but still make the pages look
like our site

Is speed a factor or are they all pretty much the same in terms of
processing speed?

Are there any other non-cost factors I should take into account nowdays?

 

 

I have used Camtech in the past, and they are definitely a possibility.
Does anyone have any recommendations for any others that they think are
better than Camtech?



-- 
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 post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] Coldfusion 9 and Windows server 2008 64bit

2010-05-16 Thread Dmitry Yakhnov
Hm... I am running CF 8.0.1 on 64-bit Ubuntu Hardy in the cloud (Slicehost)
for more than a year already without any problem at all.

Best regards,
Dmitry.
 
---
Yakhnov Studio, www.yakhnov.info
-Original Message-
From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of Steve Onnis
Sent: Monday, May 17, 2010 11:02 AM
To: cfaussie@googlegroups.com
Subject: RE: [cfaussie] Coldfusion 9 and Windows server 2008 64bit

What are the issues?  Going from my experience with CF8 on the 64 bit OS I
wont be running CF on 64bit windows OS anymore 

-Original Message-
From: BarryC [mailto:barrychester...@gmail.com] 
Sent: Monday, 17 May 2010 11:00 AM
To: cfaussie
Subject: [cfaussie] Coldfusion 9 and Windows server 2008 64bit

Hi,

Does anyone on here run coldfusion 9 on windows server 2008, 64 bit?
We are running in to some performance issues which seem to be at an OS level
and I'm wondering if anyone else has used this configuration with success.

Thanks
Barry Chesterman

--
You received this message because you are subscribed to the Google Groups
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.


-- 
You received this message because you are subscribed to the Google Groups
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] looking for CF version 7.02 download

2010-01-12 Thread Dmitry Yakhnov
Hi Stephen,

I have Windows 7.0.1 package and update to 7.0.2 version:

coldfusion-701-win.exe (276Mb)
coldfusion-70-updater2-win.exe (46Mb)


Best regards,
Dmitry.
 
---
Yakhnov Studio, www.yakhnov.info
-Original Message-
From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of Stephen M
Sent: Wednesday, January 13, 2010 1:07 PM
To: cfaussie
Subject: [cfaussie] looking for CF version 7.02 download

I've been searching high and low through the Adobe site for a full
7.02 installation package but I can't find it.  I can find updates and
hotfixes for version 7 but not the full installation. The link from
the CF 7 updater page just throws you back to the CF9 page.

Can anyone point me in the right direction?


-- 
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.




[cfaussie] Re: verity quirks

2008-05-30 Thread Dmitry Yakhnov

Hi Steve,

I guess first part of your question is a correct statement =)

Try to switch to cfLucene if possible, I am using it with number of websites, 
so far only positive experience.

Best regards,
 
Dmitry Yakhnov
Technical Director
 
Yakhnov Studio
http://www.yakhnov.info/

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve 
Onnis
Sent: Friday, May 30, 2008 2:17 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] verity quirks


I have a process of indexing pdf documents and searching but it is driving
me mental

For example, I have a document that has "Victoria" in it. If I search "vic"
I get a result but if I search for "victoria" I get nothing.  Even if I
search for "vict" I get nothing.

Is verity just crap or am I doing something wrong here?

Steve







--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Google PageRank calculated in CF

2008-01-03 Thread Dmitry Yakhnov
Follow me =)

 

http://www.yakhnov.info/go/projects/getrank/

This library will help you to get Alexa Rank and Google PR using ColdFusion.

 

 

Best regards,

 

Dmitry Yakhnov

Technical Director

 

Yakhnov Studio

 <http://www.yakhnov.info/> http://www.yakhnov.info/

  _  

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Taco 
Fleur
Sent: Wednesday, January 02, 2008 11:38 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Google PageRank calculated in CF

 

how do you get it from google without the tool bar?

On 1/2/08, M@ Bourke <[EMAIL PROTECTED]> wrote: 

I thought they simply got the page rank from google, thats the best way to get 
your page rank.
the google tool bar tells you the page rank of each page. 

M@ 



www.clickfind.com.au
blog: http://australian-search-engine.blogspot.com/ 





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ANN: ColdFusion 8 Launch Party - 8th Aug - Melbourne

2007-07-29 Thread Dmitry Yakhnov

If we still have a free pizza, than I am in ;-)

Best regards,
 
Dmitry Yakhnov
Technical Director
 
Yakhnov Studio
http://www.yakhnov.info/
-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark 
Mandel
Sent: Monday, July 30, 2007 9:36 AM
To: cfaussie@googlegroups.com; [EMAIL PROTECTED]
Subject: [cfaussie] ANN: ColdFusion 8 Launch Party - 8th Aug - Melbourne


All! It's a special CF8 Launch party

Location:

NGA.net, Level 2, 17 Raglan St, South Melbourne
Map: http://link.toolbot.com/google.com/73016

When:

8th of August, Meeting starts at 6:30, so get there before hand -
** Please note, we are starting a little bit early this time, due to
the crossover between states.

Agenda:

This is the official ColdFusion 8 Launch Party!

We will have presentations from Ben Forta via Connect, crossovers
between the launch parties at all the other CFUGs across Australia and
New Zealand, and prizes from Adobe for those people that attend!

Everyone is welcome, and if you haven't attended a single CFUG meeting
yet, now is the time to come down!

If you are going to attend, please RSVP to [EMAIL PROTECTED]

See the CFUG Melbourne Calendar at:
http://www.cfcentral.com.au/Events/index.cfm

Or add to your Google Calendar - search for 'CFUG Melbourne'.

As per usual, we'll grab pizza during the evening, so we have
something to scoff down!

Look forward to seeing you all there.

-- 
E: [EMAIL PROTECTED]
W: www.compoundtheory.com





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: SMS providers

2007-06-21 Thread Dmitry Yakhnov
http://www.messagenet.com.au/

 

They have simple SMS and MMS too, but so far I've never tried them :-)

 

http://www.messagenet.com.au/software/ (API)

 

Best regards,

 

Dmitry Yakhnov

Technical Director

 

Yakhnov Studio

 <http://www.yakhnov.info/> http://www.yakhnov.info/

  _  

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Ryan Sabir
Sent: Friday, June 22, 2007 11:48 AM
To: 'cfaussie@googlegroups.com'
Subject: [cfaussie] SMS providers

 

Hi all,

 

Who are people using for interactive SMS services in Australia these days?
Are there any that play nice with the CF SMS gateway? How about MMS?

 

thanks

 


  <http://www.newgency.com/footerImages/logo.gif> 

Ryan Sabir
Technical Director

p: (02) 9274 8030
f: (02) 9274 8099
m: 0411 512 454
w:  <http://www.newgency.com/> www.newgency.com

  <http://www.newgency.com/footerImages/divider.gif> 

Newgency Pty Ltd
Web | Multimedia | eMarketing

115 Cooper St
Surry Hills NSW 2010
Sydney, Australia

 





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: OT: Outlook 2007 RSS Reader

2007-06-13 Thread Dmitry Yakhnov
Hi Dale,

 

 

Double posts sometimes occur as a result of minor changes in posts: (1) you
wrote a post and publish it, (2) found a typo and correct that post, but (3)
feed reader already grab your post in between steps 1 and 2, as well as (4)
feed reader grab your second post, even if GUID field is the same. Most of
the readers do this, not updating post, but creating another one.

 

So far Google Reader suits all my needs ;-)

 

Best regards,

 

Dmitry Yakhnov

Technical Director

 

Yakhnov Studio

 <http://www.yakhnov.info/> http://www.yakhnov.info/

  _  

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, June 14, 2007 8:26 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] OT: Outlook 2007 RSS Reader

 

This is OT but people here probably in the same boat.

 

I'm using Outlook 2007 as a RSS Reader, and can't work out why sometimes, I
entries twice.

 

Strange thing is, it's not all the time, any clues?

 

Regards

Dale Fraser

 

http://dalefraser.blogspot.com

 





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Safari for window

2007-06-13 Thread Dmitry Yakhnov

No, I can browse any website with my installation of Safari with no problem
at all.

But most of websites looks a bit crappy -- lists are broken, colours
inverted, hyperlinks disappears, etc. -- although I definitely know that
some of them were built using MacOS Safari in first instance.

Best regards,
 
Dmitry Yakhnov
Technical Director
 
Yakhnov Studio
http://www.yakhnov.info/

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Haikal Saadh
Sent: Wednesday, June 13, 2007 4:59 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Safari for window


I think Dmitry has been bitten by the URL-Bar-does-not-work bug.

I got bit by it when I tried it on OSX as well.

Andrew Scott wrote:
> Actually it works fine for all our websites as well, but they had already
> been tested for Safari on a Mac. Except www.aegeon.com.au which doesn't
seem
> to have a problem with being shown in Safari.
>
>
>
> Andrew Scott
> Senior Coldfusion Developer
> Aegeon Pty. Ltd.
> www.aegeon.com.au
> Phone: +613  8676 4223
> Mobile: 0404 998 273
>
>
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Dmitry Yakhnov
> Sent: Wednesday, 13 June 2007 4:48 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Safari for window
>
>
> The only website Safari for Windows works fine with is www.apple.com :)
>
> Best regards,
>  
> Dmitry Yakhnov
> Technical Director
>  
> Yakhnov Studio
> http://www.yakhnov.info/
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Steve Onnis
> Sent: Wednesday, June 13, 2007 4:40 PM
> To: cfaussie@googlegroups.com; [EMAIL PROTECTED]
> Subject: [cfaussie] Safari for window
>
>
> Hey all
>
> Don't know how many people know about this but I thought I would post it
> anyway.  There is a Windows version of the Safari browser available from
the
> apple website (http://www.apple.com/safari/download/).  I am giving it a
but
> of a look-see to see if rendering issues are the same for the windows
> version and the MAC version to save me running a MAC just for testing.
>
> Steve
>
>
>
>
>
>
>
>
> >
>
>   






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Safari for window

2007-06-12 Thread Dmitry Yakhnov

The only website Safari for Windows works fine with is www.apple.com :)

Best regards,
 
Dmitry Yakhnov
Technical Director
 
Yakhnov Studio
http://www.yakhnov.info/

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Wednesday, June 13, 2007 4:40 PM
To: cfaussie@googlegroups.com; [EMAIL PROTECTED]
Subject: [cfaussie] Safari for window


Hey all

Don't know how many people know about this but I thought I would post it
anyway.  There is a Windows version of the Safari browser available from the
apple website (http://www.apple.com/safari/download/).  I am giving it a but
of a look-see to see if rendering issues are the same for the windows
version and the MAC version to save me running a MAC just for testing.

Steve






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CFAussie Community Head Count

2007-05-31 Thread Dmitry Yakhnov

ping www.adobe.com -t


Best regards,
 
Dmitry Yakhnov
Technical Director
 
Yakhnov Studio
http://www.yakhnov.info/
-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Matt Voerman
Sent: Friday, June 01, 2007 12:02 PM
To: cfaussie
Subject: [cfaussie] CFAussie Community Head Count


Hi Guys,
Just a quick note to let you guys know that we at the Adobe Australia
office haven't forgotten about you, and do monitor this (and several
other) lists on a regular basis.

We have a couple of Community related irons in the fire and will
communicate more on them as they solidify.

What would be of great help to us in the meantime would be a hands up
(head count) on how many Aussie CF'ers are reading this list on a
regular basis. If you could just ping a response to to this thread
that would be grouse.


Thanks in advance

Matt Voerman

Senior Consultant
Adobe Systems Pacific






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread Dmitry Yakhnov

Nice! Thanks for information sharing.

Hope that Do Not Email Register (domain www.donotemail.gov.au is already
booked, but not active yet) will come alive soon too ;-)

Best regards,
 
Dmitry Yakhnov
Technical Director
 
Yakhnov Studio
http://www.yakhnov.info/

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Stephen M
Sent: Wednesday, May 02, 2007 9:03 PM
To: cfaussie
Subject: [cfaussie] Speaking of new CF sites


http://www.donotcall.gov.au  is now live.

To be officially launched by Senator Helen Coonan (Minister for
Communications) sometime tomorrow (Thursday 3rd), but we've just
opened the firewall because she might mention it on Sunrise (channel
7) at 7.10 am.

I don't have to invite anyone to try and break it because, being
a .gov.au site, I'm pretty sure that there's a few hundred on the job
right now.

The public site is designed for maximum accessibility for maximum
number of users so its pretty simple and straightforward, nothing that
will make you go WOW.  Except maybe after a couple of months when the
telemarketing calls stop.

We're doing some more interesting stuff for the telemarketer industry
site, and the complaints management will be Flex, but that won't be
publicly accessible.

Most of the questions I've asked to the list recently arose while
doing the CF for this site, so thanks to those who responded,
particularly Cliff Lynch, an old mate of mine who now works at
Cogstate.

Have fun.
Stephen






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: OT: Melbourne CFUG

2007-03-15 Thread Dmitry Yakhnov
Hi ppl,

 

I am both hands up for monthly CFUG meetings and even can do presentation on 
OpenID next time.

 

 

Best regards,

 

Dmitry Yakhnov

Technical Director

 

Yakhnov Studio

 <http://www.yakhnov.info/> http://www.yakhnov.info/

  _  

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark 
Mandel
Sent: Thursday, March 15, 2007 11:29 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: OT: Melbourne CFUG

 

All,

I just got off the phone with Steve, we had a good chat, and things aren't 
nearly as heated as they seem to be in email.

Basically we've decided that we will share the load of running and organising 
the CFUG meetings between the two of us, and whoever else wants to help share 
in the responsibility. 

(Dale - willing to put your money where you mouth is and help organise 
presentations? :oD )

This may well be a relatively free form situation where there may be a roster 
to organise a presentation for the coming month(s), but I think it will end up 
being pooled into a combined effort. 

Steve and I both agree that there should be a return to monthly meetings with 
presentations - but there is often difficulty in organising people for every 
single month.  I think that between a group of us, this should mean there will 
be a variety of presentations on a variety of interesting topics. 

Steve and I discussed doing the next meeting post WebDU, so keep your ears to 
the ground for that.

But on that note - 

If *anyone* is willing to step and up and help organise presentations, please 
contact either me, or Steve, and we will coordinate our efforts together. 

Also if anyone is willing to do presentations on pretty much ANYTHING (high 
level, low level, CF related, Database related, Case Study, whatever), please 
contact me, or Steve, and let us know.  

This is the time to really get things happening people, but we really do need 
your help.

Regards,

Mark

On 3/15/07, Dale Fraser <[EMAIL PROTECTED]> wrote:

Steve,

 

I really hope that you're not upset, the tone of that suggests otherwise. I 
really hope that you still come and contribute to the meeting and I'm sure that 
all the regulars do also.

 

I agree with marks Monthly meetings and discussion type sessions, hopefully we 
will get good attendance and build the group.

 

PS: To all the slackers at my work who never attend, I want to see you there 
this year. You know who you are. I've also worked with lots of good people in 
the past who I know silently read this list and never comment, it's time to 
join in, you will learn some good stuff and meet some good people.

 

Regards

Dale Fraser

 

http://dale.fraser.id.au/blog 

 

  _  

From: cfaussie@googlegroups.com [mailto: <mailto:cfaussie@googlegroups.com>  
[EMAIL PROTECTED] On Behalf Of Steve Onnis
Sent: Thursday, 15 March 2007 10:40 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: OT: Melbourne CFUG

 

Its all yours Mark

 

Good luck with it all

 

  _  

From: cfaussie@googlegroups.com [mailto: <mailto:cfaussie@googlegroups.com>  
[EMAIL PROTECTED] On Behalf Of Mark Mandel
Sent: Thursday, 15 March 2007 10:35 AM


To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: OT: Melbourne CFUG

All,

First off, non of this should put down any of the hard work that Steve has put 
into the Vic CFUG, He's done an excellent job over the past few years.

But, Just to be clear on my position here, since people seem to enjoy talking 
on my behalf - 

*   I'm more than happy to be nominated for the Role of CFUG user manager, 
If, and only If Steve wants to step down 
*   I would honestly like to see a return to monthly meetings where there 
is a presentation each month.  I know this is a lot of work, but I have several 
ideas: 

*   Case Studies - people can present work they have done, and discuss what 
went well, and what went bad about it 
*   'Try a Framework' evening. Everyone gets together with their laptops 
and we all get a framework up and running and try out various things in a 
collaborative environement 
*   CF Certification Study groups 
*   Presentation on technologies (i.e. like what we have now) 
*   Multi-session free training on CF (even beginner stuff)

*   NGA.net is still available as a venue (tho we have started filling up 
the space we used last time, but I think we can find somewhere to do it), as 
long as people still like South Melbourne as a venue. 

I think that last year showed that there were plenty of people in the group 
that were more than willing to share their time and their efforts in doing 
multiple presentations, and they were great (big kudos to Bjorn for his Flex 
presos).  We should be able to capitalise on that and really get some momentum 
going.  I have to admit, it does seem a little stop-start. 

But at the end of the day, that is simply my *opinion*, Steve puts in a lot of 
work in

[cfaussie] OpenID

2006-12-12 Thread Dmitry Yakhnov
Hi guys,

 

Has anyone used ColdFusion to implement the OpenID authentication framework?

http://openid.net/

 

There are few implementations in Java, so might be worth to use their
libraries.

 

Best regards,

 

Dmitry Yakhnov

Technical Director

 

Yakhnov Studio

 <http://www.yakhnov.info/> http://www.yakhnov.info/

 



--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---


[cfaussie] Re: Encrypted Source

2006-10-15 Thread Dmitry Yakhnov








Hi Dale,

 

This might be helpful ;-)

http://www.cse.unsw.edu.au/~matthewc/files/cfdecrypt.zip

 



Best regards,

 

Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/











From:
cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dale Fraser
Sent: Friday, October 13, 2006
6:48 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Encrypted
Source



 

I have some encrypted CFM
templates that I need to decrypt.

 

I tried using a tool to
decrypt them but it asks for a password, surely if they need a password to
decrypt CF server must know this password. Can someone tell me where this
lives.

 

Or some other way to decrypt
the files.



Regards
Dale Fraser

http://dale.fraser.id.au


 



 






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "cfaussie" group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: AUTH_USER question

2006-10-02 Thread Dmitry Yakhnov








Hi Grant,

 

What is the problem? Provide
us with more details such as:

- 
What kind of OS do you use, versions of CF and Apache?

- 
What kind of auth do you use? Basic, DB, AD?

- 
What CGI dump is showing?

 

Look at REMOTE_USER
variable as AUTH_USER is not the primary one.

 





Best regards,

 

Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/













From:
cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grant
Sent: Tuesday, October 03, 2006
12:52 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] AUTH_USER
question



 

Hi All

How do you set up apache to pass through the cgi.auth_user values? I can't find
any doc's on it... if someone can help...
*warning* Apache n00b *warning*

Thanks
Grant





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "cfaussie" group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: OT: Best development laptop?

2006-09-07 Thread Dmitry Yakhnov








Do you have time to play
games? J Lucky boy!

 



Best regards,

 

Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/











From:
cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Barnes
Sent: Friday, September 08, 2006
4:08 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: OT: Best
development laptop?



 

I have an ASUS W1J
Laptop, $2,5k plays all the latest games ok, handles quite well with both FLEX
Builder 2, CF7, Photoshop and SQL all running at once. 






On 9/8/06, Scott
Barnes <[EMAIL PROTECTED]>
wrote:



Is there anything you don't sell? hehe

Do the new Apples have Intel now? (ie the dream of having both PC + Apple
software in the one hit through say VMWare alive and well? or is it all
marketing poo?)











On 9/8/06, Robin
Hilliard <[EMAIL PROTECTED] > wrote:





I was going to upgrade my PowerBook G4 but am now delaying a month to
see if the Merom 64-bit version is about to be announced - now THAT is going to
be a seriously high performance laptop :-)



 





Parallels is a completely serious option - 3 or so students in my Flex
2 class were using it to run FlexBuilder2, and it was faster than some of the
native desktops in the classroom.  I also notice that VMware has just
announced a beta for Intel Macs.  You could also just install Windows on
the boot sector - the Apple hardware is nice enough in itself. 





 





Was thinking 15" or 17" Macbook - would go with 17" but
apparently battery usage is a bit higher.





 





Robin





 





Disclaimer: RocketBoots are an Apple reseller $-) 





 











 





On 08/09/2006, at 11:04 AM, Bjorn Schultheiss wrote:







I've been thinking macbookpro running
parallels.

 



 



Regards,

 

Bjorn Schultheiss

Senior Flash Developer

QDC Technologies



 







 



 

















-- 
Regards,
Scott Barnes
http://www.mossyblog.com









-- 
Regards,
Scott Barnes
http://www.mossyblog.com 




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "cfaussie" group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: Getting Rid of FTP

2006-08-14 Thread Dmitry Yakhnov

Hi Jeremy,

You can try to use CFX_HTTP5 (http://www.cftagstore.com/tags/cfxhttp5.cfm)
which can run several http requests simultaneously. They have a trial copy
to play with for free, while commercial copy is US$40 only.

Best regards,
 
Dmitry Yakhnov
Web Developer
http://www.yakhnov.info/
-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of 
Sent: Tuesday, August 15, 2006 11:01 AM
To: cfaussie
Subject: [cfaussie] Getting Rid of FTP


Hey crazy CF'ers,

I have a question for anyone whom uses FTP. I hate it. We have
documents that we transfer from one location to another. The biggest
issue with FTP is how slow it is. IS there a way in CF to transfer the
documents without using FTP, i.e. binary or something like that.

Or am I stuffed here.

Jeremy




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: CF vs ...

2006-08-07 Thread Dmitry Yakhnov








Whatta nice discussion has raised my post, LOL ;-)

 

Jeremy is right that "company directors makes the decisions", not developers;
while my message was about why directors thinking that .NET is better than CF
– trends, jobs market and "someone told me".

 

Best regards,

 

Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Sent: Tuesday, August 08, 2006 9:02 AM
To: cfaussie
Subject: [cfaussie] Re: CF vs ...

 

 

Guys Guys Guys,

 

Like I said many posts ago. Its not only hosting,
trends, and

programmers that are the issue. It is the company
directors that make

the decesions. i.e. I have reason to believe we are
sleeping with the

enemy...(MS that is) and because we get special
"treats" to work in

.NET or convert our CF code over to .NET (god for bid
but its only a

matter of time), owners of companys go "wow that
sounds like a deal".

 

Not to mention I have to deal with brain washed .net
programming morons

coming out of University everyday saying we could do
this or that

better in .NET. idiots.

 

Jeremy (once a CF programmer with a heart, now i'm a
.NET newbie)

p.s. Linux Rox windows sucks.thats for chad!
HAHAHAHAHA

 

 


 




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "cfaussie" group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] CF vs ...

2006-08-07 Thread Dmitry Yakhnov








Hi ppl,

 

Just couple other reasons to move out from CF to
ASP.NET (as few clients told):

 

- 
CF hosting is expensive

- 
Easy to find employees
with Java/.NET experience

- 
Trends to keep everything
around MS

 

 

 



Best regards,

 

Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/



 




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "cfaussie" group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: CF to ASP programmer wanted

2006-07-26 Thread Dmitry Yakhnov

Hi Rod,

I thought that your point was to hire someone with broad knowledge of
languages, who can do job in 2-3 days (looks like advanced level).

I think that better to know one language, but at advanced level, rather than
five at intermediate. There are a lot of guys these days, who knows syntax
of few languages, but lacks of programmer turn of mind, hence we have a lot
of sites with crooked logic and crappy scripts.

The problem of language choice is definitely a business analyst deal, not a
developer, so analyst need to have an open mind and know bits and pieces of
everything to come up with right decision.

I like job ads where people are looking for "Java/ASP/PHP/CF programmer"
(especially the ones who need Admin+DBA+Programmer+Security+Tester in one
person). 

First, select language for your needs, than hire someone at advanced level
to do development in this particular language.


Best regards,
 
Dmitry Yakhnov
Web Developer
http://www.yakhnov.info/
-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, July 27, 2006 12:12 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: CF to ASP programmer wanted


Hi Dmitry,

So your trying to say there is no point in learning a new language unless
your a guru at it? How does one become at guru at any language (or surgery
for that matter) unless they start learning and using it at the beginner's
level? I'm not quite sure what your trying to say here? My point was
simply ppl should remain open minded and look at all options, cfml is
great but for some cases / projects other languages are better. What is
your point?

rgds
Rod

>
> Hi Rod,
>
> Why not to learn something "in addition"?
>
> If you are driving a car with automatic transmission, it might be good to
> learn how to drive a manual transmission car, while could be useful to
> learn
> how to drive a bus, or even a train, not talking about tank or jet. Anyway
> its pretty the same damn things with purpose to transport you from point A
> to point B, why not to gain something "in addition"?
>
> Do you want to be in surgery with dude, who mostly learnt something "in
> addition" or with the one, who has a real clue in his business?
>
> Best regards,
>
> Dmitry Yakhnov
> Web Developer
> http://www.yakhnov.info/
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
> Behalf
> Of [EMAIL PROTECTED]
> Sent: Thursday, July 27, 2006 11:21 AM
> To: cfaussie@googlegroups.com
> Cc: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: CF to ASP programmer wanted
>
>
> One thing I have always wondered on this list is why developers limit
> themselves to only cfml? Sure cfml is a great language that is easy to
> learn but vbscript, php, .Net, jsp, svg, even vrml all have their place in
> the development realm - well maybe not vrml anymore. Why not just learn as
> much as you can so you can develop in what ever language your clients
> require? Doesn't it enable you to improve your skillset, enable you to
> find work more easily and also give your clients a range of choices? With
> visual studio 2005 (and the features it ships with such as ui components)
> using a framework like atlas, .Net programming *can* be as quick as cfml
> coding.
>
> I personally don't mind working in any language, but I prefer cfml.
>
>>
>> Don't think so...
>>
>> What I think we can conclude is that this is the wrong list if you are
>> looking for someone who *wants* to work in ASP! ;)
>>
>> B)
>>
>>
>> Steve Onnis wrote:
>>> Have we concluded if its ASP or ASP.Net he needs?
>>>
>>> -Original Message-
>>> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
>>> Behalf
>>> Of Barry Beattie
>>> Sent: Wednesday, 26 July 2006 9:02 PM
>>> To: cfaussie@googlegroups.com
>>> Subject: [cfaussie] Re: CF to ASP programmer wanted
>>>
>>>
>>> sigh!
>>>
>>> pleze don't start another pissing contest on who's used what
>>> language the longest. it's such a bore!
>>>
>>> I suggest if yiu're *really* interested go look it up on wikipedia. I
>>> think CF is a touch older than asp but since there was a really good
>>> interview with Jeremy Allaire covering this, I invite ppl to track it
>>> down and have a read
>>>
>>> ... it's not helping Graham find someone
>>>
>>>
>>> On 7/26/06, M@ Bourke <[EMAIL PROTECTED]> wrote:
>>>> "11 years ago I chose CFML over ASP for the most productive language."
>>>>
>>>> does that mean ASP is older then CFML ?
>>>>
>>>>
>>
>>
>> >
>>
>
>
>
>
>
>
>
> >
>







--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: CF to ASP programmer wanted

2006-07-26 Thread Dmitry Yakhnov

Hi Rod,

Why not to learn something "in addition"?

If you are driving a car with automatic transmission, it might be good to
learn how to drive a manual transmission car, while could be useful to learn
how to drive a bus, or even a train, not talking about tank or jet. Anyway
its pretty the same damn things with purpose to transport you from point A
to point B, why not to gain something "in addition"?

Do you want to be in surgery with dude, who mostly learnt something "in
addition" or with the one, who has a real clue in his business?

Best regards,
 
Dmitry Yakhnov
Web Developer
http://www.yakhnov.info/
-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, July 27, 2006 11:21 AM
To: cfaussie@googlegroups.com
Cc: cfaussie@googlegroups.com
Subject: [cfaussie] Re: CF to ASP programmer wanted


One thing I have always wondered on this list is why developers limit
themselves to only cfml? Sure cfml is a great language that is easy to
learn but vbscript, php, .Net, jsp, svg, even vrml all have their place in
the development realm - well maybe not vrml anymore. Why not just learn as
much as you can so you can develop in what ever language your clients
require? Doesn't it enable you to improve your skillset, enable you to
find work more easily and also give your clients a range of choices? With
visual studio 2005 (and the features it ships with such as ui components)
using a framework like atlas, .Net programming *can* be as quick as cfml
coding.

I personally don't mind working in any language, but I prefer cfml.

>
> Don't think so...
>
> What I think we can conclude is that this is the wrong list if you are
> looking for someone who *wants* to work in ASP! ;)
>
> B)
>
>
> Steve Onnis wrote:
>> Have we concluded if its ASP or ASP.Net he needs?
>>
>> -Original Message-
>> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
>> Behalf
>> Of Barry Beattie
>> Sent: Wednesday, 26 July 2006 9:02 PM
>> To: cfaussie@googlegroups.com
>> Subject: [cfaussie] Re: CF to ASP programmer wanted
>>
>>
>> sigh!
>>
>> pleze don't start another pissing contest on who's used what
>> language the longest. it's such a bore!
>>
>> I suggest if yiu're *really* interested go look it up on wikipedia. I
>> think CF is a touch older than asp but since there was a really good
>> interview with Jeremy Allaire covering this, I invite ppl to track it
>> down and have a read
>>
>> ... it's not helping Graham find someone
>>
>>
>> On 7/26/06, M@ Bourke <[EMAIL PROTECTED]> wrote:
>>> "11 years ago I chose CFML over ASP for the most productive language."
>>>
>>> does that mean ASP is older then CFML ?
>>>
>>>
>
>
> >
>







--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Calling Page

2006-07-17 Thread Dmitry Yakhnov








Hi Dale,

 

If you will have a look at
{your_path}\CFusionMX7\wwwroot\WEB-INF\debug\classic.cfm example, following
code could be used to trace down calling stack:

 

 

 













 

 

 

 

Best regards,

 

Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/

 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of
Dale Fraser
Sent: Friday, July 14, 2006 1:26 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Calling Page

 

 

Haha,

 

It's purely for logging

 

Ie

 

Ice.cfc ran @ 12:45pm called by Decrypt.cfc

 

Regards

Dale Fraser

 

 

 

 

-Original Message-

From: cfaussie@googlegroups.com
[mailto:[EMAIL PROTECTED] On Behalf

Of Barry Beattie

Sent: Friday, 14 July 2006 13:23 PM

To: cfaussie@googlegroups.com

Subject: [cfaussie] Re: Calling Page

 

 

Dale, are you really sure you want to tie your CFC up
with whatever

view runs the request?

 

sure I don't know the full details but are you
*really, really, REALY*

sure that's what you want inside your CFC?

 

forgive me for asking, I heard an "alarm"
ringing...

("the bells! the bells!")

 

 

 

On 7/14/06, Blair McKenzie <[EMAIL PROTECTED]>
wrote:

> GetCurrentTemplatePath()

> 

> As for the component that calls a given function,
possibly caller scope is

> available (like in tags/modules) but you may have
to pass it into the

> function as an argument.

> 

> Blair

> 

> 

> 

> On 7/14/06, Dale Fraser <[EMAIL PROTECTED]>
wrote:

> >

> > Not sure that's what I want.

> >

> > From a cfc I need to be able to work out.

> >

> > What page called me

> >

> > Or

> >

> > What component called me

> >

> > Regards

> > Dale Fraser

> >

> >

> >

> >

> > -Original Message-

> > From: cfaussie@googlegroups.com
[mailto:[EMAIL PROTECTED] On

> Behalf

> > Of 

> > Sent: Friday, 14 July 2006 11:10 AM

> > To: cfaussie

> > Subject: [cfaussie] Re: Calling Page

> >

> >

> > I can by puttin it in the url. Like a refer.
then I program it so it

> > says I'm coming from this component.

> >

> > Is that what you mean?

> >

> > Jeremy

> >

> >

> >

> >

> >

> >

> > > >

> >

> 

 

 

 

 


 




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "cfaussie" group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: TONIGHT : Melbourne Coldfusion Design and Development User Group Meeting (Was CFUG)

2006-06-22 Thread Dmitry Yakhnov

Hi Mark,

I would like to thank you for your excellent presentation and new ideas and
techniques you shared with us.

Many thanks to Steve, who did organise the venue and made this event
happened as well as nice Macromedia and WebDU t-shirts.

Thanks for other mates, who did manage to arrive, even later.

That was my first CFUG meeting in Melbourne and it went well, but I was
quite disappointed to be the only newcomer at this event.

Anyway it was a good start and I hope to have such meetings on regular basis
and might be contributing to it at some point.

Best regards,
 
Dmitry Yakhnov
Web Developer
http://www.yakhnov.info/

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Mark Mandel
Sent: Friday, June 23, 2006 10:26 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: TONIGHT : Melbourne Coldfusion Design and
Development User Group Meeting (Was CFUG)


Guys,

I was a bit dissapointed to see that the majority of people who came
down to the meeting where mostly the guys that I had pulled down from
work.

We had a total of 6 people at the meeting, including myself and Steve
- and 3 of the others were people I work with.

Considering that every 3 months or so we have a huge flame war about
how apparently there are no CF jobs out there - I would have thought
there would have been more people around looking to boost the strength
of Coldfusion in out local area.

What's going on guys? What can we do to get this User Group up and
running again?

Mark


On 6/22/06, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> With the merger complete between Macromedia into  Adobe, a new User Group
has been formed to roll the ColdFusion User Group and  Macromedia User Group
in a super group called the ColdFusion Design and  Development User Group.
This new group will not only cover the  "classic" ColdFusion development
topics, but will also begin to cover other  developer and design products
such as FLASH, Photoshop, PDF development and  other Adobe products. Moving
away from our past core audience of developers, we  will be looking at
expanding into the design audience introducing them to  website development
techniques and introducing developers to the design product  set, giving
everyone something to look forward to.
>
> Our next  scheduled meeting for the Victorian ColdFusion Design and
Development User Group  will be Thursday, the 22nd of June, at VTR
Consulting starting at 7:00pm.
>
> VTR  Consulting has moved and is now  located at Level 2, 212 Barkly
Street, St Kilda.
>
> Special guest presenter Mark Mandel,  will be giving us all a run down on
his open source project "Transfer Object  Relational Mapping" library for
ColdFusion.
>
> Transfer automates the process of writing a Data  Access Object and
Business Object code by generating Business Objects on the fly  and
automating the SQL for creating, reading, updating and deleting these
objects.
>
> The presentation will look at what an Object  Relational Mapping tool
does, the capabilities of Transfer, how to use it, and a  small example
application. Visit http://www.compoundtheory.com/transfer/ to check out what
it's all about.
>
> We will also be taking a look at using Video in FLASH  and a short FLASH
Remoting primer for those people who are looking at embarking  on using
FLASH and ColdFusion together.
>
> The introduction of a short but sweet Tips and Tricks  segment will be our
closing. This segment is designed to shed some light on some  cool program
shortcuts and tricks to make developing and designing that much  faster.
This meeting we will be looking at some nifty Adobe Photoshop shortcuts  to
make your life easier.
>
> As always there will be giveaways, giveaways and more  giveaways including
books, t-shirts and webDU merchandise from the last webDU  Conference in
Sydney.
>
> After the meeting we can go to one of the many  pubs/cafes nearby for a
drink or a feed.
>
> Just a reminder about the CFAUSSIE lists, anyone who  isn't registered
should be. It's the best place to get help or even just have a  rant:P
> Go to the cfaussie  google group to  register.
>
> To subscribe to the ,  send an email to [EMAIL PROTECTED] with
SUBSCRIBE in the subject line.
>
> Hope to see you there.
-- 
E: [EMAIL PROTECTED]
W: www.compoundtheory.com
ICQ: 3094740





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Images in email

2006-02-19 Thread Dmitry Yakhnov








Hi Brian,

 

Do you want to put image inside
the message or as an attachment?

 

Here is a quote from
official CFMX7 online documentation:

 

Including images in a message

You
can use the cfmailparam to include images from other files in an HTML message, as follows:


 Put a cfmailparam tag for each image following the cfmail start tag. 
 In each cfmailparam tag, do the following 
 
  Set the file attribute to the location of the image.
  Specify disposition="inline"
  Set the contentID attribute to a unique identifier; for example, myImage1.
 
 In the location in your HTML where you
 want the message included, use an img tag such as the following: 


4.   

The
following example shows a simple mail message with an inline image. In this
case, the image is located between paragraphs, but you could include it
directly inline with the text. To test this example, replace the cfmail to parameter
with a valid email address and change the file parameter to the path to a valid image.

  to = "[EMAIL PROTECTED]"  from = "[EMAIL PROTECTED]"  subject = "Sample inline image">     disposition="inline"   contentID="image1">   There should be an image here       This text follows the picture

 

 



Best regards,

 

Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/











From:
cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KNOTT, Brian
Sent: Monday, February 20, 2006
3:34 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Images in
email



 

Has any one got a good example of using cfmailparam
to include a image in a mail message.

 

Brian Knott

---


This e-mail is
sent by Suncorp-Metway Limited ABN 66 010 831 722 or one of its related
entities "Suncorp". 

Suncorp may be
contacted at Level 18, 36 Wickham Terrace, Brisbane or on 13 11 55 or at
suncorp.com.au. 

The content of
this e-mail is the view of the sender or stated author and does not necessarily
reflect the view of Suncorp. The content, including attachments, is a
confidential communication between Suncorp and the intended recipient. If you
are not the intended recipient, any use, interference with, disclosure or
copying of this e-mail, including attachments, is unauthorised and expressly
prohibited. If you have received this e-mail in error please contact the sender
immediately and delete the e-mail and any attachments from your system. 

If this e-mail
constitutes a commercial message of a type that you no longer wish to receive
please reply to this e-mail by typing Unsubscribe in the subject line. 






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "cfaussie" group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: CFDIRECTORY dateModified accuracy

2006-02-19 Thread Dmitry Yakhnov








Hi Ryan,

 

Try to use this function:

http://cflib.org/udf.cfm?ID=126

 

If this would not help,
please provide us with more details, like CF version, OS version, example of
code, etc.

 



Best regards,

 

Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/











From:
cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Sabir
Sent: Monday, February 20, 2006
11:38 AM
To: 'cfaussie@googlegroups.com'
Subject: [cfaussie] CFDIRECTORY
dateModified accuracy



 



Heya,





 





I'm checking the modified date of a file using CFDIRECTORY, and
its returning the mod date down to the minute. But I need it more accurate than
this, I need to know the actual second the file was modified.





 





Is there a way to find out the exact mod date for a file?





 





thanks.





 





 




 
  
  
  
  
  Ryan
  Sabir
  Technical Director
  
  p:
  (02) 9274 8030
  f:
  (02) 9274 8099
  m:
  0411 512 454
  w:
  www.newgency.com
  
  
  
  
  
  Newgency Pty Ltd
  Web | Multimedia | eMarketing
  
  224 Riley St
  Surry Hills NSW 2010
  Sydney, Australia
  
 




 








--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "cfaussie" group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---