Re: Hosting for SEMI dedicated

2005-03-18 Thread Stephenie Hamilton
CFXHosting has a great VPS plan and you pick the CF version and the server is 
limited to 4 customers; each uniquely isolated, so you can reboot your own 
isolation if you need to, you get complete control!

http://cfxhosting.com/StandardHosting/VPS/index.cfm


Stephenie




-Original Message-
From: Mickael 

Hi All,

I know that hosting has been discussed many times on this list.  But I would
still like to know who the stars are.  I am presently hosting with
Hostmysite.com and crystaltech.com but as of late their machines are getting
overloaded.  I am looking for semi dedicated hosting for CF 6.1 and SQL
server.  Can anyone recommend a company that they have had a good experience
with?  The two companies that I am with answer the phone 7/24 which is a big
plus as well.

Thanks

Mike

~|
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:199345
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: removing directories that are not empty

2004-10-04 Thread Stephenie Hamilton
how about copying a directory and all of its contents, this is on CFMX.

 Stephenie Hamilton wrote:
  does anyone know of a udf or custom tag that will easy remove 
 directories that are not empty?
 
 cfexecute name=rd arguments=/S /Q #dir# timeout=10 /
 
Jochem
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




textarea looping

2004-10-01 Thread Stephenie Hamilton
ok, so i have been doing only admin stuff this last year...don't have my books with me and am having a completely brain fart friday...

i need to get a list from a textarea so i can loop over it and ensure the directories exist, ie:
the textarea values come back as a long string with spaces between them if the user entered them as a list (one dir on each line), but if i try to loop over them cfloop just sees it as one item, not a list, even if i tell it to use space as a delimiter...

help. brain not working today...should know this.

steph
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: textarea looping

2004-10-01 Thread Stephenie Hamilton
duh!! thanks ben, you da man.
steph

Um, if they're entering them one per line, the delimiter would be a
linebreak character, not a space.Try using 10 and 13 as delimiters,
and make sure to trim().

--Ben

Stephenie Hamilton wrote:
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: textarea looping

2004-10-01 Thread Stephenie Hamilton
thanks [embarrased grin]
steph

 It may look like a space between them in HTML (debugging output?), but 
 is it really a line feed or carriage return/line feed?
 
 If so, try using chr(13) and chr(10) as list delimiters.
 
 Jerry Johnson
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




removing directories that are not empty

2004-10-01 Thread Stephenie Hamilton
does anyone know of a udf or custom tag that will easy remove directories that are not empty?

steph
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




julian date

2004-01-06 Thread Stephenie Hamilton
What is the best way to work with julian dates in CF? I will need to
convert a julian date to a formatted date and vice versa. I have
never worked with julian dates before so any info you can send my way
would be great.
TIA

Stephenie Hamilton
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:parsing txt file - seems unparsable

2003-10-07 Thread Stephenie Hamilton
Thanks! will let you know how it goes. I have really been seeing the usefulness of using Java with CF lately.
~~
Stephenie 

I reckon you'll be needing a Java CFX then.
 
Seemed like a fun 5 minute project so here ya go.
 
-
 
import com.allaire.cfx.*;
import java.io.*;
 
public class cfReadTxtFile implements CustomTag{
public void processRequest( Request request, Response response )
throws Exception
{
if ( !request.attributeExists(filename) ||
!request.attributeExists(variable) )
{
throw new Exception(Missing attributes, filename and variable are
required.);
}
 
String filename = request.getAttribute( filename );
String variable = request.getAttribute( variable );

String fileContent = ;

try {
BufferedReader in = new BufferedReader(new
FileReader(filename));
String str;
while ((str = in.readLine()) != null) {
 fileContent = fileContent + str +
System.getProperty(line.separator);
}
in.close();
} catch (IOException e) {
}

response.setVariable( variable, fileContent);

 }
}
 
---
 
Call it like so...
 
cfx_cfReadTxtFile filename=d:\sites\test\string.cfm variable=test
 
cfdump var=#test#
 
Tested and works perfectly on CF5
 
I'll mail you the source and the compiled CFX off list aswell.
 
Craig.


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:sandbox security

2003-10-06 Thread Stephenie Hamilton
are you using an absolute path in cffile?
~~
Stephenie

I purposefully removed the sandbox at the root that disabled all tags 
to
try and get this working.
So in this current config there are no tags disabled period, so
everything should just work by default.

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:parsing txt file - seems unparsable

2003-10-06 Thread Stephenie Hamilton
Tried this on CF5, and received this error:
Unhandled System exception ! 

Failed to create JavaVM. JNI_CreateJavaVM returned error code JNI_ERR (this may indicate an unrecognized option string)

which comes from line:
cfobject type=JAVA name=jFR class=java.io.FileReader
action="">

any ideas?

BTW, using cffile in CFMX to read the file works great, it doesn't choke on the null char. Too bad we don't have MX yet on our corporate servers (sigh).

~~
Stephenie


This is better though.
 
cfobject type=JAVA name=jFR class=java.io.FileReader
action="">
cfset jFRobj = jFR.init('d:/sites/test/dates.cfm')
cfobject type=JAVA name=jBR class=java.io.BufferedReader
action="">
cfset jBRobj = jBR.init(jFRobj)
pre
cfscript
line = ;
while ( isDefined(line) ){
 line = jBRobj.readLine();
 if ( isDefined(line) ){
writeoutput(line  #chr(13)#);
 }
}
jBRobj.close();
/cfscript
/pre
 
Seems as soon as we reach EOF, jBRobj.readLine() returns null (expected)
and variable 'line' is no longer defined, quite handy in this case.


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:parsing txt file - seems unparsable

2003-10-03 Thread Stephenie Hamilton
yes it is cf 5.

i suspect you may be right. will try some tweaking as soon as i kick this flu.
thanks!
steph
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:parsing txt file - seems unparsable

2003-10-03 Thread Stephenie Hamilton
nice idea, but no love.
thanks!

Stephenie



If you're still having trouble, instead of CFFILE, try this

cfsavecontent variable=myDoc.
	cfinclude template=myDoc.txt
/cfsavecontent

Now parse your file.

H.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




parsing txt file - seems unparsable

2003-10-01 Thread Stephenie Hamilton
I am trying to use CFFILE to parse a text file, put the contents in a
var and then insert that into a db.

However, the file only gets parsed halfway through the first line. I
couldn't at first figure out why it would stop. If I opened the file
in notepad, added a space, then deleted the space, the file would
then parse correctly.

I then opened the file in wordpad and discovered that where the
parsing stops there is a little square that doesn't show up in
notepad, assuming some type of special character or something, but I
have no idea what.
If I manually delete the little square, then it parses fine (until it
runs into the one on the next line etc)...

is there any way to get past this? I am beating my head against the
wall and can no longer even see straight...

tia
Stephenie


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:parsing txt file - seems unparsable

2003-10-01 Thread Stephenie Hamilton
it does not display the whole file. it stops when it gets to the little square on the first line. i can't even get to the part of inserting into db because i get only part of the first line. sigh 
Stephenie



if you output the content of the file in your cf template (prior to db
insert) does it display the whole thing? If so, are you using
cfqueryparam?

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:parsing txt file - seems unparsable

2003-10-01 Thread Stephenie Hamilton
If i open the file in notepad, then save it (without making any changes) it works fine. h...wonder how/if i can use cfexecute to have notepad open the file and then save it?
other than that, i can't think of anything else...

Steph

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




debugging - query and includes

2003-09-26 Thread Stephenie Hamilton
At my new job we are not allow access to the CFAdministrator, and Iwant to use debugging, so I got a copy of cf_debug as we are usingfb3 and it works great, except it doesn't list queries or includeslike the cfadmin debugging does. Is there some undocumented tag orsomething that will allow me to dynamically display the query andinclude list? I have searched the archive and without specificallyhard coding the name of the query i cannot find a way to output theresults.tia~~Stephenie Hamilton
 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]



Re:debugging - query and includes

2003-09-26 Thread Stephenie Hamilton
Yes I am talking about the cf_debug tag you were a part of.well crud. I was hoping someone had the golden kernel of knowledge on how to get that info. thanks anyway.~~StephenieIf I remember sql and cfincludes where two things we could not tie into withcf_debug. That is if your talking about the cf_debug I helped write awhileback along with Scott Van Vliet. We looked into this and I believeScott spoke with Ben Forta about this andI can't fully remember why but the cfinclude collection and query/sqlcollection is not exposed outside away from CFs own debugging. But, someone may have written a com object by now. Shawn Regan
 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]



oracle newbie

2003-09-19 Thread Stephenie Hamilton
ok, i am having trouble with a simple query.
in oracle worksheet, this produces 11 records (what it should be)

SELECT shp_id, spr_nr, loc_cd, pkg_id, csn_na, xcp_cd, act_cd, asn_ir
FROM tbl_shp 
WHERE asn_ir IS null

but the same statement in CF produces 0 records...
this is the first time i have played with oracle, so am i just having
a bad brain day or what?
~~
Stephenie


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137730
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


Re:oracle newbie

2003-09-19 Thread Stephenie Hamilton
hey, i just started here, i had no control over the db at all
sigh
~~
Steph


Those have to be the most obfuscated column names I've ever seen :) 

- Jim

~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137733
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


Re:oracle newbie

2003-09-19 Thread Stephenie Hamilton
I am not sure what the schema name is, they didn't tell me that...any hints on how i 
could find it using oracle worksheet?

I cannot use RDS (corporate rules...arg) so the only way I can even look at the db is 
with oracle worksheet, which is doesn't show me much compared to SQL Ent. Mgr (which 
is what i worked with the last 3 years.)

~~
Steph



which should throw an error if this is required, should it not?  
Unless there are two tables, one under the schema and one without ala 
a synonym.

Stephanie, out of curiosity can you use RDS to browse this table?  Can 
you run the SQL in CFStudio's query tool?

Doug

~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137737
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


Re:oracle newbie

2003-09-19 Thread Stephenie Hamilton
I am using HomeSite+ (5.1)
~~
Steph



Stephanie,
Are you using Dreamweaver or Studio? I just did a search on oracle
worksheet because I don't actually know what that is (I use SQl Plus or SQL
Navigator or TOAD to connect to Oracle and monkey with queries.) and I found
a thread that is similar:
http://www.tek-tips.com/gpviewthread.cfm/qid/405093/pid/770/lev2/4/lev3/31

Of course, there's no solution. But, the link to the other thread in this
thread seems to indicate it might be an issue with dreamweaver...?

-d

~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137741
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re:oracle newbie

2003-09-19 Thread Stephenie Hamilton
ok, this is wacked, but another developer came over and told me that his view in 
oracle worksheet is different, here you have to actually tell it to commitarg! i 
was not aware of that, so as soon as i commited the changes to the table, cf showed me 
the correct recordset.

double sigh
Thanks for all the suggestions! you guys are the best grin
~~
Steph
~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137755
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


OT: onsite CF training recommendations

2003-09-15 Thread Stephenie Hamilton
I have recently started a new job with a great company. Some of my
team members have come up through the ranks of the company and we
would like to get them some solid CF foundation training. We prefer
on site. If any of you have had good experiences with a training
outfit, please send me their info off list. Thanks!!
~~
Stephenie Hamilton
UPS World Wide Logistics
Internation Shipment Resolution Application Developer
[EMAIL PROTECTED]


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


FB4 Downloads

2003-09-10 Thread Stephenie Hamilton
Does anyone have the FB4 files they can either send to us or put up a link please? 
pretty please? with cf_sugar on top??
Steph



Does anyone know where FB4 can be downloaded? It seems the FB beta site 
is down and I really need to get these files.

Thanks,
Clint


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


FB4 Downloads

2003-09-09 Thread Stephenie Hamilton
I am in the same boat right now. I especially need the fb4 for CF5 files. If anyone 
has them already, can you please put them up with a link for us?

Thanks!
Stephenie Hamilton
Certified Macromedia ColdFusion Developer

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


FB4 Downloads

2003-09-09 Thread Stephenie Hamilton
the site has been coming and going, however, i have hit the request page about 6 times 
with 2 email addresses and no files have shown up.
steph



Beta site seems to be up.  If not let me know and I will email them to you.


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: Anyone developing apps relating to multiplayer gaming? (MMORPG)

2003-08-25 Thread Stephenie Hamilton
Check the FlashComm list at figleaf. I have seen people talking about
dev. Multi player games there.
http://chattyfig.figleaf.com/



~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting

Do you want complete ColdFusion Administrator access?
- CFX-Advanced VPS - 
http://www.cfxhosting.com/Plans/s_cfxadvancedVPS.cfm




-Original Message-
From: Stacy Young [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 25, 2003 3:58 PM
To: CF-Talk
Subject: OT: Anyone developing apps relating to multiplayer gaming?
(MMORPG)


Little bit OT, Anyone out there involved in multiplayer gaming
development? ...and better yet also working with Web Services and/or
CF/Flash/Flashcomm?

Cheers!

Stace


AVIS IMPORTANT:
--- 
Les informations contenues dans le present document et ses pieces
jointes sont strictement confidentielles et reservees a l'usage de la
(des) personne(s) a qui il est adresse. Si vous n'etes pas le
destinataire, soyez avise que toute divulgation, distribution, copie, ou
autre utilisation de ces informations est strictement prohibee. Si vous
avez recu ce document par erreur, veuillez s'il vous plait communiquer
immediatement avec l'expediteur et detruire ce document sans en faire de
copie sous quelque forme.

WARNING:
---
The information contained in this document and attachments is
confidential and intended only for the person(s) named above. If you are
not the intended recipient you are hereby notified that any disclosure,
copying, distribution, or any other use of the information is strictly
prohibited. If you have received this document by mistake, please notify
the sender immediately and destroy this document and attachments without
making any copy of any kind.


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: 6.1 Install

2003-08-21 Thread Stephenie Hamilton
If you are not using the built in web server you should not have to
specify the port (:80), also try changing localhost to 127.0.01


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting

Do you want complete ColdFusion Administrator access?
- CFX-Advanced VPS - 
http://www.cfxhosting.com/Plans/s_cfxadvancedVPS.cfm




-Original Message-
From: Robert Shaw [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 21, 2003 12:16 PM
To: CF-Talk
Subject: 6.1 Install


I installed 6.1 and everything appeared to go smooth, however, the 
administrator will not start. 
http://localhost:80/CFIDE/administrator/index.cfm on the server where MX
is 
installed returns a FILE NOT FOUND message.  Opening IIS shows CFIDE
and 
CFDOCS pointing to c:\Intepub\wwwroot.  But during the installation I 
selected the home directory for my web site to install these files
under.  
The home directory is on another drive.  I'm wondering if there is a ini

file pointing to WWWroot as a default?

Any thoughts on how to fix this?

TIA,
Rob

_
bGet MSN 8/b and help protect your children with advanced parental 
controls.  http://join.msn.com/?page=features/parental


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: null null errors

2003-08-20 Thread Stephenie Hamilton
Can you be more specific? Are you seeing this in a page or in a log
file?


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting

Do you want complete ColdFusion Administrator access?
- CFX-Advanced VPS - 
http://www.cfxhosting.com/Plans/s_cfxadvancedVPS.cfm




-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 19, 2003 6:55 PM
To: CF-Talk
Subject: null null errors


Anyone have any ideas as to what a null null error is?

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: CFMAIL or me?

2003-08-20 Thread Stephenie Hamilton
What are you using for your mail server? What os are you on?
Ensure you have the setting in CF Admin to log all email errors, then
check the log to see why it is. It probably is not allowed to relay to
that outside domain through the smtp server you are using for cfmail,
but without more details I can't say for sure.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting

Do you want complete ColdFusion Administrator access?
- CFX-Advanced VPS - 
http://www.cfxhosting.com/Plans/s_cfxadvancedVPS.cfm




-Original Message-
From: Sean Hynes [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 20, 2003 2:53 AM
To: CF-Talk
Subject: CFMAIL or me?


Anyone got any ideas on why CFMAIL is doing this?

One last thing is it 6.0 MX with update 3 OR iMS mail. (coolfusion.com)
OR 
Some setting?

THIS DOESN'T work if its an outside mail server address: cfmail
to=outside server domain email from=[EMAIL PROTECTED] 
subject=Square Hat Membership  Card

THIS ONLY WORKS When its:
cfmail to=outside server domain email
from=[EMAIL PROTECTED] 
subject=Square Hat Membership  Card  cc or 
bcc=[EMAIL PROTECTED] (squarehatters.com is an internal
server 
domain email)

OR
an internal (Server domain email)
cfmail to=sameserverdomain.com from=[EMAIL PROTECTED] 
subject=Square Hat Membership  Card

HOW WEIRD IS THAT? ANY ideas?


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: ISP Control Panel apps...

2003-08-19 Thread Stephenie Hamilton
Try the Intranet/Hosting Toolkit from 
http://www.intrafoundation.com/ihtk.asp


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting

Do you want complete ColdFusion Administrator access?
- CFX-Advanced VPS - 
http://www.cfxhosting.com/Plans/s_cfxadvancedVPS.cfm




-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 18, 2003 4:00 PM
To: CF-Talk
Subject: ISP Control Panel apps...


Hey all-

I'm looking for a ColdFusion solution control panel application for a 
small ISP client.  Anyone have any suggestions?  Even a solid 
framework to start from would be helpful.  

Also, I'm looking for (for the same client) apps (COM objects?) which 
will allow me to make/edit entries in the Windows DNS server and IIS 
Manager (or one app/COM object that does both.  I've found the ASPDNS 
project on SourceForge, and that might be something I can use after 
rewriting the ASP in ColdFusion, but that just makes changes in the 
DNS server.

Any help would be appreciated...

Thanks,

Kev


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: See a blank page when I run a .cfm file

2003-08-19 Thread Stephenie Hamilton
If you cannot run any cf pages, then try uninstalling/reinstalling.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting

Do you want complete ColdFusion Administrator access?
- CFX-Advanced VPS - 
http://www.cfxhosting.com/Plans/s_cfxadvancedVPS.cfm




-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 18, 2003 11:30 AM
To: CF-Talk
Subject: See a blank page when I run a .cfm file


I was having this problem with CFMX with Updater 3 installed, I updated
to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file
on a browser. This is what I'm trying to do:

.cfm file
-
cfset myName = TestUser
This is a test cfoutput#myName#/cfoutput
--

When I run this file on the browser I see a blank page. When I view the
source I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 
Transitional//EN 
HTMLHEAD 
META http-equiv=Content-Type content=text/html; 
charset=windows-1252/HEAD 
BODY/BODY/HTML

Just found this thread on the Macromedia Forums which dates back to 19
Dec 2002. 

http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3thre
adid=517462highlight_key=ykeyword1=blank%20pagekeyword2=browser

The problem is still there..

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


RE: See a blank page when I run a .cfm file

2003-08-18 Thread Stephenie Hamilton
What version of CF?


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 18, 2003 6:47 AM
To: CF-Talk
Subject: See a blank page when I run a .cfm file


Can somebody please tell me how to fix this?

I have this strange problem. I'm running coldfusion MX
on my Win2k server and IIS 5.0. For some reason when I
run a .cfm file on my localhost:
http://localhost/test.cfm, all I see is a BLANK Page.
When I view the source, I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0
Transitional//EN
HTMLHEAD
META http-equiv=Content-Type content=text/html; 
charset=windows-1252

script LANGUAGE=JAVASCRIPT TYPE=text/javascript 

!--


function _CF_onError(form_object, input_object, object_value,
error_message)
{
alert(error_message);
return false;   
}



function _CF_hasValue(obj, obj_type)
{
if (obj_type == TEXT || obj_type == PASSWORD)
{
if (obj.value.length == 0) 
return false;
else 
return true;
}
else if (obj_type == SELECT)
{
for (i=0; i  obj.length; i++)
{
if (obj.options[i].selected)
return true;
}

return false;   
}
else if (obj_type == SINGLE_VALUE_RADIO || obj_type ==
SINGLE_VALUE_CHECKBOX)
{

if (obj.checked)
return true;
else
return false;   
}
else if (obj_type == RADIO || obj_type == CHECKBOX)
{

for (i=0; i  obj.length; i++)
{
if (obj[i].checked)
return true;
}

return false;   
}
}


function  _CF_checkCFForm_1(_CF_this)

{

if  (!_CF_hasValue(_CF_this.Subject, TEXT )) 

{

if  (!_CF_onError(_CF_this, _CF_this.Subject,
_CF_this.Subject.value, Error in Subject text.))

{

return false; 

}

}


return true;

}


//--

/script

/HEAD
BODY/BODY/HTML

I can't run cf administrator or call any ColdFusion
File. I don't know what's happenning, it was all
working last week. I've checked the IIS App Mappings,
and I see the .cfm, .cfc, .cfml and .jsp application
mappings for my default website.

I can run a .html and a .asp file, its just
coldfusion.

Can somebody tell me how to fix this problem. I'm just stranded and 
don't know what to do.

Cheers
Allan

__

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.507 / Virus Database: 304 - Release Date: 8/4/2003
 

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: See a blank page when I run a .cfm file

2003-08-18 Thread Stephenie Hamilton
Have you followed this tech note
http://www.macromedia.com/support/coldfusion/ts/documents/java_lang_outo
fmemory.htm

?

Also, are you getting outofmemory errors in your cfusionmx/runtime/logs
files?

If you restart CF does the issue resolve itself? Is this happening only
on this page or multiple pages? How much RAM do you have in the server?


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 18, 2003 11:17 AM
To: CF-Talk
Subject: See a blank page when I run a .cfm file


I was having this problem with CFMX with Updater 3 installed, I updated
to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file
on a browser. This is what I'm trying to do:

.cfm file
-
cfset myName = TestUser
This is a test cfoutput#myName#/cfoutput
--

When I run this file on the browser I see a blank page. When I view the
source I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 
Transitional//EN 
HTMLHEAD 
META http-equiv=Content-Type content=text/html; 
charset=windows-1252/HEAD 
BODY/BODY/HTML

Just found this thread on the Macromedia Forums which dates back to 19
Dec 2002. 

http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3threa
did=517462highlight_key=ykeyword1=blank%20pagekeyword2=browser

The problem is still there..

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Erratic CF/IIS issues

2003-08-04 Thread Stephenie Hamilton
Ensure you have done this:

http://www.macromedia.com/support/coldfusion/ts/documents/tn18258.htm


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Jeff Lucido [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 1:09 PM
To: CF-Talk
Subject: Erratic CF/IIS issues


I am experiencing the strangest problem I have ever seen with hosting CF
apps. on an IIS box. Specifically, I have several virtual websites
configured in IIS (not virtual directories). The erratic issue is
occasionally one of the virtual websites will be displayed on top of the
virtual website a user makes a request for. Specifically, a user wants
xyz.com but abc.com is displayed on top of xyz.com. Nothing displays in
the site abc.com except for broken links since the images do not exist
in xyz.com. This is very odd and extremely annoying.

I tried the MS knowledge base, but those efforts were fruitless (at
least for me). I tried deleting both virtual websites, renaming their
source directories, kicked the box and then re-created the virtual
websites using new names. No luck, still happens. I cannot find anything
in the log files and it does not occur at any regular frequency. It may
go several weeks working properly and then, bam site not available. The
only way I can get the sites to serve up properly after this has
happened is to kick the WWW publishing service and CF MX. Server
specifics:

-W2K Server, SP3
-CFMX, updater 3

Any ideas and more importantly any way to correct this problem?

Thanks!
-JSLucido



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.505 / Virus Database: 302 - Release Date: 7/30/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: OT - IIS in 2000

2003-07-29 Thread Stephenie Hamilton
It should be under start -- programs -- administrator tools.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Robert Orlini [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 29, 2003 4:10 PM
To: CF-Talk
Subject: OT - IIS in 2000


Hello,

Sorry this is OT, but its quick: I upgraded form NT 4.0 to Advanced
Server 2000 and now IIS's Internet Service Mgr does not list in the
Program list under Start. In order to get to it I have to go to
Configure Your Server and then click Web/Media Server to access it.

Anyone run into this? Have I configured something wrong?

Thanks in advance.

Robert O.
HWW

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: RE: What could possibly cause this??!

2003-07-29 Thread Stephenie Hamilton
I would cycle CF and IIS before doing any type of install.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: s. isaac dealey [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 29, 2003 5:16 PM
To: CF-Talk
Subject: RE: RE: What could possibly cause this??!


I've seen IIS handle a method field without complaint before 
-- could be corruption in any of the browser (try another 
browser), IIS (reinstall IIS) or ColdFusion Server (reinstall 
ColdFusion Server). You can isolate the issue to corruption in 
either IIS or ColdFusion Server by putting the code on another 
server temporarily to test. 

Incidentally, you should be able to reference the form variable 
using this: #form[od]# -- although I don't know why you'd 
want to. :) 

hth 

Isaac


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.504 / Virus Database: 302 - Release Date: 7/24/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: SSL

2003-07-22 Thread Stephenie Hamilton
I have found that this is many time the images. If that is the case, the
in the source you will just see a relative path, change that to a full
url that includes the https and you will eliminate the issue.

Also, if you want you can choose no for displaying the non secure
content and it should give you some indication of what isn't secure.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Mark Leder [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 22, 2003 2:12 PM
To: CF-Talk
Subject: SSL


Hi all,
In IE, when I go to a page which is using an SSL, I get an alert stating
Do you want to display the non-secure content. 

Is there a way to display or call a list of links or images which are
not secured, so that I can relocate them into a secure directory?  I've
tried viewsource with no luck.

Thanks, Mark 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMAIL multipart and attachment

2003-07-22 Thread Stephenie Hamilton
I do the same thing (except no images) in our welcome letter as many
people, especially developers do not want html email..

  !--- cfset default email params ---
CFSET MIMEBOUNDARY = MIME-BOUNDARY
cfset crlf = chr(13)chr(10)
CFSET contenttype = multipart/alternative;
boundary=MIMEBOUNDARY
CFSET myHeaders = X-Mailer: MIME-Version: 1.0
CFSET myPlainMsgTop = --#MIMEboundary##crlf#Content-Type: text/plain;
charset=us-ascii#crlf#Content-Transfer-Encoding: 7bit#crlf##crlf#

CFSET myHTMLMsgTop = --#MIMEboundary##crlf#Content-Type: text/html;
charset=us-ascii#crlf#Content-Transfer-Encoding: 7bit#crlf##crlf#


cfmail to=#email# from=[EMAIL PROTECTED] subject=Welcome to
CFXHosting! type=HTML
cfmailparam name=Content-type value=#contenttype#
cfmailparam name=MIME-Version value=1.0

!--- plain text version ---
#myPlainMsgTop#

Plain text content here

!--- html version ---
#myHTMLMsgTop#

 html content here
/cfmail 


This allows users who have html email enabled to receive the html
version and if they don't they get the plain text
~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Everett, Al [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 22, 2003 2:50 PM
To: CF-Talk
Subject: CFMAIL multipart and attachment


I know this is possible, but I just can't get it to work.

Marketing wants to send out a message to a bunch of our customers. Being
Marketing, of course, they want to send HTML e-mail. I've convinced them
that 1) Lots of people don't want/can't read HTML e-mail and 2) that
links to a website from an HTML message to retrieve an image is are
often (wisely) blocked within e-mail. So, I've convinced them that there
should be a text alternative and that the image should be sent attached
to the message.

I can create an e-mail message with a plain text alternative section. I
can create a message with the image attached. Unfortunately, I've been
unable to do both.

Help?

I'm using CF5.0 on W2K. A non-CFMAIL solution is not viable.

--
NOTICE:Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only. Access
to this E-mail by anyone else is unauthorized. If you are not an
addressee, any disclosure or copying of the contents of this E-mail or
any action taken (or not taken) in reliance on it is unauthorized and
may be unlawful. If you are not an addressee, please notify your system
administrator immediately at [EMAIL PROTECTED]

**Although this email and any attachments are believed to be free of any
virus or other defect that might affect any computer system into which
it is received and opened, it is the responsibility of the recipient to
ensure that it is virus free and no responsibility is accepted by the
sender for any loss or damage arising in any way from its use.

---

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Flash Gateway

2003-07-22 Thread Stephenie Hamilton
Make sure you have a virtual directory named JRunScripts under your
domain and it points to the folder that holds your jrun.dll  (usually
Cfusionmx\runtime\lib\wsconfig\1)

Then also ensure you have an ITAPI filter setup named
JRunConnectorFilter that points to the jrun.dll.

Then you might need to stop/restart services. You should then be able to
go to your gateway url and get a blank page, if so, you are good to go.
If you get a 404 error the config isn't right.

Also if you are running updater 3, ensure you have done the following:


http://www.macromedia.com/support/coldfusion/ts/documents/enable_flash_w
ebservices.htm


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Candace Cottrell [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 22, 2003 3:10 PM
To: CF-Talk
Subject: Flash Gateway


Hey all, I'm still having issues with my flash gateway...
 
Here is a screenshot of the error I get (which is strange because in the
past it's been a 404).
 
http://www.childrensdayton.org/flashss.gif
 
 
I tried running the disconnect and reconnect connectors but to no avail
this time.
 
Should I have any CF mappings set up?
 
Running IIS 5 with CFMX Updater 3 on a Win 2K box.
 
This IIS has 2 sites, the default one (which is the one I am trying to
use) and the Remote Access Launchpad.
 
 
 
Candace K. Cottrell, Web Developer 
The Children's Medical Center 
One Children's Plaza 
Dayton, OH 45404 
937-641-4293 
http://www.childrensdayton.org
 
 
[EMAIL PROTECTED]

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.502 / Virus Database: 300 - Release Date: 7/18/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: siteminder :: CFserver 5 :: what's it do??

2003-07-18 Thread Stephenie Hamilton
If you are not using Sandbox or Advanced Security, then yes you can
disable it. 

~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Kola Oyedeji [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 18, 2003 5:55 AM
To: CF-Talk
Subject: RE: siteminder :: CFserver 5 :: what's it do??


Dan

Can this service simply be disabled then?

Thanks

Kola

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.501 / Virus Database: 299 - Release Date: 7/14/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: MSDN on CF - ASP.net

2003-07-17 Thread Stephenie Hamilton
That would be Pet Market (a great example of a RIA)
http://www.macromedia.com/devnet/mx/blueprint/


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 17, 2003 2:08 PM
To: CF-Talk
Subject: RE: MSDN on CF - ASP.net


Anyways...Another thing I am interested in is :

Does Macromedia have a 'real world' database application example written
in CF MX that would showcase the features of the CFMX suite the way
Microsoft is using these examples to push .Net?

-Gel



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.501 / Virus Database: 299 - Release Date: 7/14/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: 'Webinars'

2003-07-10 Thread Stephenie Hamilton
You can if you incorporate Camtasia, however I believe I heard that it
would be a feature of flashcomm soon, but don't quote me.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Josh Remus [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 10, 2003 12:26 PM
To: CF-Talk
Subject: RE: 'Webinars'


Which reminds me - can you do desktop sharing with FlashComm?  Because
that was another thing that's very handy, at least for IT-related demos.

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.493 / Virus Database: 292 - Release Date: 6/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: 'Webinars'

2003-07-10 Thread Stephenie Hamilton
WOOHOO!  


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Mike Chambers [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 10, 2003 12:41 PM
To: CF-Talk
Subject: Re: 'Webinars'


Breeze Live, which we announced this morning at Flash Forward, has
support for screen sharing.

More info at:

http://www.macromedia.com/macromedia/proom/pr/2003/breeze_live.html

http://www.macromedia.com/software/breeze/

http://www.markme.com/mesh/archives/002852.cfm

mike chambers

[EMAIL PROTECTED]

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.493 / Virus Database: 292 - Release Date: 6/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Emails no longer sent through site

2003-07-10 Thread Stephenie Hamilton
What OS?
What are you using for the mail server in CF Admin? Are you using the
server attribute of cfmail tag?

I have found the best way on a windows server is to use the local SMTP
service, set it to allow relaying only from 127.0.0.1, then in CF Admin
enter localhost for the mail server.
This will allow the email to be sent directly from the web server and
bypass the email server and any authentication issues altogether. Note:
do not use the server attribute of cfmail tag or you will override the
CF Admin settings.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Russ [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 10, 2003 4:16 PM
To: CF-Talk
Subject: Emails no longer sent through site


This is really strange--at least in my exposure to CFMX thus far.

A few weeks back, a site of mine simply stopped sending emails
(www.ricsoensgroup.com) for those playing at home.  Stopped cold.  No
errors, no explanations, nothing.

Then, when I moved to a new server last week, it never re-started and
it's the only site that this is happening with...others are working just
fine and I re-used the same code, so I'm fairly well baffled.

Does anyone have any idea as to why this could occur?

Thanks,

Russ


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: ColdFusion Server x Hardware

2003-07-09 Thread Stephenie Hamilton
If you are running them all on the same server, then I would definitly
suggest another 512 MB RAM.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Rodrigo Cohen [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 09, 2003 11:35 AM
To: CF-Talk
Subject: ColdFusion Server x Hardware


Ok...

Thanks for everybody !
I am using an Oracle database with CF5.0 and IIS 5.0...
All of them in same machine...

So i think that overload my machine, but as all of you said, my actual
configuration is very good...

Thanks again.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFX_IMAGE

2003-07-03 Thread Stephenie Hamilton
That only lists Latest version is 1.4.8. and there is a newer better
version.
Use Dan Phillips link for the newest version.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Benjamin Rosenthal [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 03, 2003 11:44 AM
To: CF-Talk
Subject: CFX_IMAGE


Here is the author's home page.  You can download it here and get the
docs too.

http://www.kolumbus.fi/jukka.manner/

Benjamin
Gap Up LLC

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CrystalTech says ALL variables must be locked

2003-07-03 Thread Stephenie Hamilton
Let me elaborate. We ask all customers to lock their shared scope
vars,(ie: session, application). But we do not in any way tell them to
lock non shared scope vars (ie: local, client etc).




~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Dan Phillips [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 03, 2003 12:29 PM
To: CF-Talk
Subject: RE: CrystalTech says ALL variables must be locked


We prefer that clients use them but do not force the issue. 

Is the application sending email when it's not supposed to or just
sending garbage when a message is supposed to go out?

Dan Phillips
www.CFXHosting.com 
1-866-239-4678
[EMAIL PROTECTED]

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.493 / Virus Database: 292 - Release Date: 6/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: TagCFMail::sendMessage

2003-07-02 Thread Stephenie Hamilton
What version of CF? OS?

What do you have set for the mail server in the CFAdministrator?

~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Ihrig Paul E Cont 88 ABW/EM [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 02, 2003 9:31 AM
To: CF-Talk
Subject: TagCFMail::sendMessage


ok i am getting errors on all CFMAIL tags on the production servers:

the code is fine on the localhost.
the guys have given me access to the mail server and it looks fine...
but i cant figure out this problem..

also trying to use qforms /lib in the base dir, but cant get it to
recognize or execute simple validations... even when using a direct
path... this is my 2nd day on the job  am not doing so well yet. there
old code is in fusebox, which i don't know at all.

want to get the mail thing going first..

thanks
-paul

Error Diagnostic Information
unknown exception condition

TagCFMail::sendMessage

The error occurred while processing an element with a general identifier
of (CFMAIL), occupying document position (7:1) to (7:128).

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFX_IMAGE

2003-07-02 Thread Stephenie Hamilton
Is that the newest version of the tag?


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Dan Phillips [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 02, 2003 5:31 PM
To: CF-Talk
Subject: RE: CFX_IMAGE


Who ever wants it, http://relativepath.net/cfximage/cfx_image.zip
Docs are included

Just don't laugh at my home page. I got bored one day and have not had
time to fix it :-) 

Dan Phillips
www.CFXHosting.com 
1-866-239-4678
[EMAIL PROTECTED]

-Original Message-
From: Hassan Arteaga Rodríguez [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 02, 2003 7:28 PM
To: CF-Talk
Subject: Re: CFX_IMAGE


I'd like to receive it also.

Regards

--
M. Sc. Hassan Arteaga Rodriguez
Microsoft Certified System Engineer
WEB Programmer. Network Admin


-Original Message-
From: Tim Do [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: Wed, 2 Jul 2003 14:11:34 -0700 
Subject: CFX_IMAGE

 Can somebody send me this tag?  I can seem to download it from MM
  
 Thanks!
  
  http://www.wng.com/ 
 Tim Do
 Programmer/Analyst
 Western National Group
 949.862.6231
 www.wng.com
 
  
 
 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Problem with Connectors

2003-07-01 Thread Stephenie Hamilton
Hmmm, I am not sure how to restore the original perms. Sounds like you
might want to start all over though.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 30, 2003 5:36 PM
To: CF-Talk
Subject: RE: CFMX Problem with Connectors


Well, I got access denied when trying to uninstall the SP4, so I guess I

must of screwed up the file permission somewhere along the way. Is there

anyway to reset file permissions to their defaults. I did mess with some

file security settings for security...

Brook

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.493 / Virus Database: 292 - Release Date: 6/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Problem with Connectors

2003-07-01 Thread Stephenie Hamilton
Aha! So were you able to get mx working with sp4? Or did you have to
remove sp4?


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 01, 2003 10:27 AM
To: CF-Talk
Subject: RE: CFMX Problem with Connectors


Thanks for the reply. It turns out it was Black Ice's Rouge application 
protection running in another session (I am connected to a dedicated
server 
via terminal services and have never sat at the machine).

Brook

At 10:15 AM 7/1/2003 -0400, you wrote:
Hmmm, I am not sure how to restore the original perms. Sounds like you 
might want to start all over though.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED]
Sent: Monday, June 30, 2003 5:36 PM
To: CF-Talk
Subject: RE: CFMX Problem with Connectors


Well, I got access denied when trying to uninstall the SP4, so I guess 
I

must of screwed up the file permission somewhere along the way. Is 
there

anyway to reset file permissions to their defaults. I did mess with 
some

file security settings for security...

Brook

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.493 / Virus Database: 292 - Release Date: 6/25/2003




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Problem with Connectors

2003-06-30 Thread Stephenie Hamilton
Did you try to run the connectors manually instead of the bat files?
http://livedocs.macromedia.com/cfmxdocs/Installing_ColdFusion_MX/configu
ring.jsp


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 30, 2003 5:05 PM
To: CF-Talk
Subject: CFMX Problem with Connectors


I am trying to re-install CFMX on a new windows 2000 Server / SP4.

I installed CFMX and then immediately applied the updater 3. Under the 
wsconfig/ directory there were no number directories created and no 
jrun.dll. The connectors did not seem to install correctly so I tried to

rerun the connector scripts.

Problem is that whenever I run any of the BAT files in the connectors 
folder they all hang and do not return anything after click to
continue. 
At one point, I got an access denied message.

Any ideas? I tried to uninstall CFMX and got a fatal error.

Brook



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Problem with Connectors

2003-06-30 Thread Stephenie Hamilton
It could very well be. I know we haven't installed it yet (you know how
it goes with MS updates!).
Can you uninstall sp4?
I would get SP4 off of there personally and get CFMX/updater 3 working,
then see if you can install SP4 (if you dare! Muhhahaahahaa).



~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 30, 2003 5:20 PM
To: CF-Talk
Subject: RE: CFMX Problem with Connectors


Hi Stephenie,

I tried running the below and same thing, it just hung and did nothing.
It 
did not eat up the processor or freeze the machine. It just hung the 
command prompt window and did nothing. Could this be SP4 related? Has
CFMX 
been tested on SP4?

c:\cfusionmx\runtime\jre\bin\java -cp c:\cfusionmx\runtime\lib -jar 
c:\cfusionmx\runtime\lib\wsconfig.jar -ws IIS -site 0 -map 
.cfm,.cfc,.cfml,.jsp -v

Brook

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.493 / Virus Database: 292 - Release Date: 6/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMail

2003-06-27 Thread Stephenie Hamilton
Which version of CF?


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Bruce, Rodney S HQISEC/Veridian IT Services
[mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2003 2:16 PM
To: CF-Talk
Subject: CFMail


Hi all

Is there a way when using CFMAIL to get CF to drop the mail into a
diffrent dir then ../mail/spool?

Thanks
Rodney


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMail

2003-06-27 Thread Stephenie Hamilton
Yes, 

in the registry under HKEY_LOCAL_MACHINE -- SOFTWARE --Allaire --
CurrentVersion -- Mail there is a key for BaseDirectory that should
point to your cfusion\mail folder, you can change this, but I believe
wherever you point this should have a spool dir inside of it (ie: don't
point it straight to another spool dir, but to a dir with spool dir
inside it).




~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Bruce, Rodney S HQISEC/Veridian IT Services
[mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2003 2:40 PM
To: CF-Talk
Subject: RE: CFMail


CF 5, win2K

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.491 / Virus Database: 290 - Release Date: 6/18/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Is Flash really THAT good?

2003-06-20 Thread Stephenie Hamilton
Can we get a link to your Big Book of Useless Rubbish No One Should
Waste Their Time?
(just so we don't waste any more time reading useless rubbish)
gdr

~~
Stephenie 





-Original Message-
From: Haggerty, Mike [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 20, 2003 9:44 AM
To: CF-Talk
Subject: RE: Is Flash really THAT good?


Yep, Flash is that good. You need to trust me, not this author. 

Flash does a lot right now, and this guy chose to focus on it's
usefulness in animation and graphics. That's a very poor representation
of Flash's abilities, and the article is anything other than a critique
of it's role in application development.

In fact, this article is so bad I am adding it to my Big Book of
Useless Rubbish No One Should Waste Their Time reading. 

Laters,
M

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.489 / Virus Database: 288 - Release Date: 6/10/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Is Flash really THAT good?

2003-06-20 Thread Stephenie Hamilton
That is fine and all, but what I really miss in flash is the ability to
right click --  open in new window...


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Chris Kief [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 20, 2003 3:47 PM
To: CF-Talk
Subject: RE: Is Flash really THAT good?


Guess you missed it...

http://www.riseinteractive.com/cftalk/

chris


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.489 / Virus Database: 288 - Release Date: 6/10/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Is Flash really THAT good?

2003-06-20 Thread Stephenie Hamilton
You know what I meant. :Þ


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: CF Dude [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 20, 2003 4:24 PM
To: CF-Talk
Subject: Re: Is Flash really THAT good?


How do you miss a feature that was never there?

I agree though.  I wish you could have custom context menus as well.

E

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.489 / Virus Database: 288 - Release Date: 6/10/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Host with the leader in ColdFusion hosting. 
Voted #1 ColdFusion host by CF Developers. 
Offering shared and dedicated hosting options. 
www.cfxhosting.com/default.cfm?redirect=10481

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Server Errors :(

2003-06-17 Thread Stephenie Hamilton
Jrun has to be running, ie: check in your services and make sure CF
Application Server is started.

Then run the connector command again


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Critz [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 17, 2003 9:01 AM
To: CF-Talk
Subject: Re: CFMX Server Errors :(


oi Critz!!

I just tried to remove_all_connectors then reattach the iis one.

I got an error when I did remove all... and when i tried to attach the
IIS one it said:

os.name: Windows 2000
os.version: 5.0
os.arch: x86
platform: intel-win
web server: IIS
File C:\CFusionMX\runtime\lib\wsconfig\jrunwin32.dll newer than JAR file
C:\CFus ionMX\runtime\lib\wsconfig.jar so not extracted
findServers(): attempting connect to port 2901 on host 127.0.0.1 Could
not connect to any JRun servers on host localhost. Confirm that the JRun
server is started. Press any key to continue . . .


i've just installed it... so i have no clue why it isn't finding it? :(















~~|
/index.cfm?forumid=4
ists/index.cfm?method=subscrib
faq

ted by CFHosting.com. The plac


tp://www.houseoffusion.com/cf_


us]


---
[This E-mail scanned for viruses by Declude Virus]


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Log files in MX

2003-06-17 Thread Stephenie Hamilton
Try LogMagic

http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn130#loc=en_u
sview=sn105viewName=Exchange%20Search
(watch for url wrap)



Or use
http://makeashorterlink.com/?F2B9534F4




~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Ciliotta, Mario [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 17, 2003 11:19 AM
To: CF-Talk
Subject: Log files in MX


Hi,

I was wondering if anyone knows of either a custom tag or might have
some code that will allow me to read the log file from a CF-MX server.
My company has decided that as programmers we have no access to the CF
admin and they will mot turn on the Sandbox Security so that I can view
them.  I know that this can be done with a RDS connection thru Studio
and view the logs directly but this is also not allowed in the
production environment here.

If anyone has any ideas of how this can be done of if something exist
that I can use to view the logs that would be great.

Thanks

Mario

This message is for the named person's use only. It may contain
sensitive and private proprietary or legally privileged information. No
confidentiality or privilege is waived or lost by any mistransmission.
If you are not the intended recipient, please immediately delete it and
all copies of it from your system, destroy any hard copies of it and
notify the sender. You must not, directly or indirectly, use, disclose,
distribute, print, or copy any part of this message if you are not the
intended recipient. CREDIT SUISSE GROUP and each legal entity in the
CREDIT SUISSE FIRST BOSTON or CREDIT SUISSE ASSET MANAGEMENT business
units of CREDIT SUISSE FIRST BOSTON reserve the right to monitor all
e-mail communications through its networks. Any views expressed in this
message are those of the individual sender, except where the message
states otherwise and the sender is authorized to state them to be the
views of any such entity. Unless otherwise stated, any pricing
information given in this message is indicative  only, is subject to
change and does not constitute an offer to deal at any price quoted. Any
reference to the terms of executed transactions should be treated as
preliminary only and subject to our formal written confirmation.



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Whaling? Whaling? C'mon people....

2003-06-16 Thread Stephenie Hamilton
?? (guessing wrong list)


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 16, 2003 12:41 PM
To: CF-Talk
Subject: Whaling? Whaling? C'mon people


...get with the plan...mammals are supposed to be slaightered in huge
factories (**munching on a burger for lunch**...not in their natural
habitats...

http://www.cnn.com/2003/WORLD/europe/06/16/whaling.conference/

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.489 / Virus Database: 288 - Release Date: 6/10/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: louisville cfug members

2003-06-11 Thread Stephenie Hamilton
Huh? Since when? Wtf?? I didn't even get an email about the new day.. Is
it always going to be on tues now? g


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Dave Lyons [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 10, 2003 9:46 PM
To: CF-Talk
Subject: louisville cfug members


Just want to take a second and thank you all for not showing up and
allowing me to take home all of the prizes  give-aways tonight! Granted
I was hoping paul would be there so I could win my monthly supply of
cdr's, haha

But seriously, it was tonight  not Thursday night, just fyi


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.488 / Virus Database: 287 - Release Date: 6/5/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Host with the leader in ColdFusion hosting. 
Voted #1 ColdFusion host by CF Developers. 
Offering shared and dedicated hosting options. 
www.cfxhosting.com/default.cfm?redirect=10481

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Back Buttons

2003-06-05 Thread Stephenie Hamilton
testing. cannot receive any cf-talk mail. 
~~
Stephenie 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Control Panel for hosting?

2003-05-30 Thread Stephenie Hamilton
Before we built our own dll's to do this type of thing we were using 
Lewis Sellers Intranet Hosting Kit
(http://www.intrafoundation.com/ihtk.asp)


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Troy Montour [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 28, 2003 5:14 PM
To: CF-Talk
Subject: OT: Control Panel for hosting?


Hello Everyone,
was wondering if anyone has written or knows of a good Control panel for
IIS web server 
as I want to allow users to change some of there own settings when
hosting there site 
with me but I haven't been able to find one that is already written.

looking for one in CF but doesn't have to be.

Thank you in advance for any information
Troy Montour

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.483 / Virus Database: 279 - Release Date: 5/19/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Data source error

2003-04-04 Thread Stephenie Hamilton
Hmmm, are  you using the system user as the user CF service operates
under? Or have you created a new user?

Ensure that the user has permissions on the database folder, it is also
a good idea to ensure the db is not in a folder that is accessible to
the web (ie: your inetpub/wwwroot or whatever dir structure you use).

Yes it should be a system dsn.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Eric Vacin [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2003 4:28 PM
To: CF-Talk
Subject: Re: Data source error


Stephanie,

I got it from the CF Admin...when I tried to do an ODBC socket to the
data source I created in the ODBC panel.  Below is the exact output:


*   Connection verification failed for data source: ss
[]java.sql.SQLException: SQLException occurred in JDBCPool while
attempting to connect, please check your username, password, URL, and
other connectivity info java.sql.SQLException: [MERANT][SequeLink JDBC
Driver][SequeLink Server]Could not create a trace file..


I've added a system DSN...this is right, right?

I'm starting to think its some kind of permissions thing as I have the
server locked down, very locked down.

Singed,

Eternally Confused.


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 2/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Data source error

2003-04-03 Thread Stephenie Hamilton
Did you get that from the windows odbc control panel? Are you adding it
as a system DSN or a file DSN?


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Eric Vacin [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2003 2:21 PM
To: CF-Talk
Subject: Re: Data source error


Thanks Stephanie!


When I tried that I got, Could not create trace file...

H Any ideas?

e


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 2/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Data source error

2003-04-02 Thread Stephenie Hamilton
To add to that, if you create the DSN in windows odbc control panel, it
does not show up in CF Administrator, but you can create it also in CF
Admin by adding it as an ODBC Socket datasource type (driver drop down).
When you enter the Data Source name, then choose ODBC Socket as the
driver type, then on the next screen it will give you a drop down named
ODBC DSN where you can select the DSN you created in the windows odbc
control panel.

HTH


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Dan Phillips [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 02, 2003 9:30 AM
To: CF-Talk
Subject: RE: Data source error


 How would I reset (sp?) the DSN?

Just delete it and recreate it 


when I at a data source via the control panel, it doesn't show up in
the CF Admin. However the reverse is true. When I add it in the CF
Admin, it does in fact show up in the control panel.

This is normal. Not sure why it happens but nothing to worry about 


Dan Phillips
www.CFXHosting.com 
1-866-239-4678 x105
[EMAIL PROTECTED]


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 2/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89
70.4



RE: Problems with MS03-007 and Cold Fusion MX

2003-03-20 Thread Stephenie Hamilton
We had this same issue with our shared MX servers.
Problem solved by removing/reinstalling the connectors, but was a majoy
PITA to do it at 5am.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Tim Laureska [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 20, 2003 9:08 AM
To: CF-Talk
Subject: FW: Problems with MS03-007 and Cold Fusion MX


Just passing this along

-Original Message-
From: Windows NTBugtraq Mailing List
[mailto:[EMAIL PROTECTED] On Behalf Of James Downes
Sent: Wednesday, March 19, 2003 2:26 PM
To: [EMAIL PROTECTED]
Subject: Problems with MS03-007 and Cold Fusion MX

All,

This is my first post to this list, so please don't be too harsh.

This is just a heads up and maybeof  help to others in a similar
situation.

We have applied MS03-007 on two of our servers running Win2k and Cold
Fusion MX. On subsequent testing we were getting strange results where
the 1st or default web server on an multihomed system gave us 404 errors
on everything except the default page. Other sites responded fine.

We removed the patch, both through an uninstall and through the Recovery
Console method described by Russ. In neither case was the problem
resolved.

We have not done thorough testing on this to determine exactly what
happened, but have resolved the problem by using the following procedure

Stop the WWW service
Stop the IIS Admin Service (if its running)
Run the Remove_ALL_Connectors batch file in CfusionMX/bin/connectors Run
the IIS_connector batch file in CfusionMX/bin/connectors Restart the WWW
service

One on of the servers we then had IIS grinding to a standstill that was
fixed by a restart, we are still investigating what may have gone on
there.

The servers now have the patch installed and are working with Cold
Fusion MX.

Best Regards


James Downes

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 2/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: WebDAV exploit?

2003-03-18 Thread Stephenie Hamilton
We patched 7 CF 5 servers yesterday. No issues at all.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Lofback, Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 18, 2003 4:36 PM
To: CF-Talk
Subject: WebDAV exploit?


Anybody had a problem with CF5 after applying the patch that corrects
the Microsoft WebDAV buffer overflow vulnerability for Win2K/IIS5?
We're looking at patching several CF5 boxes and heard that some folks
had problems.

Here's the WebDAV link (watch the wrap!):

http://www.microsoft.com/technet/treeview/default.asp?url=/technet/secur
ity/bulletin/MS03-007.asp

Thanks,
Chris Lofback

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



MS03-007: Unchecked Buffer in Windows Component May Cause Web Server Compromise

2003-03-17 Thread Stephenie Hamilton
For those running IIS


http://support.microsoft.com/default.aspx?scid=kb;en-us;815021

~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting




---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 2/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: some flash fun

2003-03-11 Thread Stephenie Hamilton
This was discussed awhile back on the Flashcomm list at figleaf:
According to Carlos Saenz 
-
Well here is how it works in laymen's terms:

Basically you have a table of numbers and symbols. To arrive at a
number, you are FORCED to do this:

1. X = {10 - 99} (any number from 10 to 99, you pick)

therefore:

2. a = {1 - 9} (must be first digit of X)
3. b = {1 - 9} (must be second digit of X)
4. X - (a+b) = C

3. C = 9*a

Therefore, C (the final answer) MUST BE 9*a.
So, if you picked say 25, then the ansewr (C) must be 18. If you
pick uhh 26! Then the answer is.. 18. If you pick 27, THEN the
answer is oh, uh, 18. But on the other hand if you pick 28 then the
answer is. er. 18.

If you look at the table and see whatever symbol is next to 9*a, it is
always the same symbol. So you can predict what the next symbol will be
before you click on the ball.

They also sprinkle the correct symbol on other numbers that you can
never arrive at, just to throw you off.

One question what did the hint about multiple monitors mean? I
missed that joke

-Carlos-

---



~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: sebastian palmigiani [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 11, 2003 4:32 PM
To: CF-Talk
Subject: OT:some flash fun


http://www.cyberglass.co.uk/FlashEx/mindreader.html

how they do that???


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Password protection IIS 5 and CFMX

2003-03-06 Thread Stephenie Hamilton
Ok, this is driving me crazy, what is the proper way to get a password
protected directory in IIS5 w/CFMX?

No matter if I try integrated or basic authentication, I cannot get this
to work! 


~~
Stephenie 




---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 2/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Password protection IIS 5 and CFMX

2003-03-06 Thread Stephenie Hamilton
Did all that. The user has been added to users/groups. The user has
permissions for that folder. In IIS I have unchecked allow anonymous
access...

I have tried with basic and integrated authentication and no luck.

The password prompt comes up, but even after entering the correct
password, it tells me I don't have permission to access this page blah
blah

Oh yeah,,, this is a sandboxed server.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Ben Doom [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 06, 2003 11:46 AM
To: CF-Talk
Subject: RE: Password protection IIS 5 and CFMX


IIRC, you go in and set the permissions on the folder in Windows.


--  Ben Doom
Programmer  General Lackey
Moonbow Software, Inc

:

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 2/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Password protection IIS 5 and CFMX

2003-03-06 Thread Stephenie Hamilton
So I need to give the user permissions on the jrun.dll? The user being
the user that was created on this server for access to the password
protected directory.


~~
Stephenie 




-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 06, 2003 12:26 PM
To: CF-Talk
Subject: RE: Password protection IIS 5 and CFMX


 Did all that. The user has been added to users/groups. The
 user has permissions for that folder. In IIS I have unchecked 
 allow anonymous access...
 
 I have tried with basic and integrated authentication and no
 luck.
 
 The password prompt comes up, but even after entering the
 correct password, it tells me I don't have permission to 
 access this page blah blah

Did you set permissions on the CFMX ISAPI DLL? That's a common cause for
this problem. You'll need to allow read/execute on the jrun.dll file,
which will typically be in \CFusionMX\runtime\lib\wsconfig\1.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 2/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Password protection IIS 5 and CFMX

2003-03-06 Thread Stephenie Hamilton
ok, this is what i have done so far.

add the user to users/groups.
add the user to the directory permissions for the dir i want protected.
add the user with read/execute perms to the
runtime/lib/wsconfig/1/jrun.dll file.
in iis remove anonymous access for the dir i want protected.

this is a cfmx server that is sandboxed. I don't have any of these
issues on our non-sandboxed servers using directory security through
iis.
any other ideas?


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 06, 2003 12:48 PM
To: CF-Talk
Subject: RE: Password protection IIS 5 and CFMX


 So I need to give the user permissions on the jrun.dll?
 The user being the user that was created on this server 
 for access to the password protected directory.

Yes. Any user running a CF file will need to have read/execute rights on
that DLL.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 2/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Password protection IIS 5 and CFMX

2003-03-06 Thread Stephenie Hamilton
Still no luck even after restarting IIS. I cannot disable the sandbox as
this is a shared server



~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 06, 2003 3:34 PM
To: CF-Talk
Subject: RE: Password protection IIS 5 and CFMX


 ok, this is what i have done so far.
 
 add the user to users/groups.
 add the user to the directory permissions for the dir i want
 protected.
 add the user with read/execute perms to the
 runtime/lib/wsconfig/1/jrun.dll file.
 in iis remove anonymous access for the dir i want protected.

Have you restarted IIS after making the permissions change to the ISAPI
DLL?

 this is a cfmx server that is sandboxed. I don't have any
 of these issues on our non-sandboxed servers using directory 
 security through iis. any other ideas?

What happens if you disable the sandbox stuff?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 2/25/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Setting up email from CF for errors (was Re: ColdFusion and SMS Messaging)

2003-02-27 Thread Stephenie Hamilton
http://cfhub.com/advanced/error_handling/


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Austin Govella [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 27, 2003 12:37 PM
To: CF-Talk
Subject: Setting up email from CF for errors (was Re: ColdFusion and SMS
Messaging)


So. I want CF to email or message me when there's a problem. Is there a 
tutorial somewhere on setting up automated email during certain kinds of

errors or conditions on the server?

--
Austin Govella
Grafofini


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX null null errors?

2003-02-20 Thread Stephenie Hamilton
Check your client.properties file and see if it is 0 k.
It is located in cfusionmx\lib\

We have seen this error when MX blanks out the client.properties file
and MX cannot assign a new client var.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, February 20, 2003 11:08 AM
To: CF-Talk
Subject: CFMX null null errors?


What do the null null errors thrown by CFMX usually indicate?

null null brThe error occurred on line -1. 

Brook Davies
logiforms.com



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: CFMX null null errors?

2003-02-20 Thread Stephenie Hamilton
No that is all the client.properties file needs.

Hmmm, java.lang.outofmemory error...had those a lot too...

Lets see...MM told me to add this to my JVM arguments in
CFAdministrator..

-XX:MaxPermSize=128m

And there is also some other things you can add/change in your jrun.xml
file. 
http://www.macromedia.com/v1/handlers/index.cfm?ID=23524Method=Full

This is listed as a fix for linux, but MM had us do it to our shared
Win2k MX server and we have not seen the outofmemory error since then.

You should not have to cycle MX nightly like you did with previous
versions of CF. I am not sure why MX will say it has no memory, but the
server still has plenty of RAM left..but I am not an engineer...

So give those a try, remember to back up any files you change!!



~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, February 20, 2003 11:22 AM
To: CF-Talk
Subject: RE: CFMX null null errors?


Well, the client.properties file looks like this:

#ClientID Sequence
#Thu Feb 20 03:57:11 PST 2003
LastID=166601

Shouldn't there be more? Also, the log shows these errors:

Error,jrpp-7969,02/20/03,08:04:11,logiformsV2_external,null
The 
specific sequence of files included or processed is: 
D:\inetpub2\wwwroot2\www.mywebsite2.com\external\el\index.cfm
java.lang.OutOfMemoryError
no stack trace available

But the server reports having memory available. Also, the CFADMIN
returns a 
blank page, and the server returns 500 Internal Server Errors on a
couple 
of pages. AND, debugging data is being truncated.

I have already restarted the service and that seems to have fixed the
problem.

Does CFMX need to be cycles at night? Why the memory error when there
was 
apparently ample available memory?

Brook


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.456 / Virus Database: 256 - Release Date: 2/18/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: The error that doesn't make sense

2003-02-14 Thread Stephenie Hamilton
Does the error say it is on line 1? When it happens check your
cfusionmx\lib dir and ensure the file client.properties is not 0k.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Frank Mamone [mailto:[EMAIL PROTECTED]] 
Sent: Friday, February 14, 2003 11:45 AM
To: CF-Talk
Subject: The error that doesn't make sense


Some users sporadically get this message one EVERY page on our site.

Error Occurred While Processing Request Please try the following: Check
the CFML Reference Manual to verify that you are using the correct
syntax. Search the Knowledge Base to find a solution to your problem.
Browser Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0) Remote
Address 10.1.8.49 Referrer
http://connections/public/is/is_titleview.cfm?sect=issubsect=unrestrict
ed_r
equestsubsubsect= Date/Time 14-Feb-03 10:57 AM Stack Trace (click to
expand)

Expanding shows Java null pointer exception.

Since this is a server error it should appear on everyone's PC. It
happenned to me the other day and re-bootong usually makes it disappear.

Any ideas?

Frank

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.454 / Virus Database: 253 - Release Date: 2/10/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: windows .net server 2003 and cf

2003-02-12 Thread Stephenie Hamilton
We add the JRunScripts virtual dir to each site as well as JRun
Connector Filter ISAPI filter   that wants Flash Remoting on our shared
servers.




~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, February 12, 2003 12:51 PM
To: CF-Talk
Subject: RE: windows .net server 2003 and cf


 I found a site that provides some directions on how to
 install cfmx on .net server 2003 and use IIS.
 
 http://phydiux.com/cfmx_and_IIS6/
 
 I haven't tried it yet, but I will this afternoon, I can
 let you know if it works.

While those instructions certainly may work, they involve editing the
registry to trick the wsconfig tool. It's worth noting that there's an
alternative approach, which has worked for me whenever I've had problems
with wsconfig - for example, after applying Updater 2 to CFMX running
against Apache 2.0.43.

The wsconfig utility is a runnable jar file. When you run it, it
extracts the appropriate module, places it in a directory, and
configures your web server to use the module. You can do this yourself,
manually.

1. Copy \cfusionmx\runtime\lib\wsconfig.jar to wsconfig.zip.
2. Open in your favorite zip utility.
3. Extract the appropriate module.
4. Edit your web server configuration to use the module.

Of course, you have to be able to find the appropriate module, but
they're pretty clearly named within the jar file. You also have to know
how to set up your web server to use the module. In IIS, you can simply
add the appropriate ISAPI extension mapping in the Internet Service
Manager; in Apache, you have to add some lines like this to httpd.conf
(note that there will be differences depending on where you've placed
the module):

LoadModule jrun_module
C:/CFusionMX/runtime/lib/wsconfig/2/mod_jrun20.so
IfModule mod_jrun20.c
JRunConfig Verbose false
JRunConfig Apialloc false
JRunConfig Ssl false
JRunConfig Ignoresuffixmap false
JRunConfig Serverstore
C:/CFusionMX/runtime/lib/wsconfig/2/jrunserver.store
JRunConfig Bootstrap 127.0.0.1:51010
   #JRunConfig Errorurl optionally redirect to this URL on errors
AddHandler jrun-handler .jsp .jws
/IfModule

Now, there's one missing piece, but so far it hasn't made any difference
that I've seen. That's the creation of a /jrunscripts web server
mapping. When you run wsconfig with IIS 5, that gets mapped to the
directory containing the module. Does anyone know exactly what this is
for? It doesn't seem to matter if it's omitted, as far as I've seen.

Finally, I mentioned setting up the connector module as an ISAPI
extension. It can also be set up as an ISAPI filter, but I've stuck to
using the ISAPI extension, personally.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 1/27/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: CFMX Oracle native DSN issues

2003-02-12 Thread Stephenie Hamilton
Are you using the Oracle Client? Did you reboot after installing the
Oracle client? I had a similar issue awhile back and a reboot solved it.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, February 12, 2003 3:38 PM
To: CF-Talk
Subject: CFMX  Oracle native DSN issues


I can't for the life of me get an oracle native DSN properly configured
in CFMX.  I have my tnsnames.ora file open and am copying the SID,
server, port, username, password, etc. verbatim, yet I cannot get the
connection to verify correctly.  The error message I'm getting is:

Connection verification failed for data source: ora_i18n
[]java.sql.SQLException: SQLException occurred in JDBCPool while
attempting to connect, please check your username, password, URL, and
other connectivity info. The root cause was that: java.sql.SQLException:
SQLException occurred in JDBCPool while attempting to connect, please
check your username, password, URL, and other connectivity info.

Has anyone had this problem, and what was your solution?  Is CFMX just
picky about the format of a tnsnames.ora file?

Thanks

Pete

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




CFMX and CFFTP issues

2003-02-11 Thread Stephenie Hamilton
I have a client who is on CFMX and cannot get the CFFTP function to
actually bring a file over.
I have tested and reproduced this myself.

Basically the CFFTP tag opens a connection to remote server, then gets a
file. It will actually open the connection, but the file is written as 0
k and the error is
ErrorCode: 221 
Service Closing Control Connection


I have double check perms and all seems well. It doesn't matter what
type of file, it always is 0 k and fails.

The client said this was working before we did a bunch of security
updates...
So I am not sure what else to look at

Anyone seen this? Anyone have any ideas on where to look?


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting




---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 1/27/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: accessing cfmx admin remotely

2003-02-11 Thread Stephenie Hamilton
Do you need access to the whole server or just the CFAdministrator?
If the whole server, then you need to know if they are using anything
like PCAnywhere or if win2k you can use Terminal Services Client to
connect to the server.

If just the CF Administrator, you need the ip address of the server and
the password and you can enter via browser, ie:
http://123.12.12.123/cfide/administrator/index.cfm

(fake ip obviously)


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Dave Lyons [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, February 11, 2003 12:16 PM
To: CF-Talk
Subject: accessing cfmx admin remotely


my host admin has asked to find out if I can remotely access cfmx on the
server so that I can set it up how I want it and so I can do all the bd
connections and such.

anyone got any suggestions on how I do that?
I can get the password, just need to know how to access it on the remote
server 2500 miles away


dave
!--- doesn't know jack about cfm ---



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: CF MX Enterprise Security

2003-02-11 Thread Stephenie Hamilton
You can't do it in CFMX. With CF4 or CF5 you could create a security
context for studio users (RDS), but not in MX (b)


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: David Brown [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, February 11, 2003 1:22 PM
To: CF-Talk
Subject: Re: CF MX Enterprise Security


Could someone tell me how to limit what drives and folders in DW MX or
Home Site connecting to a CF MX Enterprise server.  I have enabled
sandbox security, but it does not seem to limit what drives a user see
when login in
via RDS.   I don't see a way to assign security based on username.

David
- Original Message -
From: David Brown [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, February 05, 2003 9:07 AM
Subject: CF MX Enterprise Security


 I have two different passwords for cfadmin pages and RDS.  But I would
like
 to limit the drives and folders that a user can see when they log in 
 with rds based on login name.

 For example:

 user A logs in with DW MX or Home Site and needs access to Folder A on
drive
 A.  I don't want them to have access or even see the drives B,C,etc or
other
 folders then folder A on drive A.

 I have looked at sandbox security, but I don't think it gives me what 
 I want.  From what I can tell it limits what a application can do 
 running in
X
 folder, not what X users can see or have access to via RDS.

 David


 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Flash example...

2003-01-31 Thread Stephenie Hamilton
http://www.soh.nsw.gov.au/h/credits.html

Gives you the site credits


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] 
Sent: Friday, January 31, 2003 12:35 PM
To: CF-Talk
Subject: OT: Flash example...


Any of you aussies out there know who did this site?  Very cool. 

http://www.soh.nsw.gov.au/h/t_virtual_tour_fs1.html


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 1/27/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




CFFTP and zero byte files

2003-01-28 Thread Stephenie Hamilton
I have a client who is using a scheduled task to grad a db from another
server via cfftp. He claims that it doesn't work and only returns a 0 k
file. I verified it is behaving as he said and even tested it with a
different ftp server, still same results. I did see this kb article
http://www.macromedia.com/v1/Handlers/index.cfm?ID=22302Method=Full

but he is using CFMX, not CF5. I did verify the CF Service is running
under an account that has perms to the dir he is trying to ftp the file
into, the local file attribute is correct, but still no luck

Anyone seen this before on CFMX?


~~
Stephenie 




---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.445 / Virus Database: 250 - Release Date: 1/21/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Error occurred on line -1 ???

2003-01-17 Thread Stephenie Hamilton
Would this be on MX? I have seen this error lots on MX, check your
client.properties file and see if it is 0 k.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: Joshua Miller [mailto:[EMAIL PROTECTED]] 
Sent: Friday, January 17, 2003 12:26 PM
To: CF-Talk
Subject: Error occurred on line -1 ???


Anyone else seen this error?
 
All of the error output is null and the error message says: Error
occurred on line -1
 
This happens when accessing a large amount of data in a query (88,878
records)
 
Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net http://www.garrisonenterprises.net/ 
[EMAIL PROTECTED]
(704) 569-9044 ext. 254
 
**

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.443 / Virus Database: 248 - Release Date: 1/10/2003
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: JRE 1.4.1 and Flash Remoting

2002-11-05 Thread Stephenie Hamilton
It doesn't work at all when I switch it. This is on a shared server
though, so I had to do some tweaking in the first place to get remoting
to work.

~~
Stephenie 





 |-Original Message-
 |From: Stacy Young [mailto:Stacy.Young;sfcommerce.com] 
 |Sent: Monday, November 04, 2002 6:48 PM
 |To: CF-Talk
 |Subject: RE: JRE 1.4.1 and Flash Remoting
 |
 |
 |I'm using:
 |Java VM Version   1.4.1-b21   (Sun)
 |
 |On both Win2k pro and solaris and remoting is working 
 |OK...been using it extensively...is it just not working at 
 |all when u make the switch?
 |
 |Stace
 |
 |-

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.410 / Virus Database: 231 - Release Date: 10/31/2002
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



JRE 1.4.1 and Flash Remoting

2002-11-04 Thread Stephenie Hamilton
MM advised me to upgrade the JRE for our CFMX shared server to Sun's
1.4.1 to reduce/possibly eliminate the issue we have been having with
NULL errors, client.properties going blank and blank pages.
Now none of our hosted sites that use Flash Remoting (including my own)
work for the remoting part.
Anyone seen this behavior before?
sigh

~~
Stephenie 




---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.410 / Virus Database: 231 - Release Date: 10/31/2002
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: JRE 1.4.1 and Flash Remoting

2002-11-04 Thread Stephenie Hamilton
Yeah, well now I am frustrated because besides the issues you listed,
flash remoting not working, I am now getting the very strange error of 
Error parsing the Tag Library Descriptor
 file:/D:/CFusionMX/runtime/lib/wsconfig/1/jrun.dll/..  

And the stack trace is gone!!!
Well basically it is gone, this is what it contains
[Ljava.lang.StackTraceElement;ce82cc


Arg!!!


going to download 1.4.0 and see if that helps...
double sigh


~~
Stephenie 





 |-Original Message-
 |From: Mark Johnson [mailto:mjohnson;starcite.com] 
 |Sent: Monday, November 04, 2002 5:43 PM
 |To: CF-Talk
 |Subject: RE: JRE 1.4.1 and Flash Remoting
 |
 |
 |Stephenie,
 |I don't want to sound like MM has no idea what they are 
 |talking about , but I can't see how they could ever 
 |reccomend what they did.  JRE 1.4.1 has MANY problems with 
 |CFMX.  For example all of the LS functions DO NOT WORK. Also
 |dateformat() DOES NOT WORK.  For our enviornment we had to 
 |down grade to JRE 1.4.0.  I have been asking on this list 
 |for MM to give a reccomendation JRE version for CFMX and 
 |have not heard anything back.  I would guess at this point 
 |it would be JRE 1.4.0 based only on my own findings.  
 |However, i have heard nothing to make this offical.  I 
 |question wether MM even knows as they gave you this advice.  
 |This does not bode well for my confidence in MM.
 |
 |Mark
 |
 |-Original Message-
 |From: Stephenie Hamilton [mailto:cf-talk;coldfusionwebs.com]
 |Sent: Monday, November 04, 2002 2:22 PM
 |To: CF-Talk
 |Subject: JRE 1.4.1 and Flash Remoting
 |
 |
 |MM advised me to upgrade the JRE for our CFMX shared server 
 |to Sun's 1.4.1 to reduce/possibly eliminate the issue we 
 |have been having with NULL errors, client.properties going 
 |blank and blank pages. Now none of our hosted sites that use 
 |Flash Remoting (including my own) work for the remoting 
 |part. Anyone seen this behavior before? sigh
 |
 |~~
 |Stephenie
 |
 |
 |
 |
 |---
 |Outgoing mail is certified Virus Free.
 |Checked by AVG anti-virus system (http://www.grisoft.com).
 |Version: 6.0.410 / Virus Database: 231 - Release Date: 10/31/2002
 |
 |
 |
 |
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: JRE 1.4.1 and Flash Remoting

2002-11-04 Thread Stephenie Hamilton
Can anyone point me to which file holds the setting for the jvm? 

~~
Stephenie 




 |-Original Message-
 |From: Stephenie Hamilton [mailto:cf-talk;coldfusionwebs.com] 
 |Sent: Monday, November 04, 2002 5:55 PM
 |To: CF-Talk
 |Subject: RE: JRE 1.4.1 and Flash Remoting
 |
 |
 |Yeah, well now I am frustrated because besides the issues 
 |you listed, flash remoting not working, I am now getting the 
 |very strange error of 
 |Error parsing the Tag Library Descriptor  
 |file:/D:/CFusionMX/runtime/lib/wsconfig/1/jrun.dll/..  
 |
 |And the stack trace is gone!!!
 |Well basically it is gone, this is what it contains 
 |[Ljava.lang.StackTraceElement;ce82cc
 |
 |
 |Arg!!!
 |
 |
 |going to download 1.4.0 and see if that helps...
 |double sigh
 |
 |
 |~~
 |Stephenie 
 |

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.410 / Virus Database: 231 - Release Date: 10/31/2002
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: JRE 1.4.1 and Flash Remoting

2002-11-04 Thread Stephenie Hamilton
Yeah, stupid me (long day) didn't change it before uninstalling 1.4.1
(damnit)

~~
Stephenie 





 |-Original Message-
 |From: Rob Rohan [mailto:rob;cardinalweb.com] 
 |Sent: Monday, November 04, 2002 6:09 PM
 |To: CF-Talk
 |Subject: RE: JRE 1.4.1 and Flash Remoting
 |
 |
 |It's in cfide unless you really need to find it in a file.
 |
 |-Original Message-
 |From: Stephenie Hamilton [mailto:cf-talk;coldfusionwebs.com]
 |Sent: Monday, November 04, 2002 3:04 PM
 |To: CF-Talk
 |Subject: RE: JRE 1.4.1 and Flash Remoting
 |
 |
 |Can anyone point me to which file holds the setting for the jvm?
 |
 |~~
 |Stephenie
 |
 |
 |
 |
 | |-Original Message-
 | |From: Stephenie Hamilton [mailto:cf-talk;coldfusionwebs.com]
 | |Sent: Monday, November 04, 2002 5:55 PM
 | |To: CF-Talk
 | |Subject: RE: JRE 1.4.1 and Flash Remoting
 | |
 | |
 | |Yeah, well now I am frustrated because besides the issues 
 |you listed, 
 | |flash remoting not working, I am now getting the very 
 |strange error 
 | |of Error parsing the Tag Library Descriptor
 | |file:/D:/CFusionMX/runtime/lib/wsconfig/1/jrun.dll/..
 | |
 | |And the stack trace is gone!!!
 | |Well basically it is gone, this is what it contains 
 | |[Ljava.lang.StackTraceElement;ce82cc
 | |
 | |
 | |Arg!!!
 | |
 | |
 | |going to download 1.4.0 and see if that helps...
 | |double sigh
 | |
 | |
 | |~~
 | |Stephenie
 | |
 |
 |---
 |Outgoing mail is certified Virus Free.
 |Checked by AVG anti-virus system (http://www.grisoft.com).
 |Version: 6.0.410 / Virus Database: 231 - Release Date: 10/31/2002
 |
 |
 |
 |
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: JRE 1.4.1 and Flash Remoting

2002-11-04 Thread Stephenie Hamilton
Ok, I was able to revert to original and spoke with mm...they said
1.4.0_01 (or something like that) will work with flash remoting and they
thought it also enabled lsdates without issues (in case anyone was
wondering)
Well, at least I was able to go back, but this means we will still have
the issue with client.properties being blank and 2 jrun.exe's running.
Thanks for the help guys!

~~
Stephenie 




 |-Original Message-
 |From: Pete Freitag [mailto:pf;cfdev.com] 
 |Sent: Monday, November 04, 2002 6:28 PM
 |To: CF-Talk
 |Subject: RE: JRE 1.4.1 and Flash Remoting
 |
 |
 | Can anyone point me to which file holds the setting for the jvm?
 |
 |/CFusionMX/runtime/bin/jvm.config
 |
 |_
 |Pete Freitag
 |CTO, CFDEV.COM
 |http://www.cfdev.com/ 
 |
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Visual Source Safe and CF Studio

2002-10-11 Thread Stephenie Hamilton

Any way to get Homesite with VSS to auto check a file back in when you
save/close it? Or do you always have to manually check it in?

~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.399 / Virus Database: 226 - Release Date: 10/9/2002
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Upgraded to CFMX on linux, unable to delete DSN

2002-10-09 Thread Stephenie Hamilton

We upgraded a client to CFMX from CF5 (on Linux) and the upgrade asked
if we would like to migrate our settings, DSN's etc...so of course we
said yes..

Now we find that we cannot delete one dsn that is a mySql dsn

The error received is:
An exception occurred when invoking an external process.  
The cause of this exception was that: java.io.IOException:
\soft/coldfusionmx/db\slserver52\admin\swcla.exe: not found.  


Anybody have any ideas what the issue is? Do I need to stop mySQL or
something? 
If I try to verify the dsn it gives me this error:
Variable THISDATASOURCE is undefined

This is my first client on linux for cf and I have no idea where to go
in the server to delete any reference to this dsn

Any help appreciated.

~~
Stephenie Hamilton



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.394 / Virus Database: 224 - Release Date: 10/3/2002
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Upgraded to CFMX on linux, unable to delete DSN

2002-10-09 Thread Stephenie Hamilton

Ummm, I have no idea what that means sheepish grin I have another guy
who handles the linux part, I administrate the cf part...



~~
Stephenie 





 |-Original Message-
 |From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] 
 |Sent: Wednesday, October 09, 2002 12:31 PM
 |To: CF-Talk
 |Subject: RE: Upgraded to CFMX on linux, unable to delete DSN
 |
 |
 | The cause of this exception was that: java.io.IOException:
 | \soft/coldfusionmx/db\slserver52\admin\swcla.exe: not found.
 |
 |Where is that file really ? Does symlink'ing it in work ?
 |
 |Tom Chiverton
 |You don't have to be a mad scientist to believe in ColdFusion
 |
 | 
 |
 |
 |
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Upgraded to CFMX on linux, unable to delete DSN

2002-10-09 Thread Stephenie Hamilton

I just want to say that Debbie Dickerson from MM caught this thread and
gave me the info I needed to fix this issue
They do care guys...

~~
Stephenie 





 |-Original Message-
 |From: Stephenie Hamilton [mailto:[EMAIL PROTECTED]] 
 |Sent: Wednesday, October 09, 2002 1:17 PM
 |To: CF-Talk
 |Subject: RE: Upgraded to CFMX on linux, unable to delete DSN
 |
 |
 |Ummm, I have no idea what that means sheepish grin I have 
 |another guy who handles the linux part, I administrate the cf part...
 |
 |
 |
 |~~
 |Stephenie 
 |
 |

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.394 / Virus Database: 224 - Release Date: 10/3/2002
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Problems with CFMX?

2002-10-08 Thread Stephenie Hamilton

When you get the outofmemory errors, are your cfm pages displayed blank
in the browser?

~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





 |-Original Message-
 |From: Devin Callaway [mailto:[EMAIL PROTECTED]] 
 |Sent: Tuesday, October 08, 2002 1:40 PM
 |To: CF-Talk
 |Subject: RE: Problems with CFMX? 
 |
 |
 |Could someone comment on the large .cfm files issue.   We 
 |have quite a few files that are very large like  1000 lines 
 |but the maybe 5 lines of actual cfml the rest html.  We are 
 |having problems with our servers restarts and 
 |Java.lang.outofmemory errors.   We do have a support call in 
 |with macromedia they are working on a fix for our problem.  
 |They did not focus on large pages.  I was wondering if the 
 |large cfm files causing a problem is documented anywhere?
 |
 |
 |-d-
 |
 |
 |
 |
 |Devin Callaway
 |Westminster College
 |Information Technology
 |[EMAIL PROTECTED]
 |801-832-2002
 |
 |
 | [EMAIL PROTECTED] 10/08/02 10:46AM 
 |
 |
 | 1. MX can not handle large .cfm files. By large I mean 
 | ~850 lines of code
 |
 |
 |
 |-Original Message-
 |From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] 
 |Sent: Tuesday, October 08, 2002 9:32 AM
 |To: CF-Talk
 |Subject: Problems with CFMX?
 |
 |
 |I have been watching threads like LONG time CF Supporter - 
 |About ready to dump CF and CFMX - I've never seen anything 
 |so unstable in my life over the past few weeks.  What has 
 |me concerned is this next few weeks I am going to upgrade a 
 |fairly large site to CFMX.  The site currently runs CF 5 and 
 |MS SQL 2000.  Are there a large number of problems with CFMX 
 |that I should know about?  Luckily I have a few weeks to 
 |play with the new servers before they go live.
 |
 |Any ETA on a CFMX .1 update?  (is one needed)
 |
 |Thanks
 |
 |Mark W. Breneman
 |-Macromedia Certified ColdFusion Developer
 |-Network / Web Server Administrator
 |  Vivid Media
 |  [EMAIL PROTECTED] 
 |  www.vividmedia.com 
 |  608.270.9770
 |
 |
 |
 |
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



  1   2   >