Re: CF and blogging API

2005-08-24 Thread Andrea Veggiani
 Yep, they really do... ditto for the server applications. The problem is a 
 result of some folks ignoring specs, and some folks creating new ones. You 
 basically have three choices:

 (1) Strictly adhere to the metaWeblog API, and simply come up with a list 
 of clients that are compatible with you. Sadly, that's only going to 
 amount to a handful.

 (2) Ignore the spec and try to duplicate whatever Movable Type is sending 
 down the wire. You'll get broader client support that way,
 but you'll be chasing the moving target of someone else's implementation.

 (3) Strictly adhere to the original Blogger API. You'll be able to use 
 just about every client app ever made, but you'll face serious limitations 
 in the way of features.

I think i could choose 1 and 3 options and then let the user to choice what 
to use.

 Personally, I'd recommend implementing a mail2blog interface and saving 
 yourself the trouble. I've had the option to post entries via a 
 third-party client
 for at least a couple years no, but I've never once used it for a real 
 entry... meanwhile, I post via email from my cellphone all the time.

 The real world often favors more primitive solutions that nonetheless 
 *work*.

I'm implementing this type of interface too, just i'd like to have also 
support for the above API.

Thanks for the info :)

Bye
Andrea Veggiani



-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.338 / Virus Database: 267.10.15/80 - Release Date: 23/08/2005


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216150
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Using CF to restrict characters displayed in CFOutput

2005-08-24 Thread Ian Vaughan
Hi

In my CF Output how can I restrict for example the contents of #output#
from the database to the first 200 characters ?


TIA

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216151
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Building a dynamic menu from a database

2005-08-24 Thread Mike Kear
I've reached the critical point where I have to get another mind on
this ... I have a CMS where I'm building the navigation and sitemap
from a database, and it's just not coming out quite right.  Does
anyone have an example I could look at to see where perhaps I'm
missing something?

I have a table containing page structures, 

Each page has an ID. (Fieldname: RandID)
Each page is owned by another page (The one higher in the hierarchy)
(fieldname: OwnerID)
Each page belongs to a section (that's the top page in the heirarchy,
just under the home page). (Fieldname: SectionID = the RandID of the
top page in that section)
Each page can 'own' other pages, as many levels down as makes sense,
so there is no fixed number of levels.

What I need to do is build a series of nested unordered lists along
the lines of:

ul
liHome page/li
liSection 1
  ul
  liSub page 1/li
  liSub page 2
 ul
  liSub sub page 1/li
  liSub sub page 2/li
   /ul
 /li
 liSub page 3/li
  /ul
   /li
li Section 2  etc etc 

etc 


It's the correct markup of the nested unordered lists that's giving me
trouble.  Every time I think I've got it right, I find I haven't.   
There are nested loops and queries and CFC calls, and I think i might
have tried to get so clever I've bamboozled myself. g


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

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216152
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Using CF to restrict characters displayed in CFOutput

2005-08-24 Thread Mike Kear
Assuming you're outputting a string called stringvar, You can use
left(stringvar, 200)  if you dont care if a word is cut in half,  but
if you want it to get only complete words up to a max of 200
characters, there's a cool UDF you can get from the library at
CFLIB.ORG  (http://www.cflib.org) called FullLeft.   It takes the
number of characters you specify, then truncates a little more until
it comes to a space.   Then you'll display 190, 195 chars etc  but
only whole words.

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



On 8/24/05, Ian Vaughan [EMAIL PROTECTED] wrote:
 Hi
 
 In my CF Output how can I restrict for example the contents of #output#
 from the database to the first 200 characters ?
 
 
 TIA
 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216153
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: PHP equivalent of...

2005-08-24 Thread Geoff Bowers
On 8/24/05, Bryan Stevenson [EMAIL PROTECTED] wrote:
 Looking for the PHP equivalent of:
 
 cfif FindNoCase('foo',CGI.USER_AGENT)
   some text
 /cfif

Don't think there is an answer to your specific question (looks like
others have already given you a decent one anyway) -- but you might
find this fledgling website of use:
  http://cftophp.pbwiki.com/ 

-- geoff
http://www.fullasagoog.com/

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216154
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Using CF to restrict characters displayed in CFOutput

2005-08-24 Thread Ian Vaughan
Thanks for the UDF Mike -  works just as I want it to.

 

-Original Message-
From: Mike Kear [mailto:[EMAIL PROTECTED] 
Sent: 24 August 2005 09:00
To: CF-Talk
Subject: Re: Using CF to restrict characters displayed in CFOutput

Assuming you're outputting a string called stringvar, You can use
left(stringvar, 200)  if you dont care if a word is cut in half,  but if
you want it to get only complete words up to a max of 200 characters,
there's a cool UDF you can get from the library at
CFLIB.ORG  (http://www.cflib.org) called FullLeft.   It takes the
number of characters you specify, then truncates a little more until
it comes to a space.   Then you'll display 190, 195 chars etc  but
only whole words.

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



On 8/24/05, Ian Vaughan [EMAIL PROTECTED] wrote:
 Hi
 
 In my CF Output how can I restrict for example the contents of 
 #output# from the database to the first 200 characters ?
 
 
 TIA
 




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216155
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Building a dynamic menu from a database

2005-08-24 Thread Will Tomlinson
Dunno if this helps mike, but Interakt has a DW extension for it. Free trial I 
believe. 

http://www.interaktonline.com/Products/Free-Products/MXTreeMenu/Overview/

Will

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216156
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: PHP equivalent of...

2005-08-24 Thread Michael Tangorre
 From: Russ [mailto:[EMAIL PROTECTED] 
 Why not if 
 (stristr(strtolower($_SERVER['HTTP_USER_AGENT']),foo)) then?

There are a variety of ways to arrive at the same result, pick one.



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216157
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: fusebox security plugin

2005-08-24 Thread wolf2k5
On 8/23/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 as well as TheOffice which shows a more advanced example

I cannot find it, do you have an URL?

Thanks.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216158
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Building a dynamic menu from a database

2005-08-24 Thread Greg Morphis
If using Oracle you could use the START WITH / CONNECT BY functions to
get the ordered list. If it's just for display, you could use LPAD
with LEVEL to pad the children.

SELECT LABEL, SECTION_ID, TITLE, PARENT_ID, DESCR, TESTPLAN_ID, 
LPAD(LABEL,LENGTH(LABEL) + LEVEL,'  ') AS DALABEL, LEVEL
FROM TESTPLAN_SECTIONS ts
WHERE testplan_id = cfqueryparam cfsqltype=cf_sql_numeric
value=#url.tpid# /
START WITH parent_id = 0 
CONNECT BY PRIOR section_id = parent_id
ORDER SIBLINGS BY LABEL

On 8/24/05, Will Tomlinson [EMAIL PROTECTED] wrote:
 Dunno if this helps mike, but Interakt has a DW extension for it. Free trial 
 I believe.
 
 http://www.interaktonline.com/Products/Free-Products/MXTreeMenu/Overview/
 
 Will
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216159
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: URL string not working... HELP!

2005-08-24 Thread Sharon Creese
cfquery name=getcatalog datasource=#Request.App.datasource#
SELECT
  PC.CategoryID, C.CategoryName, PC.SubCatID, PC.ProductID, SC.SubCatName,
P.ProductName,
  P.ShortDescription, P.LongDescription, P.Price,P.SmallImage,
P.LargeImage,P.Status,P.Company,p.proddoc
FROM ProductsCategories PC,Categories C,SubCategories SC,Products P
WHERE  C.CategoryID = PC.CategoryID
AND SC.SubCatID = PC.SubCatID
AND  P.ProductID = PC.ProductID
AND P.Status = 'Yes'
ORDER BY P.ProductName
/cfquery

cfquery name=getProductDetail dbtype=query
SELECT ProductID, ProductName, Price, LongDescription, LargeImage,Company
FROM getCatalog
WHERE ProductID = cfqueryparam  cfsqltype=CF_SQL_VARCHAR
value=#URL.thisProduct#
/cfquery

ERROR:

There is a problem with the page you are trying to reach and it cannot be
displayed.

HTTP 500 - Internal server error
Internet Explorer

- Original Message - 
From: Russ [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Tuesday, August 23, 2005 11:01 PM
Subject: RE: URL string not working... HELP!


 Can you post the new code you're using?  Also what error are you getting?


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216160
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: URL string not working... HELP!

2005-08-24 Thread Dave Watts
 ERROR:
 
 There is a problem with the page you are trying to reach and 
 it cannot be displayed.
 
 HTTP 500 - Internal server error
 Internet Explorer

That's not very useful. To display more detail about an error, enable
Robust Exception Information within the CF Administrator, and disable
Friendly HTTP Error Messages within Internet Explorer.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216161
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: URL string not working... HELP!

2005-08-24 Thread Sharon Creese
  Error Executing Database Query.

  Query Of Queries runtime error.
  Unsupported type comparison.

  The error occurred in
C:\CFusionMX\wwwroot\oec\securecart\Queries\qry_getProductDetail.cfm: line 8
  Called from C:\CFusionMX\wwwroot\oec\securecart\index.cfm: line 72
  Called from
C:\CFusionMX\wwwroot\oec\securecart\Queries\qry_getProductDetail.cfm: line 8
  Called from C:\CFusionMX\wwwroot\oec\securecart\index.cfm: line 72

6 : SELECT ProductID, ProductName, Price, LongDescription,
LargeImage,Company
7 : FROM getCatalog
8 : WHERE ProductID = cfqueryparam  cfsqltype=CF_SQL_VARCHAR
value=#URL.thisProduct#
9 : /cfquery
10 :


- Original Message - 
From: Dave Watts [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, August 24, 2005 7:19 AM
Subject: RE: URL string not working... HELP!


  ERROR:
 
  There is a problem with the page you are trying to reach and
  it cannot be displayed.
 
  HTTP 500 - Internal server error
  Internet Explorer

 That's not very useful. To display more detail about an error, enable
 Robust Exception Information within the CF Administrator, and disable
 Friendly HTTP Error Messages within Internet Explorer.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!


 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216162
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: URL string not working... HELP!

2005-08-24 Thread Ken Ferguson
Why are you doing this query of queries??? What is it that you are 
trying to accomplish which you don't think can be done in the one single 
query, getCatalog? Are you really running that whole getCatalog query 
when you don't need all of the items?

--Ferg

Sharon Creese wrote:

cfquery name=getcatalog datasource=#Request.App.datasource#
SELECT
  PC.CategoryID, C.CategoryName, PC.SubCatID, PC.ProductID, SC.SubCatName,
P.ProductName,
  P.ShortDescription, P.LongDescription, P.Price,P.SmallImage,
P.LargeImage,P.Status,P.Company,p.proddoc
FROM ProductsCategories PC,Categories C,SubCategories SC,Products P
WHERE  C.CategoryID = PC.CategoryID
AND SC.SubCatID = PC.SubCatID
AND  P.ProductID = PC.ProductID
AND P.Status = 'Yes'
ORDER BY P.ProductName
/cfquery

cfquery name=getProductDetail dbtype=query
SELECT ProductID, ProductName, Price, LongDescription, LargeImage,Company
FROM getCatalog
WHERE ProductID = cfqueryparam  cfsqltype=CF_SQL_VARCHAR
value=#URL.thisProduct#
/cfquery

ERROR:

There is a problem with the page you are trying to reach and it cannot be
displayed.

HTTP 500 - Internal server error
Internet Explorer

- Original Message - 
From: Russ [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Tuesday, August 23, 2005 11:01 PM
Subject: RE: URL string not working... HELP!


  

Can you post the new code you're using?  Also what error are you getting?






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216163
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: URL string not working... HELP!

2005-08-24 Thread Claude Schneegans
 I ytird yjr following but it still fails

Could it be that you've got the Y at the wrong place on your keyboard?

(Sorry, I couldn't resist ;-)

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216165
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: URL string not working... HELP!

2005-08-24 Thread Claude Schneegans
When you say It's not working, try to be more specific:
- any error message?
- is it that the query does not return records?

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216164
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: URL string not working... HELP!

2005-08-24 Thread Claude Schneegans
 ERROR:

 There is a problem with the page you are trying to reach and it cannot be
 displayed.

Ah ah! Now this is an information.
The error is in the url not passed correctly, noting to do with the query.
Use URLEncodedFormat() to pass the parameter to the URL.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216166
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Need help to open a door!

2005-08-24 Thread Matthew Small
Write a VB.NET Web service and call it from CF.

 
Matthew Small


-Original Message-
From: Catherine Madsen [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 23, 2005 5:31 PM
To: CF-Talk
Subject: Need help to open a door!

Hi,

I'm creating a CF application that needs to interact with a component board 
to open a door.  The board we have came with SoftWire, a VB plug in. Is it 
possible to use VB.Net framework components with CF or create COM objects 
from those components? And if yes, how is it done? I'm pretty lost right 
now, Softwire can't help and I couldn't find anything useful on web.  I 
hope there's somebody out there who can help me.
Thanks,
Catherine




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216167
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Symantec AntiVirus for Dedicated Web Server...

2005-08-24 Thread Mike Chabot
We used to run Norton AV Corporate on our servers. It noticeably
slowed down the servers during a full scan. A couple Web servers
routinely got so bogged down with the virus scanning that they started
rejecting a large number of new Web connections until the scanning
stopped. So I would not recommend using Norton AV on your Web servers,
unless you only do limited scans of certain folders, such as folders
people upload files to. I would imagine that there are better AV
programs for servers. Leo Laporte recommended NOD32 over Norton AV on
his KFI radio show last week, although he was talking about desktops.

We had been running these crippling virus scans for years, and there
was not a single virus detected across 15 servers during that time.
Our workstation computers had been routinely ransacked by viruses that
came trough E-mail, but our servers never got infected. The main
things to watch out for are these software vulnerability exploits,
such as all the IIS hacks and the slammer worm. I am pretty sure most
AV software does not help with these security exploits.

If you want to reduce the CPU impact of virus scanning on your
computers, below is my list of AV exclusion rules to minimize the
amount of scanning that is done.

Some files and file extensions to exclude:
-Files that could not possibly contain a virus (log, txt)
-Database files (mdb, ldb, mdf, ldf, ndf, trn, bak, fp5,fp7)
-System event logs (evt)
-Pagefile.sys should be automatically excluded by most virus scanners.
-C:\Program Files\Microsoft SQL Server\MSSQL\FTDATA

Some directories that should be excluded from real-time protection:
-The Recycle bin (a waste of resources)
-Folders used for logging (logging will be slowed)
-Folder used in backup processes (a waste of resources)
-Folder that are actively used that will never contain a virus

As an aside, I would also not use screen savers on servers. I saw one
server a few weeks ago that was running a fancy 3D OpenGL screen saver
on a server attached to a 16 port KVM switch. The screen saver was
taking up 70% of the CPU (because servers do not have 3D graphics
cards in them), for something nobody ever saw because the monitor was
turned off 99% of the time. It was crazy.

Enjoy,
Mike Chabot

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216168
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Symantec AntiVirus for Dedicated Web Server...

2005-08-24 Thread Dan O'Keefe
Dan, I think that is correct for Symantec, they really do not sell a
single server license, at least they did not the last time I checked.
You can use Mcafee or the free one at http://www.clamwin.com/.

Dan

On 8/22/05, Dan G. Switzer, II [EMAIL PROTECTED] wrote:
 Anyone know which is the correct license to buy for loading Symantec
 AntiVirus on a dedicated web server? They only sell licenses in packs of 5
 or 10 (depending on the product.) The license, to me, is vague. It says you
 need a license for each computer connecting to the computer via the
 network--but I'm also reading that to be each computer that's connected via
 the domain. I can't find anything about a specific web-based license.
 
 Any ideas? I need to get this AntiVirus software installed ASAP, but need to
 buy the correct license first.
 
 -Dan
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216169
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Old saw: jrun.exe out of control

2005-08-24 Thread Eric J. Hoffman
Out of the blue, jrun.exe is going bananas on me.  Every four hours I have to 
reboot.
 
I am sure others dealt with this, any advice?  I have the cumulative hotfixes 
to number 3 installed, etc, everything is up to date.  Besides performing an 
exorcism?
 
Thanks.
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216170
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Symantec AntiVirus for Dedicated Web Server...

2005-08-24 Thread Ken Ferguson
We've been running E-Trust for over a year on our servers and it works 
perfectly for us.

Dan O'Keefe wrote:

Dan, I think that is correct for Symantec, they really do not sell a
single server license, at least they did not the last time I checked.
You can use Mcafee or the free one at http://www.clamwin.com/.

Dan

On 8/22/05, Dan G. Switzer, II [EMAIL PROTECTED] wrote:
  

Anyone know which is the correct license to buy for loading Symantec
AntiVirus on a dedicated web server? They only sell licenses in packs of 5
or 10 (depending on the product.) The license, to me, is vague. It says you
need a license for each computer connecting to the computer via the
network--but I'm also reading that to be each computer that's connected via
the domain. I can't find anything about a specific web-based license.

Any ideas? I need to get this AntiVirus software installed ASAP, but need to
buy the correct license first.

-Dan









~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216171
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old saw: jrun.exe out of control

2005-08-24 Thread Eric J. Hoffman
look out...thought...its been exactly 90 days since the installation, I bet CF 
is trying to do something with client variables..we have them stored in the SQL 
server and maybe something is funky in that task?
 
I have been searching the archives and saw this one thing mentioned that seems 
to apply directly to my Win 2003/iis/CF 7 box. 



From: Eric J. Hoffman [mailto:[EMAIL PROTECTED]
Sent: Wed 8/24/2005 8:10 AM
To: CF-Talk
Subject: Old saw: jrun.exe out of control



Out of the blue, jrun.exe is going bananas on me.  Every four hours I have to 
reboot.

I am sure others dealt with this, any advice?  I have the cumulative hotfixes 
to number 3 installed, etc, everything is up to date.  Besides performing an 
exorcism?

Thanks.





~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216172
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Displaying CFM name instead of File name

2005-08-24 Thread Paul Susemichel
Being new to ColdFusion, the following issue has me
stumped. I am supporting a site that allows the user
to click on a file link and the corresponding
application opens and displays the document.
However, the name that is displayed is the name of the
CF page, not the name of the file. Using CF Help as
well as searching on the internet, it appears that the
following code should work:

cfheader name=Content-Disposition value=inline;
filename=#filename#
cfcontent type=#cont_type# file=#file_path# 

For example, for one of the files that is an audio
file, I have confirmed that 'filename' =
my_audio.mp3; 'cont_type' = audio/mpeg; and
'file_path' contains the full path of the file. The
Windows Media Player (WMP) opens correctly and plays
the audio file, but the name that appears in WMP is
the name of the CF page -- i.e. file_viewer.cfm --
instead of my_audio.mp3.  If I substitute
attachment for inline, then the Save As dialog
shows the correct name -- my_audio.mp3 for this
example.  We would prefer not to make them save each
link they click on.  This issue appears to be related
to Microsoft products -- this happens for MS Word, MS
Excel, WMP, etc.  However, files like PDFs and ZIP
files open the appropriate application and display the
correct name.

Any suggestions would be appreciated.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216173
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Stat app recommendation

2005-08-24 Thread Dan O'Keefe
I would second awStats, especially as a good starting point. Not too
bad to set up and might give you everything you need. You do have to
install Perl though if you are not already running that.

Dan

On 8/18/05, Russ [EMAIL PROTECTED] wrote:
 Awstats is always worth a look... http://awstats.sourceforge.net/  Can't
 beat free...
 
 
 
 -Original Message-
 From: Dawson, Michael [mailto:[EMAIL PROTECTED]
 Sent: Thursday, August 18, 2005 4:53 PM
 To: CF-Talk
 Subject: RE: Stat app recommendation
 
 This is an excellent product for only $80.
 
 http://www.weblogexpert.com/
 
 We had WebTrends, but they changed their license scheme from
 server-based, to the number of hits they capture.
 
 This would cost us around $3,500 each year to keep WebTrends.  You have
 to buy a license pack in amounts of 5,000,000 hits or more.
 
 WT also sucked up one of our best servers just to keep it runnnig
 reasonably fast.
 
 We dropped WT like a rock.
 
 M!ke
 
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216174
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Session Scoped Login with CFC

2005-08-24 Thread Buntin, Seth - KATE
I have talked about this before (and even had a working copy but deleted
it) and I am going to ask it again.

 

I am using Model-Glue for this application and I want to setup an admin
login system with the cfc's below.

 

My error that I am getting is:

Element ADMIN.ISLOGGEDIN is undefined in VARIABLES.

 

adminLoginController.cfc:

 

cfcomponent name=adminLoginController
displayname=adminLoginController hint=Admin Login Controller
extends=ModelGlue.Core.Controller

cffunction name=Init access=Public
returnType=adminLoginController output=false hint=I build a new
adminLoginController

  cfargument name=ModelGlue required=true
type=ModelGlue.ModelGlue /

  cfargument name=InstanceName required=true
type=string /

  cfset super.Init(arguments.ModelGlue) /

 

  cfreturn this /

/cffunction

 

cffunction name=paramAdmin access=public
returntype=void output=false hint=If session.admin does not exist,
create it.

cfif not structKeyExists( session, 'admin' )

cflock scope=session timeout=10
type=exclusive

cfif not
structKeyExists( session, 'admin' )

cfset
session.admin = createObject('component',
'designcompanycfm.model.adminLogin').init() /

/cfif

/cflock

/cfif

/cffunction  



cffunction name=getAdmin access=public output=false
hint=Return the admin object.

cfset paramAdmin() /

cfreturn session.admin /

/cffunction



cffunction name=adminLogin access=public output=false
hint=Login

cfargument name=username required=true /

cfargument name=password required=true /

cflock scope=session timeout=10
type=exclusive

cfset
getAdmin().login(arguments.username, arguments.password) /

/cflock

/cffunction



cffunction name=setDisplayName access=public
returntype=void displayname=Set Display Name output=false
hint=Set the display name of the user.

cfargument name=displayname type=string
required=yes /

cfset paramAdmin() /

cflock scope=session timeout=10
type=exclusive

cfset
getAdmin().setDisplayName(arguments.displayname) /

/cflock

/cffunction



cffunction name=getDisplayName output=false hint=Get
the user's display name.

cfreturn getAdmin().getDisplayName() /


/cffunction  



cffunction name=setIsLoggedIn access=public
returntype=void displayname=Set Is Logged In output=false
hint=Set the logged in status of the user.

cfargument name=isLoggedIn type=boolean
required=yes /

cfset paramAdmin() /

cflock scope=session timeout=10
type=exclusive

cfset
getAdmin().setIsLoggedIn(arguments.isLoggedIn) /

/cflock

/cffunction



cffunction name=getIsLoggedIn output=false hint=Get
the variable to see if the user is logged in.

cfreturn getAdmin().getIsLoggedIn() /

/cffunction

/cfcomponent

 

adminLogin.cfc:

cfcomponent name=adminLogin displayname=adminLogin hint=Admin
Login

cffunction name=init
returntype=designcompanycfm.model.adminLogin output=false

cfparam name=variables.admin
default=#structNew()# /

cfreturn this /

/cffunction



cffunction name=getAdmin access=public output=false
hint=Return the user object.

cfreturn this /

/cffunction



cffunction name=login output=false

cfargument name=username type=string
required=true /

cfargument name=password type=string
required=true /

cftry



cfcatch



/cfcatch



/cftry

/cffunction



cffunction name=setIsLoggedIn output=false hint=Set
the variable to see if the user is logged in.

cfargument name=value type=boolean
required=true default=false

cfset 

RE: Old saw: jrun.exe out of control

2005-08-24 Thread Dustin Snell [Network Automation]
This is happening to us as well and it is driving us nuts If anyone can
provide any guidance it would be greatly appreciated.

-Dustin Snell
Network Automation, Inc

-Original Message-
From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 24, 2005 6:11 AM
To: CF-Talk
Subject: Old saw: jrun.exe out of control

Out of the blue, jrun.exe is going bananas on me.  Every four hours I have
to reboot.
 
I am sure others dealt with this, any advice?  I have the cumulative
hotfixes to number 3 installed, etc, everything is up to date.  Besides
performing an exorcism?
 
Thanks.
 
 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216176
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfdocument stopped working

2005-08-24 Thread Pete Ruckelshaus
I've seen this, but only as a result of my own bad code.  Check your
code or post it here.

Pete

On 8/23/05, dan martin [EMAIL PROTECTED] wrote:
 I have been using cfdocument to print to pdf for a while now. Messing with 
 html and css to get the pdf to look right. All of a sudden no pdf's print 
 out. Not even a simple hello. The browser is a blank screen.
 
 I restarted cf server, checked the logs, and restarted my browser. Any ideas 
 how to get it to do something again? Is there a specific service for cfdoc?
 
 Please help.
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216177
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: (Security) Nigerian Scam Artist CAUGHT!

2005-08-24 Thread Ewok
Serving suggestion: http://www.sendaturd.com/
Ha! That would be unbelievably funny! 

 I caught my Nigerian Scam friend!
 Good going!!


-Original Message-
From: Clark Slater [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 23, 2005 9:32 PM
To: CF-Talk
Subject: RE: (Security) Nigerian Scam Artist CAUGHT!

Stil haven't figured out exactly how to handle giving him a USPS tracking
number. hm...

Will


Serving suggestion: http://www.sendaturd.com/




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216178
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Old saw: jrun.exe out of control

2005-08-24 Thread S . Isaac Dealey
 Out of the blue, jrun.exe is going bananas on me.  Every
 four hours I have to reboot.

 I am sure others dealt with this, any advice?  I have the
 cumulative hotfixes to number 3 installed, etc, everything
 is up to date.  Besides performing an exorcism?

 Thanks.


If you think it might be client variable related, disable global
client variable updates in CF Admin. Or whatever it's called. :P



s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216179
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfdocument stopped working

2005-08-24 Thread Matthew Blatchley
Pete,

I haven't ran into issues with the PDF not showing up, but we've been 
working with it for a while too and have worked out a lot of the problems 
with the formatting and css.  If you need any answers let me know off list 
and I may be able to help you out if you get into a hole.

Matt 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216180
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old saw: jrun.exe out of control

2005-08-24 Thread kola.oyedeji
Anything in the logs? Any out of memory errors?

 -Original Message-
 From: Dustin Snell [Network Automation]
 [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2005 13:39
 To: CF-Talk
 Subject: RE: Old saw: jrun.exe out of control
 
 This is happening to us as well and it is driving us nuts If anyone
can
 provide any guidance it would be greatly appreciated.
 
 -Dustin Snell
 Network Automation, Inc
 
 -Original Message-
 From: Eric J. Hoffman [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 24, 2005 6:11 AM
 To: CF-Talk
 Subject: Old saw: jrun.exe out of control
 
 Out of the blue, jrun.exe is going bananas on me.  Every four hours I have
 to reboot.
 
 I am sure others dealt with this, any advice?  I have the cumulative
 hotfixes to number 3 installed, etc, everything is up to date.  Besides
 performing an exorcism?
 
 Thanks.
 
 
 
 
 
 ~
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216181
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old saw: jrun.exe out of control

2005-08-24 Thread Micha Schopman
That does not solve the problem, it only covers the problem up. What
does SQL Profiler tell you, what is happening in terms of SQL Server
traffic? 

Maybe Macromedia can come up with an answer, my guess is you are not the

only one with this bug.

Micha Schopman
Project Manager

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380



-
Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
de interactie met uw doelgroep. 
Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
informatie zie www.modernmedia.nl 


-
-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] 
Sent: woensdag 24 augustus 2005 15:39
To: CF-Talk
Subject: Re: Old saw: jrun.exe out of control

 Out of the blue, jrun.exe is going bananas on me.  Every
 four hours I have to reboot.

 I am sure others dealt with this, any advice?  I have the
 cumulative hotfixes to number 3 installed, etc, everything
 is up to date.  Besides performing an exorcism?

 Thanks.


If you think it might be client variable related, disable global
client variable updates in CF Admin. Or whatever it's called. :P



s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216182
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SPAM-LOW: Re: cfdocument stopped working

2005-08-24 Thread Matthew Blatchley
Meant to say out of a hole :)

 Pete,

I haven't ran into issues with the PDF not showing up, but we've been
 working with it for a while too and have worked out a lot of the problems
 with the formatting and css.  If you need any answers let me know off list
 and I may be able to help you out if you get into a hole.

 Matt

 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216183
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Get fields in an Access table

2005-08-24 Thread Steve Bryant
Does anyone know a way to get the all fields (and datatypes) from a table in MS 
Access using ColdFusion?

Thanks!

Steve Bryant
Bryant Web Consulting LLC
http://www.BryantWebConsulting.com/
http://steve.coldfusionjournal.com/

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216184
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old saw: jrun.exe out of control (found issue)

2005-08-24 Thread Eric J. Hoffman
Okay, I think I have found the issueit was trying to run some file over and 
over.  
 
I removed the directory as it wasn't in use any longer.  Here's the freak show: 
 I removed all scheduled tasks, etc, mappings, etc to the Fusetalk Forums that 
was firing up this query over and over.  I even deleted *all* scheduled tasks 
for now.
 
Restarted.  
 
Now, it just gives me an error file not found in the exception.log every thirty 
seconds.  At least memory has stabilized, my i/o just getting some love now.   
But the server is staying up.
 
Stopped the IIS website even that was where the forums were stored.  Restarted 
CF.  Same flippin thing happening.
 
NOW, how can this be?  Is there a file that contains/runs certain scheduled 
tasks that in some way may not have properly deleted this process...I started 
to look for a scheduled task xml file somewhere but not real certain where its 
stored.  I mean, it starts right from the get go like a dog after a bone.
 
Any thoughts from other server guys on this one?



From: Micha Schopman [mailto:[EMAIL PROTECTED]
Sent: Wed 8/24/2005 9:53 AM
To: CF-Talk
Subject: RE: Old saw: jrun.exe out of control



That does not solve the problem, it only covers the problem up. What
does SQL Profiler tell you, what is happening in terms of SQL Server
traffic?

Maybe Macromedia can come up with an answer, my guess is you are not the

only one with this bug.

Micha Schopman
Project Manager

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380



-
Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
de interactie met uw doelgroep.
Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
informatie zie www.modernmedia.nl


-
-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]
Sent: woensdag 24 augustus 2005 15:39
To: CF-Talk
Subject: Re: Old saw: jrun.exe out of control

 Out of the blue, jrun.exe is going bananas on me.  Every
 four hours I have to reboot.

 I am sure others dealt with this, any advice?  I have the
 cumulative hotfixes to number 3 installed, etc, everything
 is up to date.  Besides performing an exorcism?

 Thanks.


If you think it might be client variable related, disable global
client variable updates in CF Admin. Or whatever it's called. :P



s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm








~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216185
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Get fields in an Access table

2005-08-24 Thread Ewok
I cant remember exactly step by step but there are hidden system tables in
access that you'll need to uncover and give read access to in the actual
..mdb file. I did post the full how-to some time back so just check the
archives for my name and access maybe. Id just tell you if I remembered :)

Ewok

-Original Message-
From: Steve Bryant [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 24, 2005 11:40 AM
To: CF-Talk
Subject: Get fields in an Access table

Does anyone know a way to get the all fields (and datatypes) from a table in
MS Access using ColdFusion?

Thanks!

Steve Bryant
Bryant Web Consulting LLC
http://www.BryantWebConsulting.com/
http://steve.coldfusionjournal.com/



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216186
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: I love CSS :-)

2005-08-24 Thread Damien McKenna
I must say that I simply love CSS.  Being able to pixel-perfectly
position things, adjust font styles, etc, its all marvelous!

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include stdjoke.h


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216187
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Get fields in an Access table

2005-08-24 Thread RADEMAKERS Tanguy
you can get the column names by querying the table and then looking at
yourqueryname.columnList, but i don't know how you can get datatypes...

there was an article a way back in CFDJ (leveraging JDBC or just
fetching coffee?) that talked about using the underlying JDBC api from
cf, but they mentioned that access has some limitations in terms of jdbc
support...

good luck!

/t 

-Original Message-
Subject: Get fields in an Access table
From: Steve Bryant [EMAIL PROTECTED]
Date: Wed, 24 Aug 2005 11:39:39 -0400
Thread: 
http://www.houseoffusion.com/cf_lists/index.cfm/method=messages
threadid=41882forumid=4#216184

Does anyone know a way to get the all fields (and datatypes) 
from a table in MS Access using ColdFusion?

Thanks!

Steve Bryant
Bryant Web Consulting LLC
http://www.BryantWebConsulting.com/
http://steve.coldfusionjournal.com/

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216188
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Need help to open a door!

2005-08-24 Thread Catherine Madsen
Thanks for your suggestions, we don't really want to deploy the .NET framework 
just for a door controller (anyway, I have no experience with it and need to 
replace the existing system fast) and we don't have CFEXECUTE turned on our 
server (security reasons), so I was wondering if anybody knows of a I/O device 
that comes with a COM object?  We have an electronic shop and they'll be able 
to adapt any device to open the doors, I just need something I can use with CF. 
Last resort, we could use the serial port and have CF print to a decoder, but 
then I would not be able to read the status of the doors, which is acceptable 
but bot ideal.
Thanks again for your help,

Catherine   



Write a VB.NET Web service and call it from CF.

 
Matthew Small


-Original Message-
From: Catherine Madsen [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 23, 2005 5:31 PM
To: CF-Talk
Subject: Need help to open a door!

Hi,

I'm creating a CF application that needs to interact with a component board 
to open a door.  The board we have came with SoftWire, a VB plug in. Is it 
possible to use VB.Net framework components with CF or create COM objects 
from those components? And if yes, how is it done? I'm pretty lost right 
now, Softwire can't help and I couldn't find anything useful on web.  I 
hope there's somebody out there who can help me.
Thanks,
Catherine

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216189
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Get fields in an Access table

2005-08-24 Thread Claude Schneegans
 Does anyone know a way to get the all fields (and datatypes) from a 
table in MS Access using ColdFusion?

Yes, and much more: see CFX_ODBCInfo here:
http://www.contentbox.com/claude/customtags/ODBCInfo/E/TestODBCInfo.cfm?p=hf

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216190
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Get fields in an Access table

2005-08-24 Thread Claude Schneegans
 I cant remember exactly step by step but there are hidden system 
tables in
 access

This will give you a list of all tables, but forget about columns and 
types :-(

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216192
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old saw: jrun.exe out of control (found issue)

2005-08-24 Thread Dustin M Snell [Network Automation]
This is very interesting. We use Fusetalk over here as well. Problem is, I
don't want to disable it because we actively use it! Can you be more
specific about what exactly you need to do to fix the problem? Does it
require discontinuing use of Fusetalk altogether?

-Dustin Snell
Network Automation, Inc

-Original Message-
From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 24, 2005 8:46 AM
To: CF-Talk
Subject: RE: Old saw: jrun.exe out of control (found issue)

Okay, I think I have found the issueit was trying to run some file over
and over.  
 
I removed the directory as it wasn't in use any longer.  Here's the freak
show:  I removed all scheduled tasks, etc, mappings, etc to the Fusetalk
Forums that was firing up this query over and over.  I even deleted *all*
scheduled tasks for now.
 
Restarted.  
 
Now, it just gives me an error file not found in the exception.log every
thirty seconds.  At least memory has stabilized, my i/o just getting some
love now.   But the server is staying up.
 
Stopped the IIS website even that was where the forums were stored.
Restarted CF.  Same flippin thing happening.
 
NOW, how can this be?  Is there a file that contains/runs certain scheduled
tasks that in some way may not have properly deleted this process...I
started to look for a scheduled task xml file somewhere but not real certain
where its stored.  I mean, it starts right from the get go like a dog after
a bone.
 
Any thoughts from other server guys on this one?



From: Micha Schopman [mailto:[EMAIL PROTECTED]
Sent: Wed 8/24/2005 9:53 AM
To: CF-Talk
Subject: RE: Old saw: jrun.exe out of control



That does not solve the problem, it only covers the problem up. What
does SQL Profiler tell you, what is happening in terms of SQL Server
traffic?

Maybe Macromedia can come up with an answer, my guess is you are not the

only one with this bug.

Micha Schopman
Project Manager

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380



-
Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
de interactie met uw doelgroep.
Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
informatie zie www.modernmedia.nl


-
-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]
Sent: woensdag 24 augustus 2005 15:39
To: CF-Talk
Subject: Re: Old saw: jrun.exe out of control

 Out of the blue, jrun.exe is going bananas on me.  Every
 four hours I have to reboot.

 I am sure others dealt with this, any advice?  I have the
 cumulative hotfixes to number 3 installed, etc, everything
 is up to date.  Besides performing an exorcism?

 Thanks.


If you think it might be client variable related, disable global
client variable updates in CF Admin. Or whatever it's called. :P



s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm










~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216191
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: XML generation with CF

2005-08-24 Thread julian
Greetings all,
I've successfully used the XmlNew(), XmlElemNew()functions to create an XML 
document, add elements, attributes etc based on the results of several queries.
I need to add the !DOCTYPE declaration to define the DTD being used. CFMX 
generated the ?xml version=1.0 encoding=UTF-8 ? line automatically. I 
can't find a way to write the !DOCTYPE declaration before the beginning of 
the definition of the root element using this form of the syntax.
I've also tried using the CFXML tag to no avail.
Any ideas about how to place something between the autogenerated ?xml 
statement and the beginning of the element definitions?
tia,
Julian

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216193
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: I love CSS :-)

2005-08-24 Thread Pete Ruckelshaus
Welcome to 1997?

Css does indeed rule, and I use it exclusively for presentation layer
chrome.  Makes it really easy to repurpose code for use on other
sites, I have a core set of .class and #id definitions that are part
of every site/corresponding CSS file that I write.  I just wish that
CSS files included some level of logic and variable setting
capability, my color schemes tend to have 3-6 core colors and it would
be much nicer to be able to set each color once as a variable and then
call it whenever needed.  Sure, I can do that with CF but I prefer
straight CSS files because they get cached by the client.

Pete

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216195
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: PHP equivalent of...

2005-08-24 Thread Bryan Stevenson
Thanks Mike/Geoff/Russ.just one more questionhow do ya close the 
IF?? ;-)

My assumptions:

the line below sets a var equal to the lower case user agent
$user_agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );

the line below checks the condition I asked about
if (stristr($user_agent, foo))

.but where would my text go between the opening and closing of the IF and 
how does the IF close?

TIA

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216197
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT: I love CSS :-)

2005-08-24 Thread Damien McKenna
My comment isn't to say that I've only just discovered it, I've been
using it for years though have only gotten into css-p in the past two
years.  I just had a few lightbulb moments this morning while working on
a design and just wanted to share the meme :)

As for multiple color schemes, I'm hitting that myself.  What I'm going
to do is have a master CSS file that sets defaults and then load
optional styles that only have definitions for colors to update the
earlier settings.  Should work fine.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include stdjoke.h


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216196
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old saw: jrun.exe out of control

2005-08-24 Thread S . Isaac Dealey
 That does not solve the problem, it only covers the
 problem up. What
 does SQL Profiler tell you, what is happening in terms of
 SQL Server
 traffic?

Well that's not entirely accurate... If the problem is in fact
unnecessary global client updates, then turning them off does indeed
solve the problem. It wasn't the problem in this case, I was just
throwing out a suggestion to troubleshoot it.


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216199
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


iTEXT

2005-08-24 Thread Snake
 
I have been asked to install iText on a shared server, but it seems that it
could potentially be unsafe to do so as I would imagine iText has   the
ability to read/file files anywhere on the server seeing as java components
are not affected by a security sandbox.
 
Can anyone tell me if this is an issue.
 
 
thanks
 
Russ


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216200
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFINDEX - how to add/update a single record in an existing collection?

2005-08-24 Thread Pete Ruckelshaus
I ended up taking Dave's query for a single record approach because it
simplified a number of things.  Because of the nature of the app, I
update some of the data one column at a time, but it still needs to be
indexed immediately.  I have a CFC with an updateCollection method
that I just pass a collection name and record ID.

Followup question.  What contributes to the degradation of verity
collections?  Will updating single records in a collection kill verity
search performance?  What strategy should I take with
repairing/optimizing collections...scheduled task to do it hourly, or
would just once a day suffice?

Thanks for the help,

Pete

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216198
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: PHP equivalent of...

2005-08-24 Thread Damien McKenna
 -Original Message-
 From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
 
 Thanks Mike/Geoff/Russ.just one more questionhow do 
 ya close the IF?? ;-)

Either:

if(condition)
{
multiple;
statements;
}
elseif(condition)
{
multiple;
statements;
}
else
{
multiple;
statements;
}

Or

if(condition)
single statement;
elseif(condition)
single statement;
else
single statement;

Or

if(condition):
statement;
statement;
elseif(condition):
statement;
statement;
else:
statement;
statement;
endif;

Plenty flexible.  Note that the first two are interchangeable, basically
if you have multiple statements you need parenthesiseses otherwise you
can get by without them, and for the second format you just have to use
the keywords if, elseif, else with a colon and end with endif
with a semi-colon.

http://us3.php.net/manual/en/language.control-structures.php#control-str
uctures.if
http://us3.php.net/manual/en/control-structures.alternative-syntax.php

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include stdjoke.h

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216201
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfdocument stopped working

2005-08-24 Thread dan martin
 I've seen this, but only as a result of my own bad code.  Check your
 code or post it here.
 
 Pete
 
 On 8/23/05, dan martin [EMAIL PROTECTED] wrote:
  I have been using cfdocument to print to pdf for a while now. 
 Messing with html and css to get the pdf to look right. All of a 
 sudden no pdf's print out. Not even a simple hello. The browser is a 
 blank screen.
  
  I restarted cf server, checked the logs, and restarted my browser. 
 Any ideas how to get it to do something again? Is there a specific 
 service for cfdoc?
  
  Please help.
  
  


here's the code:
cfdocument format=PDF
blah!
/cfdocument

as you can see, I've simplified it to remove any possibility of coding 
mistakes. Also, I have another piece of code in a different area that was 
working yesterday and was not changed at all in two weeks and no longer works.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216202
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: I love CSS :-)

2005-08-24 Thread Jim McAtee
Use CF to generate your CSS.


- Original Message - 
From: Pete Ruckelshaus [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, August 24, 2005 10:47 AM
Subject: Re: OT: I love CSS :-)


 Welcome to 1997?

 Css does indeed rule, and I use it exclusively for presentation layer
 chrome.  Makes it really easy to repurpose code for use on other
 sites, I have a core set of .class and #id definitions that are part
 of every site/corresponding CSS file that I write.  I just wish that
 CSS files included some level of logic and variable setting
 capability, my color schemes tend to have 3-6 core colors and it would
 be much nicer to be able to set each color once as a variable and then
 call it whenever needed.  Sure, I can do that with CF but I prefer
 straight CSS files because they get cached by the client.

 Pete

 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216204
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: PHP equivalent of...

2005-08-24 Thread Bryan Stevenson
Thanks for helping the lazy Damien (too much going on today to look it up 
myself) ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216203
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: I love CSS :-)

2005-08-24 Thread Pete Ruckelshaus
Yeah, what I have done in the past is use @import statements to import
CSS files based upon need.  What I generally do is have a fonts CSS
file, a structure CSS file, a media CSS file, and a color scheme
CSS file.  This allows for multiple color schemes, 2 or 3 column
layout for a given page, print, screen, or handheld, and different
font faces/sizes -- definitely a must, especially if you're
co-branding a web site).

The downside to the multiple CSS file apprach is that it can be a real
bear to administer -- adding or deleting a selector in one file means
that you should do the same to the remaining files.  I got to the
point where I had to write a databased CSS administration app in CF
that published CSS files to the server.

Pete

On 8/24/05, Damien McKenna [EMAIL PROTECTED] wrote:
 My comment isn't to say that I've only just discovered it, I've been
 using it for years though have only gotten into css-p in the past two
 years.  I just had a few lightbulb moments this morning while working on
 a design and just wanted to share the meme :)
 
 As for multiple color schemes, I'm hitting that myself.  What I'm going
 to do is have a master CSS file that sets defaults and then load
 optional styles that only have definitions for colors to update the
 earlier settings.  Should work fine.
 
 --
 Damien McKenna - Web Developer - [EMAIL PROTECTED]
 The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
 #include stdjoke.h
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216205
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Newsletter Manager Suggestions

2005-08-24 Thread Emmet McGovern
Does anyone have any experiences with the various mailing list managers out
there?  We need to get one and was hoping for some recommendations.

Emmet



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216206
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Stupid custom tag question

2005-08-24 Thread Barney Boisvert
Is there a way to, in the opening tag of a custom tag, tell the custom
tag to skip evaluation of it's body?

p:mytag
  i don't want to do this
/p:mytag

mytag.cfm:
cfif this.executionMode EQ start
  cfexit method=goToJustAfterClosingTag /
/cfif

Thanks,
barneyb

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216207
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Stupid custom tag question

2005-08-24 Thread Barney Boisvert
Whoops, I screwed up.  I want to skip the body, but still execute the
closing tag.  So that should be method=goToJustBEFOREClosingTag. 
Not sure what I was thinking.  To complete the thought,
method=exittag does what I described below, but that's NOT what I
want.

On 8/24/05, Barney Boisvert [EMAIL PROTECTED] wrote:
 Is there a way to, in the opening tag of a custom tag, tell the custom
 tag to skip evaluation of it's body?
 
 p:mytag
   i don't want to do this
 /p:mytag
 
 mytag.cfm:
 cfif this.executionMode EQ start
   cfexit method=goToJustAfterClosingTag /
 /cfif
 
 Thanks,
 barneyb
 
 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.
 


-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216208
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


PayPal subscription problems

2005-08-24 Thread Stan Winchester
I have successfully tested a subscriptions application using the PayPal Sandbox 
with no problems. When I switch to the live PayPal server I get the following 
message in six different languages:

=
We are sorry that we are experiencing temporary difficulties. Please try again 
later.

Message 3515
=

I am able to get to the PayPal payment page and it displays the subscription 
order with no problems. It shows the first month is free and subsequent months 
are $12/month. However, when I enter my user name and password to make payment 
I get the before mentioned error message.

Here is the form that is submitted to PayPal:

form action=https://www.paypal.com/cgi-bin/webscr; method=post

input type=hidden name=cmd value=_xclick-subscriptions
input type=hidden name=upload value=1

The below has been changed to hide the PayPal account
input type=hidden name=business value=[EMAIL PROTECTED]

input type=hidden name=return 
value=http://www.keihatsu.us/signup/thankyou.cfm;
input type=hidden name=image_url 
value=http://www.keihatsu.us/images/images/keihatsu_large.gif;
input type=hidden name=cancel_return 
value=http://www.keihatsu.us/paypalcancel.cfm;
input type=hidden name=no_shipping value=1
input type=hidden name=rm value=2

input type=hidden name=a1 value=0
input type=hidden name=p1 value=1
input type=hidden name=t1 value=M

input type=hidden name=a3 value=12
input type=hidden name=p3 value=1
input type=hidden name=t3 value=M

input type=hidden name=item_name value=Philosophy
input type=hidden name=item_number value=Philosophy101

input type=hidden name=src value=1
input type=hidden name=sra value=1

input type=hidden name=invoice value=1017
input type=hidden name=no_note value=1
div align=center
input type=image src=http://www.paypal.com/en_US/i/btn/x-click-but6.gif; 
name=submit alt=Make payments with PayPal - it’s fast, free and 
secure!
/div
/form

I would like to know what causes this error and what I can do to fix it.

Thank you,
Aftershock Web Design, Inc.
by: Stan Winchester
President/Developer
[EMAIL PROTECTED]
http://www.aftershockweb.com/
Phone 503-244-3440
Fax 503-244-3454



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216209
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: I love CSS :-)

2005-08-24 Thread Kevin Graeme
Congrats! There's a lot to love about CSS. There's also a LOT to make you
tear your hair out. If you haven't seen it yet and are looking for a
discussion list like this one but for CSS, I highly recommend
http://www.css-discuss.org/ .

---
Kevin Graeme
Cooperative Extension Technology Services
University of Wisconsin-Extension
 

 -Original Message-
 From: Damien McKenna [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, August 24, 2005 10:14 AM
 To: CF-Talk
 Subject: OT: I love CSS :-)
 
 I must say that I simply love CSS.  Being able to 
 pixel-perfectly position things, adjust font styles, etc, its 
 all marvelous!
 
 --
 Damien McKenna - Web Developer - 
 [EMAIL PROTECTED] The Limu Company - 
 http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216194
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Newsletter Manager Suggestions

2005-08-24 Thread Snake
Not CF, but www.webwizguide.com do a free one.

 

-Original Message-
From: Emmet McGovern [mailto:[EMAIL PROTECTED] 
Sent: 24 August 2005 18:21
To: CF-Talk
Subject: Newsletter Manager Suggestions

Does anyone have any experiences with the various mailing list managers out
there?  We need to get one and was hoping for some recommendations.

Emmet





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216210
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Newsletter Manager Suggestions

2005-08-24 Thread Eddie Awad
On 8/24/05, Emmet McGovern [EMAIL PROTECTED] wrote:
 Does anyone have any experiences with the various mailing list managers out
 there?  We need to get one and was hoping for some recommendations.

If you do not want to host the mailing lists on your server, 
FreeLists.org is an excellent (and free) mailing lists service that
can do it for you. However, the lists are all Internet and
technology-related. Check it out at http://www.freelists.org/

In fact, I have created a mailing list there for Oracle developers:
http://www.freelists.org/webpage/oradev

Cheers
-- 
Eddie Awad.
http://awads.net/

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216211
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Stupid custom tag question

2005-08-24 Thread Snake
cfif thistag.executionmode is end
Do this
/cfif

Will only do anything on the closing tag.
 

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: 24 August 2005 18:34
To: CF-Talk
Subject: Re: Stupid custom tag question

Whoops, I screwed up.  I want to skip the body, but still execute the
closing tag.  So that should be method=goToJustBEFOREClosingTag. 
Not sure what I was thinking.  To complete the thought, method=exittag
does what I described below, but that's NOT what I want.

On 8/24/05, Barney Boisvert [EMAIL PROTECTED] wrote:
 Is there a way to, in the opening tag of a custom tag, tell the custom 
 tag to skip evaluation of it's body?
 
 p:mytag
   i don't want to do this
 /p:mytag
 
 mytag.cfm:
 cfif this.executionMode EQ start
   cfexit method=goToJustAfterClosingTag / /cfif
 
 Thanks,
 barneyb
 
 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.
 


--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216212
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Stupid custom tag question

2005-08-24 Thread Daniel Mackey
You can do:

cfif thisTag.executionMode eq Start
Do Nothing
cfelse
Do your work
/cfif

Barney Boisvert wrote:

Whoops, I screwed up.  I want to skip the body, but still execute the
closing tag.  So that should be method=goToJustBEFOREClosingTag. 
Not sure what I was thinking.  To complete the thought,
method=exittag does what I described below, but that's NOT what I
want.

On 8/24/05, Barney Boisvert [EMAIL PROTECTED] wrote:
  

Is there a way to, in the opening tag of a custom tag, tell the custom
tag to skip evaluation of it's body?

p:mytag
  i don't want to do this
/p:mytag

mytag.cfm:
cfif this.executionMode EQ start
  cfexit method=goToJustAfterClosingTag /
/cfif

Thanks,
barneyb

--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.





  



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216213
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: iTEXT

2005-08-24 Thread Nick de Voil
Russ

 I have been asked to install iText on a shared server, but it seems that
it
 could potentially be unsafe to do so as I would imagine iText has   the
 ability to read/file files anywhere on the server seeing as java
components
 are not affected by a security sandbox.

I don't think iText itself does any file access. If your customers aren't
allowed to use CFOBJECT or CreateObject, then they won't be able to do much
with it. If they are, then they will have access to the java.io classes
anyway. It's those classes that do the actual file reading  writing - iText
just adds functionality which understands how certain types of files are
structured.

Nick



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216214
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Stupid custom tag question

2005-08-24 Thread Dave Francis
can't you just comment out?

!---
 cfif this.executionMode EQ start
   cfexit method=goToJustAfterClosingTag /
 /cfif
---

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 24, 2005 1:34 PM
To: CF-Talk
Subject: Re: Stupid custom tag question


Whoops, I screwed up.  I want to skip the body, but still execute the
closing tag.  So that should be method=goToJustBEFOREClosingTag.
Not sure what I was thinking.  To complete the thought,
method=exittag does what I described below, but that's NOT what I
want.

On 8/24/05, Barney Boisvert [EMAIL PROTECTED] wrote:
 Is there a way to, in the opening tag of a custom tag, tell the custom
 tag to skip evaluation of it's body?

 p:mytag
   i don't want to do this
 /p:mytag

 mytag.cfm:
 cfif this.executionMode EQ start
   cfexit method=goToJustAfterClosingTag /
 /cfif

 Thanks,
 barneyb

 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/

 Got Gmail? I have 50 invites.



--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216215
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Stupid custom tag question

2005-08-24 Thread Barney Boisvert
I want to execute the start tag, then OPTIONALLY execute the body of
the tag, and then execute the close tag.  thistag.executionmode will
only tell me which part of the tag (opening or closing) is currently
execution, and doesn't tell me anything about the body of the tag.

As near as I can tell, this is impossible with CF (though trivial with JSP).

cheers,
barneyb

On 8/24/05, Snake [EMAIL PROTECTED] wrote:
 cfif thistag.executionmode is end
 Do this
 /cfif
 
 Will only do anything on the closing tag.
 
 
 -Original Message-
 From: Barney Boisvert [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2005 18:34
 To: CF-Talk
 Subject: Re: Stupid custom tag question
 
 Whoops, I screwed up.  I want to skip the body, but still execute the
 closing tag.  So that should be method=goToJustBEFOREClosingTag.
 Not sure what I was thinking.  To complete the thought, method=exittag
 does what I described below, but that's NOT what I want.
 
 On 8/24/05, Barney Boisvert [EMAIL PROTECTED] wrote:
  Is there a way to, in the opening tag of a custom tag, tell the custom
  tag to skip evaluation of it's body?
 
  p:mytag
i don't want to do this
  /p:mytag
 
  mytag.cfm:
  cfif this.executionMode EQ start
cfexit method=goToJustAfterClosingTag / /cfif
 
  Thanks,
  barneyb
 
  --
  Barney Boisvert
  [EMAIL PROTECTED]
  360.319.6145
  http://www.barneyb.com/
 
  Got Gmail? I have 50 invites.
 
 
 
 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216216
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Lowering spam profile of CF generated emails

2005-08-24 Thread Ian Skinner
I have a simple PayPal based registration system for our site: 
www.sierraOutdoorRecreation.com.  Upon completion of the payment process, I 
send out a standard confirmation e-mail with initial username and password and 
transaction data.

We are having a fairly high incidence of these e-mails being trapped in spam 
filters and not reaching the intended recipients.  

What can I do to make these e-mails less spam looking?

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216217
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfapplication

2005-08-24 Thread daniel kessler
hey, thanks alot guys. I understand it alot better.  I'd have replied sooner 
but I was so excited about getting this right, I was recoding a bunch of pages.

!!

Couple of quick answers:

1) 
2) 
3)
4)

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216218
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Newsletter Manager Suggestions

2005-08-24 Thread Emmet McGovern
I need one in house.  We've been getting a lot of requests for mailing
management features for clients recently.  Mainly those in the real estate
market requesting HTML mail and tracking.  

The one from Oprea.org looks decent.

-e

-Original Message-
From: Eddie Awad [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 24, 2005 1:37 PM
To: CF-Talk
Subject: Re: Newsletter Manager Suggestions

On 8/24/05, Emmet McGovern [EMAIL PROTECTED] wrote:
 Does anyone have any experiences with the various mailing list managers
out
 there?  We need to get one and was hoping for some recommendations.

If you do not want to host the mailing lists on your server, 
FreeLists.org is an excellent (and free) mailing lists service that
can do it for you. However, the lists are all Internet and
technology-related. Check it out at http://www.freelists.org/

In fact, I have created a mailing list there for Oracle developers:
http://www.freelists.org/webpage/oradev

Cheers
-- 
Eddie Awad.
http://awads.net/



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216224
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Stupid custom tag question

2005-08-24 Thread Dave Francis
But any part of the body of the tag will be either start or end, whether
you select it or not. If you mean you want to selectively execute a common
part of the tag, you could control that with an attribute I suppose?

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 24, 2005 1:49 PM
To: CF-Talk
Subject: Re: Stupid custom tag question


I want to execute the start tag, then OPTIONALLY execute the body of
the tag, and then execute the close tag.  thistag.executionmode will
only tell me which part of the tag (opening or closing) is currently
execution, and doesn't tell me anything about the body of the tag.

As near as I can tell, this is impossible with CF (though trivial with JSP).

cheers,
barneyb

On 8/24/05, Snake [EMAIL PROTECTED] wrote:
 cfif thistag.executionmode is end
 Do this
 /cfif

 Will only do anything on the closing tag.


 -Original Message-
 From: Barney Boisvert [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2005 18:34
 To: CF-Talk
 Subject: Re: Stupid custom tag question

 Whoops, I screwed up.  I want to skip the body, but still execute the
 closing tag.  So that should be method=goToJustBEFOREClosingTag.
 Not sure what I was thinking.  To complete the thought, method=exittag
 does what I described below, but that's NOT what I want.

 On 8/24/05, Barney Boisvert [EMAIL PROTECTED] wrote:
  Is there a way to, in the opening tag of a custom tag, tell the custom
  tag to skip evaluation of it's body?
 
  p:mytag
i don't want to do this
  /p:mytag
 
  mytag.cfm:
  cfif this.executionMode EQ start
cfexit method=goToJustAfterClosingTag / /cfif
 
  Thanks,
  barneyb
 
  --
  Barney Boisvert
  [EMAIL PROTECTED]
  360.319.6145
  http://www.barneyb.com/
 
  Got Gmail? I have 50 invites.
 


 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/

 Got Gmail? I have 50 invites.







~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216223
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Stupid custom tag question

2005-08-24 Thread Snake
You can use thistag.generatedcontent to decide what to do with the content
of tag.

Russ 

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: 24 August 2005 18:49
To: CF-Talk
Subject: Re: Stupid custom tag question

I want to execute the start tag, then OPTIONALLY execute the body of the
tag, and then execute the close tag.  thistag.executionmode will only tell
me which part of the tag (opening or closing) is currently execution, and
doesn't tell me anything about the body of the tag.

As near as I can tell, this is impossible with CF (though trivial with JSP).

cheers,
barneyb

On 8/24/05, Snake [EMAIL PROTECTED] wrote:
 cfif thistag.executionmode is end
 Do this
 /cfif
 
 Will only do anything on the closing tag.
 
 
 -Original Message-
 From: Barney Boisvert [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2005 18:34
 To: CF-Talk
 Subject: Re: Stupid custom tag question
 
 Whoops, I screwed up.  I want to skip the body, but still execute the 
 closing tag.  So that should be method=goToJustBEFOREClosingTag.
 Not sure what I was thinking.  To complete the thought, method=exittag
 does what I described below, but that's NOT what I want.
 
 On 8/24/05, Barney Boisvert [EMAIL PROTECTED] wrote:
  Is there a way to, in the opening tag of a custom tag, tell the 
  custom tag to skip evaluation of it's body?
 
  p:mytag
i don't want to do this
  /p:mytag
 
  mytag.cfm:
  cfif this.executionMode EQ start
cfexit method=goToJustAfterClosingTag / /cfif
 
  Thanks,
  barneyb
 
  --
  Barney Boisvert
  [EMAIL PROTECTED]
  360.319.6145
  http://www.barneyb.com/
 
  Got Gmail? I have 50 invites.
 
 
 
 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.
 
 
 
 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216221
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Stupid custom tag question

2005-08-24 Thread Ian Skinner
Something wrong with the relatively trivial:

Inside your custom tag:

cfif attributes.doThis EQ TRUE
Do what you want
/cfif

Called with a page like this:

cf_myCustTag doThis=True


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216219
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Stupid custom tag question

2005-08-24 Thread Barney Boisvert
I don't want to ignore the content generated by the body, I want to
skip execution of the body.  In other words, it's the processing I
want to avoid, not the output.  Like how CFIF works, except that the
closing tag still executes.

cheers,
barneyb

On 8/24/05, Snake [EMAIL PROTECTED] wrote:
 You can use thistag.generatedcontent to decide what to do with the content
 of tag.
 
 Russ
 

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216227
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: iTEXT

2005-08-24 Thread Bryan Stevenson
 Are there any docs anywhere for installing it on CF, can't see anything on
 the site

 Russ

If it's CF 7 then iText is built-in alreadyno need to install 
anythingCFDOUMENT uses it to produce PDFs

Otherwise you need to drop iText.jar in the right path.and the right 
path depends on the type of install (CF as an instance on top of J2EE, 
classic install, etc.).

..so you'll need to figure out where the class path is for your 
particular CF install ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216225
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Lowering spam profile of CF generated emails

2005-08-24 Thread Snake
If they are HTML emails they will often get caught as these are generally
considered spam.
If it is an opt-in list you really need to tell users to add you to their
whitelist so they can receive your emails.

Russ 

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: 24 August 2005 18:48
To: CF-Talk
Subject: Lowering spam profile of CF generated emails

I have a simple PayPal based registration system for our site:
www.sierraOutdoorRecreation.com.  Upon completion of the payment process, I
send out a standard confirmation e-mail with initial username and password
and transaction data.

We are having a fairly high incidence of these e-mails being trapped in spam
filters and not reaching the intended recipients.  

What can I do to make these e-mails less spam looking?

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any attachments is for the
sole use of the intended
recipient(s) and may contain confidential and privileged information. Any
unauthorized review, use, disclosure or distribution is prohibited. If you
are not the intended recipient, please contact the sender and delete any
copies of this message. 





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216222
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iTEXT

2005-08-24 Thread Snake
Are there any docs anywhere for installing it on CF, can't see anything on
the site

Russ 

-Original Message-
From: Nick de Voil [mailto:[EMAIL PROTECTED] 
Sent: 24 August 2005 18:39
To: CF-Talk
Subject: Re: iTEXT

Russ

 I have been asked to install iText on a shared server, but it seems 
 that
it
 could potentially be unsafe to do so as I would imagine iText has   the
 ability to read/file files anywhere on the server seeing as java
components
 are not affected by a security sandbox.

I don't think iText itself does any file access. If your customers aren't
allowed to use CFOBJECT or CreateObject, then they won't be able to do much
with it. If they are, then they will have access to the java.io classes
anyway. It's those classes that do the actual file reading  writing - iText
just adds functionality which understands how certain types of files are
structured.

Nick





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216220
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Lowering spam profile of CF generated emails

2005-08-24 Thread Emmet McGovern
Are you sure you have reverse DNS setup for the server sending the mail?

Emmet

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 24, 2005 1:48 PM
To: CF-Talk
Subject: Lowering spam profile of CF generated emails

I have a simple PayPal based registration system for our site:
www.sierraOutdoorRecreation.com.  Upon completion of the payment process, I
send out a standard confirmation e-mail with initial username and password
and transaction data.

We are having a fairly high incidence of these e-mails being trapped in spam
filters and not reaching the intended recipients.  

What can I do to make these e-mails less spam looking?

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 





~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216226
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Stupid custom tag question

2005-08-24 Thread Daniel Mackey
By referencing thisTag.generatedContent, you could possibly do what you 
want.

This is taking the following for granted:

1) Start tag is cf_myTag
2) Body of tag is [in between start and end]
3) End tag is /cf_myTag

By setting thisTag.generatedContent to  i.e: Nothing, then what you 
have in between will not be written out. That doesnt mean it wont be 
executed though.

I would set an attribute to determine when you need to output and when 
not to.

Therefore:

cfparam name=attributes.executeBody default=true

cfif thisTag.executionMode EQ Start
!-Always skip cause generated content insnt available 
until end of tag--
cfelse
Perform your work
cfif NOT attributes.executeBody
  cfset thisTag.generatedContent=
/cfif
/cfif

holds through.

Dan.

Barney Boisvert wrote:

I want to execute the start tag, then OPTIONALLY execute the body of
the tag, and then execute the close tag.  thistag.executionmode will
only tell me which part of the tag (opening or closing) is currently
execution, and doesn't tell me anything about the body of the tag.

As near as I can tell, this is impossible with CF (though trivial with JSP).

cheers,
barneyb

On 8/24/05, Snake [EMAIL PROTECTED] wrote:
  

cfif thistag.executionmode is end
Do this
/cfif

Will only do anything on the closing tag.


-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: 24 August 2005 18:34
To: CF-Talk
Subject: Re: Stupid custom tag question

Whoops, I screwed up.  I want to skip the body, but still execute the
closing tag.  So that should be method=goToJustBEFOREClosingTag.
Not sure what I was thinking.  To complete the thought, method=exittag
does what I described below, but that's NOT what I want.

On 8/24/05, Barney Boisvert [EMAIL PROTECTED] wrote:


Is there a way to, in the opening tag of a custom tag, tell the custom
tag to skip evaluation of it's body?

p:mytag
  i don't want to do this
/p:mytag

mytag.cfm:
cfif this.executionMode EQ start
  cfexit method=goToJustAfterClosingTag / /cfif

Thanks,
barneyb

--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

  

--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.









~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216229
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFINDEX - how to add/update a single record in an existing collection?

2005-08-24 Thread Dave.Phillips
As for optimizing, I would consider doing it daily if you're making several 
updates and/or refreshes throughout the day.  If you're only doing a refresh 
once a day, then I would optimize once a week or no more than once every other 
day.  I think it would be overkill to optimize every day if you're only 
refreshing once a day.

Dave

-Original Message-
From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 24, 2005 12:54 PM
To: CF-Talk
Subject: Re: CFINDEX - how to add/update a single record in an existing
collection?


I ended up taking Dave's query for a single record approach because it
simplified a number of things.  Because of the nature of the app, I
update some of the data one column at a time, but it still needs to be
indexed immediately.  I have a CFC with an updateCollection method
that I just pass a collection name and record ID.

Followup question.  What contributes to the degradation of verity
collections?  Will updating single records in a collection kill verity
search performance?  What strategy should I take with
repairing/optimizing collections...scheduled task to do it hourly, or
would just once a day suffice?

Thanks for the help,

Pete
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216231
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Stupid custom tag question

2005-08-24 Thread Daniel Mackey
I think your going to have to put a CFIF to decide as I cant see an 
alternative.

cf_myTag
cfif someExpression
   //Run body
/cfif
/cf_myTag

Barney Boisvert wrote:

I don't want to ignore the content generated by the body, I want to
skip execution of the body.  In other words, it's the processing I
want to avoid, not the output.  Like how CFIF works, except that the
closing tag still executes.

cheers,
barneyb

On 8/24/05, Snake [EMAIL PROTECTED] wrote:
  

You can use thistag.generatedcontent to decide what to do with the content
of tag.

Russ




  



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216234
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Stupid custom tag question

2005-08-24 Thread Barney Boisvert
The body of the tag is the stuff between the opening and closing
tags in the calling markup.  For example:

c:mytag
  this is the tag body of the tag c:mytag
/c:mytag

cheers,
barneyb

On 8/24/05, Dave Francis [EMAIL PROTECTED] wrote:
 But any part of the body of the tag will be either start or end, whether
 you select it or not. If you mean you want to selectively execute a common
 part of the tag, you could control that with an attribute I suppose?
 
-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216235
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Lowering spam profile of CF generated emails

2005-08-24 Thread Jerry Johnson
Not definitive, and some may not be necessary, but here is what I try to do:

Dont put your order or receipt in the subject.
Dont put opt out or remove yourself in the body.
Dont have any swear words. Or Viagra. Or enlargement.
Have a good valid word to nonsense word (not found in a dictionary) ratio
If at all possible, send as txt. If not possible due to marketing and
design types, send as combo html and txt.
Make sure the From and repond-to fields are well named (don't use
[EMAIL PROTECTED] or [EMAIL PROTECTED])
Stay away from !
Stay away from all caps.
Make sure all URLs make sense and are human readable
Make sure your mail server has a valid mx record.
Dont use the color red or ff in your html.
Avoid sizes like XX and XXX and use the more standard XXL and XXXL

Of course, you could also run the sample of your email through trial
versions of various filter to see what about it is getting filtered.

Or send the list the content of the email for another dozen set of
eyes. Maybe we could pick out the obvious culprits.

On 8/24/05, Snake [EMAIL PROTECTED] wrote:
 If they are HTML emails they will often get caught as these are generally
 considered spam.
 If it is an opt-in list you really need to tell users to add you to their
 whitelist so they can receive your emails.
 
 Russ
 
 -Original Message-
 From: Ian Skinner [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2005 18:48
 To: CF-Talk
 Subject: Lowering spam profile of CF generated emails
 
 I have a simple PayPal based registration system for our site:
 www.sierraOutdoorRecreation.com.  Upon completion of the payment process, I
 send out a standard confirmation e-mail with initial username and password
 and transaction data.
 
 We are having a fairly high incidence of these e-mails being trapped in spam
 filters and not reaching the intended recipients.
 
 What can I do to make these e-mails less spam looking?
 
 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA
 
 C code. C code run. Run code run. Please!
 - Cynthia Dunning
 
 Confidentiality Notice:  This message including any attachments is for the
 sole use of the intended
 recipient(s) and may contain confidential and privileged information. Any
 unauthorized review, use, disclosure or distribution is prohibited. If you
 are not the intended recipient, please contact the sender and delete any
 copies of this message.
 
 
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216241
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Stupid custom tag question

2005-08-24 Thread Barney Boisvert
That doesn't work, because it forces the optional processing to be
defined INSIDE the custom tag, rather than in the CALLING template.

cheers,
barneyb

On 8/24/05, Ian Skinner [EMAIL PROTECTED] wrote:
 Something wrong with the relatively trivial:
 
 Inside your custom tag:
 
 cfif attributes.doThis EQ TRUE
 Do what you want
 /cfif
 
 Called with a page like this:
 
 cf_myCustTag doThis=True
 

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216232
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: iTEXT

2005-08-24 Thread Nick de Voil
Russ

 Are there any docs anywhere for installing it on CF, can't see anything on
 the site

You just need to get hold of the jar file and drop it in somewhere on the
Java classpath.

Nick



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216228
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Newsletter Manager Suggestions

2005-08-24 Thread Dave.Phillips
If you want a full-blown web-based contact and e-mail management solution:

http://www.bizbreeze.com

Dave

-Original Message-
From: Emmet McGovern [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 24, 2005 1:21 PM
To: CF-Talk
Subject: Newsletter Manager Suggestions


Does anyone have any experiences with the various mailing list managers out
there?  We need to get one and was hoping for some recommendations.

Emmet

**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216237
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfgrid update using cfquery

2005-08-24 Thread Felipe Fernandes
David, after play a little with the flash forms what I can tell you is
to not let the user make more than one kind of modification (if they
update don´t let them insert or delete, and so on). Another bug is try
to edit some row, than click in another row,  don´t update it and send
the form you gonna see that the form.gridname structure isn´t an
array. What I do is use this code to insert and delete rows.

cfsavecontent variable=actionInsert
GridData.insertRow(myGrid);
_global.backupDP.push(myGrid.getItemAt(myGrid.length -1));
remove.enabled=false;
/cfsavecontent

cfsavecontent variable=actionDelete
var item = myGrid.selectedItem;
if(_global.backupDP != undefined)
{
for(var i = 0; i  _global.backupDP.length; i++)
{
if(_global.backupDP[i] == item)
{
_global.backupDP.removeItemAt(i);
}
}
}
GridData.deleteRow(myGrid);
inser.enabled=false;
/cfsavecontent

  cfinput type=button name=inser value=Add onclick=#actionInsert#/
  cfinput type=button name=remove value=Delete
onclick=#actionDelete# /

With this, your user wont be able to insert and delete rows without
refreshing the form, but to prevent the second bug i mentioned, you
will need to make some changes in your form, insted of letting your
user edit in the grid, bind some text fields to the grid and set your
selectmode to browse in the grid, than put a {btn_send.enabled =
false;} in the onchange atribute of your grid (if your send button is
named btn_send). And in the onchange of the text input fields put
btn_send.enabled = true; after the code to edit the grid.
This sould take care of those two bugs in the cfgrid in flash format.

Felipe



On 8/23/05, David Brown [EMAIL PROTECTED] wrote:
 We are using Flash forms with a cfgrid on it.  The grid is in edit mode.  I 
 have my cfc working now and I am able to update/delete/insert based on the 
 cfgridname.rowstatus.action[counter] value.
 
 But I have found an error or bug not sure.
 
 I bring up the grid with data from a query 2 rows.  I then insert a new row 
 in the grid and add content.  I then delete the first row that was returned 
 (original data) and then edit the 2nd row (now the first row since the first 
 was deleted) data.
 
 I cfdump form[gridname]  .rowstatus.action] and see 3 elements in the 
 array in the following order [u][d][I].  the value of the original primary 
 key column of the [U] row is empty.  If I don't delete a row in the grid then 
 the value of the original primary key column is correct.
 
 Has anyone see this?
 
 I can provide the code if needed.
 
 David
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216230
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Lowering spam profile of CF generated emails

2005-08-24 Thread Pete Ruckelshaus
A quick Google found this
http://www.cyberlynk.net/customercare_tutorials/dsp_cfmail.cfm

On 8/24/05, Snake [EMAIL PROTECTED] wrote:
 If they are HTML emails they will often get caught as these are generally
 considered spam.
 If it is an opt-in list you really need to tell users to add you to their
 whitelist so they can receive your emails.
 
 Russ
 
 -Original Message-
 From: Ian Skinner [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2005 18:48
 To: CF-Talk
 Subject: Lowering spam profile of CF generated emails
 
 I have a simple PayPal based registration system for our site:
 www.sierraOutdoorRecreation.com.  Upon completion of the payment process, I
 send out a standard confirmation e-mail with initial username and password
 and transaction data.
 
 We are having a fairly high incidence of these e-mails being trapped in spam
 filters and not reaching the intended recipients.
 
 What can I do to make these e-mails less spam looking?
 
 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA
 
 C code. C code run. Run code run. Please!
 - Cynthia Dunning
 
 Confidentiality Notice:  This message including any attachments is for the
 sole use of the intended
 recipient(s) and may contain confidential and privileged information. Any
 unauthorized review, use, disclosure or distribution is prohibited. If you
 are not the intended recipient, please contact the sender and delete any
 copies of this message.
 
 
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216240
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Old saw: jrun.exe out of control (found issue)

2005-08-24 Thread Eric J. Hoffman
I use Fusetalk in other high traffic installations, so I don't think its 
Fusetalk.  CF/JRUN keeps trying to fire off some process that is not even 
listed in the scheduled tasks...so the issue is some weirdness in there.
 
But I would check to see if you have in your exception log anything about a 
categories query from the Fusetalk area...thats what tipped me off in that 
direction.
 
Anyone know how to find hidden automated tasks that CF/JRUN try to fire off, or 
where the config file for that is?



From: Dustin M Snell [Network Automation] [mailto:[EMAIL PROTECTED]
Sent: Wed 8/24/2005 11:20 AM
To: CF-Talk
Subject: RE: Old saw: jrun.exe out of control (found issue)



This is very interesting. We use Fusetalk over here as well. Problem is, I
don't want to disable it because we actively use it! Can you be more
specific about what exactly you need to do to fix the problem? Does it
require discontinuing use of Fusetalk altogether?

-Dustin Snell
Network Automation, Inc

-Original Message-
From: Eric J. Hoffman [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 24, 2005 8:46 AM
To: CF-Talk
Subject: RE: Old saw: jrun.exe out of control (found issue)

Okay, I think I have found the issueit was trying to run some file over
and over. 

I removed the directory as it wasn't in use any longer.  Here's the freak
show:  I removed all scheduled tasks, etc, mappings, etc to the Fusetalk
Forums that was firing up this query over and over.  I even deleted *all*
scheduled tasks for now.

Restarted. 

Now, it just gives me an error file not found in the exception.log every
thirty seconds.  At least memory has stabilized, my i/o just getting some
love now.   But the server is staying up.

Stopped the IIS website even that was where the forums were stored.
Restarted CF.  Same flippin thing happening.

NOW, how can this be?  Is there a file that contains/runs certain scheduled
tasks that in some way may not have properly deleted this process...I
started to look for a scheduled task xml file somewhere but not real certain
where its stored.  I mean, it starts right from the get go like a dog after
a bone.

Any thoughts from other server guys on this one?



From: Micha Schopman [mailto:[EMAIL PROTECTED]
Sent: Wed 8/24/2005 9:53 AM
To: CF-Talk
Subject: RE: Old saw: jrun.exe out of control



That does not solve the problem, it only covers the problem up. What
does SQL Profiler tell you, what is happening in terms of SQL Server
traffic?

Maybe Macromedia can come up with an answer, my guess is you are not the

only one with this bug.

Micha Schopman
Project Manager

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380



-
Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
de interactie met uw doelgroep.
Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
informatie zie www.modernmedia.nl


-
-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]
Sent: woensdag 24 augustus 2005 15:39
To: CF-Talk
Subject: Re: Old saw: jrun.exe out of control

 Out of the blue, jrun.exe is going bananas on me.  Every
 four hours I have to reboot.

 I am sure others dealt with this, any advice?  I have the
 cumulative hotfixes to number 3 installed, etc, everything
 is up to date.  Besides performing an exorcism?

 Thanks.


If you think it might be client variable related, disable global
client variable updates in CF Admin. Or whatever it's called. :P



s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm












~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216243
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: DESPERATE!!! Any way to embed SWF within CFDOCUMENT (PREVIOUSLY CFDOCUMENT ERROR)

2005-08-24 Thread John Dowdell
Andy McShane wrote:
 Thanks Kevin, I like the idea of the swf to pdf converter, do you know of
 such a tool? I think I may also have to have a closer at flirt also. I am
 afraid that your first suggestion does not really mean anything to me, how
 would you print out the flash to file to postscript?

I read the thread, but my understanding of the problem changed a few 
times. Recent versions of Adobe Reader can embed and display SWF files. 
A SWF file can be referenced in any HTML page. SWF itself can print a 
screen or alternative display. Are any of these topics of interest to 
you...?

jd




-- 
John Dowdell . Macromedia Developer Support . San Francisco CA USA
Weblog: http://www.macromedia.com/go/blog_jd
Aggregator: http://www.macromedia.com/go/weblogs
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216242
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Lowering spam profile of CF generated emails

2005-08-24 Thread Dave.Phillips
Well, in my experience, getting mail into the inbox can be different depending 
on the service of the receiver of the e-mail.

AOL:
Sign your server up for whitelisting at http://postmaster.aol.com.  If you're 
on a shared server, you can't do this, though, so you'd need to be on a 
dedicated server.  Once whitelisted, I've not had trouble getting AOL mail 
through for several months now.

MSN  Hotmail:
Good luck.  I've never had any success getting MSN to offer a whitelisting.  
Evidently, www.bondedsender.com has some deal with them, but it can be pricy if 
you get ANY spam complaints at all (even false spam complaints).

Yahoo:
You can apply for 'delivery to the inbox' instead of in the bulk mail folder, 
but I've never been successful in getting approved for this.  Do some searching 
in their help section for the application.  They 'monitor' your mail for a few 
days and then tell you what they think about it.  Bottom line is if you have a 
large amount of mail coming out of your server to @yahoo.com addresses, you're 
giong to end up in the bulk mail folder (unless the receiver has added you to 
their safe sender list.

Other mail servers:

You can use the free tool at:

http://spamcheck.sitesell.com/

To check and see how many mail server filters generally will receive your 
content.  This will help eliminate some blocking, but ultimately, you will end 
up in junk mail  bulk mail folders if you're sending a large quantity of mail 
from your server.

** One thing to keep in mind...most mail servers  providers base whether your 
mail is classified as bulk mail based on the quantity of mail coming from your 
SERVER, not your DOMAIN.  This is important to understand as if you're on a 
shared server, or if you share your server with others, you might get classifed 
as bulk because of their activities.

This is by no means an exhaustive list, just what I can come up with from 
memory.  Hope it helps.  I'm sure some others will have some comments here for 
you too.

Oh, one more thing...plain text e-mails are most always more likely to be 
delivered than HTML e-mails.  I send all my e-commerce 'receipt' e-mails in 
plain text and then a 'welcome' e-mail in HTML nicely formatted separately.

Dave

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 24, 2005 1:48 PM
To: CF-Talk
Subject: Lowering spam profile of CF generated emails


I have a simple PayPal based registration system for our site: 
www.sierraOutdoorRecreation.com.  Upon completion of the payment process, I 
send out a standard confirmation e-mail with initial username and password and 
transaction data.

We are having a fairly high incidence of these e-mails being trapped in spam 
filters and not reaching the intended recipients.  

What can I do to make these e-mails less spam looking?
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216236
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Get fields in an Access table

2005-08-24 Thread Dave.Phillips
Maybe this link will help:

http://www.databasejournal.com/features/msaccess/article.php/3528491

Dave

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 24, 2005 12:21 PM
To: CF-Talk
Subject: Re: Get fields in an Access table


 I cant remember exactly step by step but there are hidden system 
tables in
 access

This will give you a list of all tables, but forget about columns and 
types :-(

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216233
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Newsletter Manager Suggestions

2005-08-24 Thread Jochem van Dieten
Emmet McGovern wrote:
 Does anyone have any experiences with the various mailing list managers out
 there?  We need to get one and was hoping for some recommendations.

Newsletters are a risky business. Even if you do everything 
right, some recipients will accuse you of spamming for instance 
simply because they forgot they subscribed. Make sure you and all 
people allowed to send email through the manager read RFC 3098 
and keep appropriate records of subscribtions.

BTW, I use normal mailinglist software, preferably Mailman: 
http://www.gnu.org/software/mailman/

Jochem

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216245
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFINDEX - how to add/update a single record in an existing collection?

2005-08-24 Thread Pete Ruckelshaus
Boy, it's just my day for search-related questions.

I'm seeing something weird here and want to know if this is normal. 
I'm creating an index from a database query.  The collection contains
about 14k records, and the initial collection size (immediately upon
creation) is about 79MB.

Optimizing that collection after it is created reduces the collection
size to about 37MB!  Now, given that all the total size of my database
is only about 100MB and that there is a ton of other data in there,
I'm willing to believe that the post-optimization size is the correct
one, and that collections suffer from some amazing bloat when they are
created.

So, first, is my experience consistent with that of others, and
second, would a better strategy be to create a collection and then
optimize it immediately afterwards?

Thanks,

Pete

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216248
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: IIS 6 VS Apache

2005-08-24 Thread Russ
What is the general recommendation now of what to use on Windows Server
2003?  Is IIS 6 better then apache, or is apache still the preferred
solution for performance, security, etc. 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216244
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Stupid custom tag question

2005-08-24 Thread Dave Francis
This is happening outside the tag, it is just html/cfml. You could decide to
generate output based on a url param, application var, whatever:

c:mytag
cfif url.x = live
  this is the tag body of the tag c:mytag
/cfif
/c:mytag

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 24, 2005 2:22 PM
To: CF-Talk
Subject: Re: Stupid custom tag question


The body of the tag is the stuff between the opening and closing
tags in the calling markup.  For example:

c:mytag
  this is the tag body of the tag c:mytag
/c:mytag

cheers,
barneyb

On 8/24/05, Dave Francis [EMAIL PROTECTED] wrote:
 But any part of the body of the tag will be either start or end,
whether
 you select it or not. If you mean you want to selectively execute a common
 part of the tag, you could control that with an attribute I suppose?

--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216239
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Stupid custom tag question

2005-08-24 Thread Matt Osbun
Not sure, exactly, if this is what you're looking for, but what about 

cfif SomeCondition
  cfset thistag.generatedcontent = 
/cfif

I use that on occasion for optional content.  Something like

cf_CustomTag
  Optional or conditional content
/cf_CustomTag

Is this what you're thinking of?

Matt Osbun
Web Developer
Health Systems, International


-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 24, 2005 12:49 PM
To: CF-Talk
Subject: Re: Stupid custom tag question


I want to execute the start tag, then OPTIONALLY execute the body of
the tag, and then execute the close tag.  thistag.executionmode will
only tell me which part of the tag (opening or closing) is currently
execution, and doesn't tell me anything about the body of the tag.

As near as I can tell, this is impossible with CF (though trivial with
JSP).

cheers,
barneyb

On 8/24/05, Snake [EMAIL PROTECTED] wrote:
 cfif thistag.executionmode is end
 Do this
 /cfif
 
 Will only do anything on the closing tag.
 
 
 -Original Message-
 From: Barney Boisvert [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2005 18:34
 To: CF-Talk
 Subject: Re: Stupid custom tag question
 
 Whoops, I screwed up.  I want to skip the body, but still execute the
 closing tag.  So that should be method=goToJustBEFOREClosingTag.
 Not sure what I was thinking.  To complete the thought,
method=exittag
 does what I described below, but that's NOT what I want.
 
 On 8/24/05, Barney Boisvert [EMAIL PROTECTED] wrote:
  Is there a way to, in the opening tag of a custom tag, tell the
custom
  tag to skip evaluation of it's body?
 
  p:mytag
i don't want to do this
  /p:mytag
 
  mytag.cfm:
  cfif this.executionMode EQ start
cfexit method=goToJustAfterClosingTag / /cfif
 
  Thanks,
  barneyb
 
  --
  Barney Boisvert
  [EMAIL PROTECTED]
  360.319.6145
  http://www.barneyb.com/
 
  Got Gmail? I have 50 invites.
 
 
 
 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.
 
 
 
 



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216238
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Lowering spam profile of CF generated emails

2005-08-24 Thread dan martin
Are you sure you have reverse DNS setup for the server sending the mail?

How do you do this? Can it be done if your dns is provided by a registrar (like 
register.com or godaddy.com) vs running your own dns server?

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216250
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Newsletter Manager Suggestions

2005-08-24 Thread Dave.Phillips
Jochem van Dieten wrote:
some recipients will accuse you of spamming for instance 
simply because they forgot they subscribed.

Not to mention when they decide they don't want it anymore, and from that point 
on, all future newsletters are considered spam.  Like you were supposed to know 
they didn't want it anymore... I guess read their mind... and automatically 
unsubscribe them because they THOUGHT about not reading it anymore

Oh joy.

Dave
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216251
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Cannot set up certs for trusted CAs

2005-08-24 Thread Charles Polisher
I get this error  stack trace when I open the CF Administrator:

java.lang.ExceptionInInitializerError: java.lang.SecurityException: Cannot set 
up certs for trusted CAs
at javax.crypto.b.([DashoPro-V1.2-120198])
at javax.crypto.Cipher.getInstance([DashoPro-V1.2-120198])
at coldfusion.compiler.TemplateReader.decrypt(Unknown Source)
at coldfusion.compiler.TemplateReader.(Unknown Source)
at coldfusion.compiler.NeoTranslationContext.getPageReader(Unknown 
Source)
at coldfusion.compiler.NeoTranslator.translateJava(Unknown Source)
at coldfusion.compiler.NeoTranslator.translateJava(Unknown Source)
at coldfusion.runtime.TemplateClassLoader$1.fetch(Unknown Source)
at coldfusion.util.LruCache.get(Unknown Source)
at 
coldfusion.runtime.TemplateClassLoader$TemplateCache.fetchSerial(Unknown Source)
at coldfusion.util.AbstractCache.fetch(Unknown Source)
at coldfusion.util.SoftCache.get(Unknown Source)
at coldfusion.runtime.TemplateClassLoader.findClass(Unknown Source)
at coldfusion.filter.PathFilter.invoke(Unknown Source)
at coldfusion.filter.LicenseFilter.invoke(Unknown Source)
at coldfusion.filter.ExceptionFilter.invoke(Unknown Source)
at coldfusion.filter.ClientScopePersistenceFilter.invoke(Unknown Source)
at coldfusion.filter.BrowserFilter.invoke(Unknown Source)
at coldfusion.filter.GlobalsFilter.invoke(Unknown Source)
at coldfusion.filter.DatasourceFilter.invoke(Unknown Source)
at coldfusion.CfmServlet.service(Unknown Source)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:241)
at 
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
at jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
at 
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:348)
at 
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451)
at 
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:294)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

Can anyone help? ColdFusion is serving up pages okay...

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216246
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   >