RE: CF's Most Wanted ::

2002-04-23 Thread Neil Clark - =TMM=
Hi Peoples Well, I can say, since its public knowledge in some circles that locking will no longer be required with Neo - the server will handle this side of things. CFMX has addressed the fact that failure to lock shared scope vairables will not cause memory corruption while a write operation

Keeping track of logged-in users...

2002-04-23 Thread Kevin Langevin
Hi all- Got a best practices question for you. I've got a client site which uses client variables to track users' sessions for auto-logout. When a user logs on, a CLIENT.lastAccess variable is set to now(). In the application.cfm, a check is run to see if CLIENT.lastAccess is defined and if

RE: Keeping track of logged-in users...

2002-04-23 Thread Neil Clark - =TMM=
Hmmm... A quick suggestion/solution could be that when someone logs on, you can insert a value (or incremente) into a structure and then count the length of that structure - this will give you who is currently logged on. Thoereitically this is how it could be done one way. Neil Team

Re: Keeping track of logged-in users...

2002-04-23 Thread Stephen Moretti
Hmmm... A quick suggestion/solution could be that when someone logs on, you can insert a value (or incremente) into a structure and then count the length of that structure - this will give you who is currently logged on. Thoereitically this is how it could be done one way. There is an

RE: Keeping track of logged-in users...

2002-04-23 Thread Dimple Goshar
Hi, If you want to avoid updates to your database, you can have another column in your users database , loggedon which is set to 1 when the user logs on to the site and set to 0 when the user logs off Then u can give ur report on the basis of this column Regards

Re: Keeping track of logged-in users...

2002-04-23 Thread nagraj
Hello, But If User Leave the system or Session Expires.The database is not updated from flag=1 to flag=0.This may lead to problems.I think you can preserver LastLogin time.i.e. When ever user log in we keep the User login information in db.If we are known with session time out peroid we can use

RE: Keeping track of logged-in users...

2002-04-23 Thread Neil Clark - =TMM=
You are basically going to have to use session vars so you may as well use a structure which has the total of users logged in etc... __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

RE: Keeping track of logged-in users...

2002-04-23 Thread Kevin Langevin
Thanks for the suggestions, all. I checked the article in CFDJ, and it looked like it might cover what I was looking for, but DOH! I don't have a current subscription. I've been meaning to re-up, but haven't gotten around to it, and the article teaser is available, but the article itselsf is

RE: Keeping track of logged-in users...

2002-04-23 Thread Kevin Langevin
Actually, I'm using Client variables...no session vars at all. Kevin Langevin Flying Chimp Media 954-585-0999 [EMAIL PROTECTED] http://www.FlyingChimp.com -Original Message- From: Neil Clark - =TMM= [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 6:02 AM To: CF-Talk

RE: Keeping track of logged-in users...

2002-04-23 Thread Dimple Goshar
You can also update the database and set the flag if the user closes the browser window without logging out properly Also if u r using client variables instead of session variables , then the session will not expire in this case, so these problems wont arise -Original Message- From:

RE: Keeping track of logged-in users...

2002-04-23 Thread Dimple Goshar
Which means there is no problem of session timeout Then in that case u can very well have an additional column loggedon which is set to 1 when the user logs in and set to 0 when the user logs out or closes the browser window -Original Message- From: Kevin Langevin [SMTP:[EMAIL

RE: Keeping track of logged-in users...

2002-04-23 Thread Kevin Langevin
Hmmm...Closes the browser window? How do I test for this? Kevin Langevin Flying Chimp Media 954-585-0999 [EMAIL PROTECTED] http://www.FlyingChimp.com -Original Message- From: Dimple Goshar [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 6:20 AM To: CF-Talk Subject: RE:

RE: Keeping track of logged-in users...

2002-04-23 Thread Kevin Langevin
The session DOES expire, but transparently to the system. FOr purposes of this site, a session is expired if its lastAccess variable is older than 20 minutes ago. Basically I'm doing a check in the application.cfm file to see if this is the case, and if it is, then it deletes a couple of client

RE: Keeping track of logged-in users...

2002-04-23 Thread Neil Clark - =TMM=
Yep, there are loadsa ways to do what he asks and indeed its personal preference:-) I would not use a Database but thatÂ’s me - unless it was all Stored Procedures, otherwise I think a call to a database is unecesary (especially on a huge site - 100,000+ users). That said, as long as all

Re: Keeping track of logged-in users...

2002-04-23 Thread nagraj
Hi, Btw how can we Track that User has closed the Browser Window.How does server get notified about that event. With Regards Nagaraj.A - Original Message - From: Dimple Goshar [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 23, 2002 3:49 PM Subject: RE: Keeping

Re: Keeping track of logged-in users...

2002-04-23 Thread Matthew Walker
Where are you storing your client variables? - Original Message - From: Kevin Langevin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 23, 2002 10:09 PM Subject: RE: Keeping track of logged-in users... Thanks for the suggestions, all. I checked the article in

RE: Keeping track of logged-in users...

2002-04-23 Thread Kevin Langevin
From: Matthew Walker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 6:32 AM To: CF-Talk Subject: Re: Keeping track of logged-in users... Where are you storing your client variables? SQL Server 2000 DB... Kevin Langevin Flying Chimp Media 954-585-0999 [EMAIL PROTECTED]

Optimal settings for LIMIT SIMULTANEOUS REQUESTS

2002-04-23 Thread John Innit
Our web server is a P3 500 with 512KB RAM running WIN2K/ IIS CF 4.5.1 our DB server is also a P3 500 with 512KB RAM running WIN2K and SQL SERVER 2000 I've read the rule of thumb for the limit simultaneous requests should be 2x or 3x the number of processors on the box, as we have 1 processor

RE: Keeping track of logged-in users...

2002-04-23 Thread Neil Clark - =TMM=
Use onUnload to trigger you specific action. Neil Clark Team Macromedia http://www.macromedia.com/go/team __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

RE: Keeping track of logged-in users...

2002-04-23 Thread Dimple Goshar
u aren't using cookies? -Original Message- From: Kevin Langevin [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 3:48 PM To: CF-Talk Subject: RE: Keeping track of logged-in users... The session DOES expire, but transparently to the system. FOr purposes of this

Need SQL Server version of createtable_Access

2002-04-23 Thread Vishal Narayan
I found on the Allaire Developer's Exchange a custom tag called createtable_Access, which allows me to create a table in any MS Access ODBC datasource accessible through ColdFusion, in which we can define Primary Key, Required fields (Not Null), and Unique values. What I need is a SQL Server

RE: RE: Encrypting Numeric ID's

2002-04-23 Thread Tim Heald
Hi, If you are on CF 5 you can use a UDF I created called urlEncrypt. Here it is. For directions go to http://loathe.mine.nu, or shoot me an email. !--- ** urlEncrypt/urlDecrypt UDF Template ** By Tim Heald ([EMAIL PROTECTED]) and Lee

Re: Keeping track of logged-in users...

2002-04-23 Thread Matthew Walker
Why not write a marker client variable then search for it in your data? e.g. cfset Client.Application=MyApp Then... SELECT CGLOBAL.lvisit, CDATA.data FROM CGLOBAL INNER JOIN CDATA ON CGLOBAL.cfid = CDATA.cfid WHERE (((CDATA.data) Like '%Application=MyApp%')); (Note, I was trying this in

RE: Keeping track of logged-in users...

2002-04-23 Thread Tim Heald
Here is an excellent article on how to create client vars in the DB that expire when the browser is closed, or when you want them to time out: http://www.halhelms.com/tutorials/qarbon/StateManagementClientVariables.vp/V iewlet/StateManagementClientVariables_viewlet.html It works really well.

RE: Keeping track of logged-in users...

2002-04-23 Thread Dimple Goshar
Are u using cookies? Are u using CFID and CFTOKEN ? -Original Message- From: Kevin Langevin [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 3:49 PM To: CF-Talk Subject: RE: Keeping track of logged-in users... Hmmm...Closes the browser window? How do I test for

RE: Keeping track of logged-in users...

2002-04-23 Thread Dimple Goshar
I suppose the tables CDATA and CGLOBAL will hold the data even if the user logs out from the site You will have to put a condition on lvisit for 20 min But even in that case, if the user logs out for eg at 12:00 , he will appear online till 12:20 -Original Message- From: Matthew

RE: Need SQL Server version of createtable_Access

2002-04-23 Thread Voris, Jim
My suggestion is to write a stored procedure using the t-sql create table command. You'll have a lot of power to customize it exactly as you wish. it could be as simple as this: -- begin code CREATE PROCEDURE [dbo].[usp_create_table] @table_name varchar(100) , @body

Re: Optimal settings for LIMIT SIMULTANEOUS REQUESTS

2002-04-23 Thread Bud
On 4/23/02, John Innit penned: Our web server is a P3 500 with 512KB RAM running WIN2K/ IIS CF 4.5.1 our DB server is also a P3 500 with 512KB RAM running WIN2K and SQL SERVER 2000 I've read the rule of thumb for the limit simultaneous requests should be 2x or 3x the number of processors on

Any problems with Advanced Security CF5

2002-04-23 Thread Kevan . Windle
We're having lots of difficulty getting Advanced security to work reliably. We have an existing user directory in Oracle. We finally managed to get it to connect but it seems unpredictable and un-intuitive and the docs crap are to put it mildly. Everything seems to happen under the bonnet, so

RE: Keeping track of logged-in users...

2002-04-23 Thread Tony_Petruzzi
client.lastvisit does the same thing and is handled by CF. Anthony Petruzzi Webmaster 954-321-4703 [EMAIL PROTECTED] http://www.sheriff.org -Original Message- From: Kevin Langevin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 5:12 AM To: CF-Talk Subject: Keeping track of

RE: Any problems with Advanced Security CF5

2002-04-23 Thread Raymond Camden
If you search the technotes at macromedia.com, there are a few good notes on adv. sec. One specifically mentions how you can enable logging to diagnose issues. These URLs should help you: Reg debug setting for adv. sec: http://www.allaire.com/Handlers/index.cfm?ID=11432Method=Full Other debug

contacting congress /

2002-04-23 Thread Louis Klepner
Hello- I would like to automate the process of contacting Congress a visitor's congress member. I've got a database (provided by client) which has all of congress, but not all of the congress members have email addresses. I guess this is a two part question: 1. Does anyone know of a zip code -

Re: Optimal settings for LIMIT SIMULTANEOUS REQUESTS

2002-04-23 Thread John Innit
Bud, thanks for your response. So you've set your simultaneous requests limit to 50 and your performance is fine and you've minimized your time outs, that's interesting. Anyone have any comments on that ?? At 08:34 PM 4/23/2002, you wrote: On 4/23/02, John Innit penned: Our web server is

RE: REReplace and RegExp

2002-04-23 Thread Raymond Camden
Someone will have to submit it. Considering Rob and I are already _swamped_ under the queue now, it would be better if someone were to submit this. I just can't bring myself to make the queue bigger. I'll let others do that. ;) Just as an FYI - both Rob and I know the queue is getting a bit

Recursion problem

2002-04-23 Thread Jake McKee
All, I have been working to create an application to display data via a infinite series of categories and sub-categories. The look I am going for is similar to the home page of Yahoo.com: Category1 Category2 - Sub1 -Sub1 -Sub1 - Sub2 -Sub2 -Sub2 Category3

RE: Optimal settings for LIMIT SIMULTANEOUS REQUESTS

2002-04-23 Thread Christopher Olive
when i took the server performance tuning class (with dave watts!), we were told the only way to REALLY get a good number for that is to load test your application with different setting in simultaneous requests. look at the data, and it'll reveal the optimal setting. that being said, we

RE: contacting congress /

2002-04-23 Thread Janine Jakim
There are several activist sites that have an email your congress person section...Since I'm at work I don't have any urls to give you but I receive info like that from that like Natural Resources Defense Council http://www.nrdc.org/default.asp and I know one of the organizations pushing for non

CFGRID

2002-04-23 Thread Kris Pilles
Has anyone had any success with using CFGRID in an application? Its perfect for what I need to do but im a little weary about it... Any suggestions? Ie... Java version Bugs etc... __ This list and all House of Fusion

RE: Optimal settings for LIMIT SIMULTANEOUS REQUESTS

2002-04-23 Thread Webapper
John, at Allaire we used 3-5 simultaneous requests per processor as our guideline but this is a setting that does not have such a huge impact on the user experience as it might sound. It is set low so as not to over burden the CF box. The restart at X unresponsive requests I would have around 5

RE: Optimal settings for LIMIT SIMULTANEOUS REQUESTS

2002-04-23 Thread Matthew R. Small
U... yeah, I'll make a few comments on that. The general rule for setting simultaneous requests is for 5 per processor. The fact that he has set his to 50 and things appear fine to him I guess is a good thing - unless he's not seeing the whole picture. If his has such high traffic volume

RE: Optimal settings for LIMIT SIMULTANEOUS REQUESTS

2002-04-23 Thread Webapper
This is going to sound PAT but it is not. If you have to set this value so high there are problems in the application code (Don't Bloody Shoot Me!) Look at what is causing the problem, hunt the logs particularly Application and Server and follow those really great error details that the CF Logs

RE: CFGRID

2002-04-23 Thread Matthew R. Small
I use it frequently but its for use on my intranet. Some IE versions have problems with the horizontal scroll bar (IE5 mainly). It does have a few bugs in the cfgridupdate but these can be worked around if you take the time to learn how the information is passed to the action page. I love the

RE: CF's Most Wanted ::

2002-04-23 Thread BillyC
Already there: cffile action=UPLOAD filefield=attachment ... cfmail to=#to# from=#from# subject=#subject# mimeattach=#cffile.serverFile# --- Billy Cravens -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Monday, April 22, 2002 6:05 PM To: CF-Talk Subject:

RE: CFGRID

2002-04-23 Thread Kris Pilles
I have my version working now but we are finding some permissions issues with Java that aren't allowing are users who aren't local administrators the ability to use cfgrid and occasionally it errors out all together... -Original Message- From: Matthew R. Small [mailto:[EMAIL PROTECTED]]

RE: Optimal settings for LIMIT SIMULTANEOUS REQUESTS

2002-04-23 Thread Dave Watts
Our web server is a P3 500 with 512KB RAM running WIN2K/ IIS CF 4.5.1 our DB server is also a P3 500 with 512KB RAM running WIN2K and SQL SERVER 2000. I've read the rule of thumb for the limit simultaneous requests should be 2x or 3x the number of processors on the box, as we have 1

Re: contacting congress /

2002-04-23 Thread David Groth
Another thing to keep in mind - e-mail to our elected officials is pretty worthless. Most don't understand the medium and never look at them. Just something to consider. David Groth, Analyst/Programmer III HSC Library Informatics Center, University of New Mexico 505.272.8406 e-mail: [EMAIL

RE: CF's Most Wanted ::

2002-04-23 Thread BillyC
I use XFile from SoftArtisans, and like it very much, but it's ActiveX, so it wont work in Netscape. Javascript file:// validation does not work in NS4. SA has a Java version of XFile, JFile, that works with NS. --- Billy Cravens

RE: Optimal settings for LIMIT SIMULTANEOUS REQUESTS

2002-04-23 Thread Dave Watts
Bud, thanks for your response. So you've set your simultaneous requests limit to 50 and your performance is fine and you've minimized your time outs, that's interesting. Anyone have any comments on that ?? Sure. There are fewer requests in the queue, if there are that many threads

RE: CF's Most Wanted ::

2002-04-23 Thread BillyC
My request: 1) remember the focus on CF as a programming language. Don't throw in every cool feature known to humankind. If you do, you'll have an application server that takes 1 gb to load into memory! If you have to, make additional features modular (like PHP, ASP, Perl, JSP, etc do - the

RE: contacting congress - a little help not much...

2002-04-23 Thread Rafael (Alan Bleiweiss)
Hopefully someone else has a better resource than below - this is very limited: It's not a 100% solution, however There's a page at the US Senate site with links to all the senators - many have email, some have a link only to an online form - you could grab the text and parse out all the

RE: Need SQL Server version of createtable_Access

2002-04-23 Thread BillyC
http://www.google.com/search?sourceid=navclientquerytime=KQMXjBq=%2B%2 2sql+server+7%22+%2B%22create+table%22 --- Billy Cravens -Original Message- From: Vishal Narayan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 6:05 AM To: CF-Talk Subject: Need SQL Server version of

RE: Optimal settings for LIMIT SIMULTANEOUS REQUESTS

2002-04-23 Thread Dave Watts
that being said, we didn't cover hosting multiple sites, so load testing them ALL and taking an average might be a PITA. we didn't discuss ways to mitigate this. to be completely fair, i was running a one site only machine for the DOD, and didn't think to ask this question. I'm glad

RE: CFGRID

2002-04-23 Thread Matthew R. Small
I would imagine in that case that you need verify that the JVM is installed on the client machine before they could use CFGRID. When is it erroring (is that a word even?) out? Is there a certain record that makes it error? I would research exactly the series of evetns that causes an error in

RE: contacting congress /

2002-04-23 Thread Dave Watts
Another thing to keep in mind - e-mail to our elected officials is pretty worthless. Most don't understand the medium and never look at them. Just something to consider. Most elected officials don't read their own regular mail, either - they have staff members to sort out both of these.

RE: CFGRID

2002-04-23 Thread Gieseman, Athelene
I use to use it all the time. But there are a few problems I've encountered so I don't use it at all anymore. A few of the problems are: 1. CFGRID doesn't allow wrap around. This isn't a problem if your columns are very short. But it's difficult for users to manipulate data if they have to

RE: contacting congress /

2002-04-23 Thread Ian Lurie
There's also already service that does this: www.capwiz.com Ian -Original Message- From: David Groth [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 7:13 AM To: CF-Talk Subject: Re: contacting congress / Another thing to keep in mind - e-mail to our elected officials is

RE: contacting congress /

2002-04-23 Thread Matthew R. Small
That was my experience when I sent snail-mail to the president of Compaq. A personal representative of his called me regarding my issues. Email doesn't get anywhere because it's only worth the paper it's printed on. - Matt Small -Original Message- From: Dave Watts [mailto:[EMAIL

javascript:history.back()

2002-04-23 Thread John McCosker
Greetings, I know not purely CF, but Does anyone know how, or a substitute to get the history.back() function to move back to pages, (instead of in increments) jumping back to a page, 2 or more positions in the browser history, i.e. visit page one then visit page two then visit page three

RE: javascript:history.back()

2002-04-23 Thread Matthew R. Small
History.go(-1) for one page History.go(-3) for three pages - Matt Small -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 10:31 AM To: CF-Talk Subject: javascript:history.back() Greetings, I know not

RE: CF's Most Wanted ::

2002-04-23 Thread Dave Watts
4. Make CFQuery more powerful...I wan't the ability to scroll up and down through recordsets. I want the ability to have recordsets be updated with new data from the database without having to requery. While I understand you can do this in ADO, it seems to me that much of the complexity

Re: javascript:history.back()

2002-04-23 Thread Brendan Canty
a href=javascript:history.back(-2) Where -2 means you move back two pages. Cheers, Brendan At 03:30 PM 4/23/2002 +0100, you wrote: Greetings, I know not purely CF, but Does anyone know how, or a substitute to get the history.back() function to move back to pages, (instead of in increments)

Re: javascript:history.back()

2002-04-23 Thread Critz
oi John!! history.back(-2)...etc -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion Tuesday, April 23, 2002, 10:30:50 AM, you wrote: JM Greetings, JM I know not purely CF, but JM Does anyone know

RE: javascript:history.back()

2002-04-23 Thread John McCosker
Cheers Matt exactly what I needed, Respectfully, J -Original Message- From: Matthew R. Small [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 3:45 PM To: CF-Talk Subject: RE: javascript:history.back() History.go(-1) for one page History.go(-3)

Session variable question

2002-04-23 Thread Ben Densmore
I have seen this asked in the cf forums on macromedias site but don't see a clear answer so hopefully someone here can give me a clue. We have an order entry app running internally. I have 2 people that are in our sales dept that keep turning into one another while logged in. An example is,

RE: REReplace and RegExp

2002-04-23 Thread Troy Simpson
James, Thanks for the response. It has given me other ideas about how to approach this. It appears that the solution you provided only replaces that Tags, which is part of the desired solution. I also need to obtain the value of the attributes and put then in differenct attributes for the a

CFLIB question

2002-04-23 Thread Rafael (Alan Bleiweiss)
I hope nobody takes offense at this question it is, however, a reasonable question from the bigger perspective of running a company... Does anyone at MM ever check the custom tags posted to the gallery or at MindTool check the UDFs posted to CFLIB for security flaws, hack code, etc? Again, to

Re: CFLIB question

2002-04-23 Thread Critz
oi Rafael!! i would assume so. when i submitted a udf i was sent a msg shortly after about how I could optimise the code I submitted and if it was alright to adjust my current code to that -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet

RE: javascript:history.back()

2002-04-23 Thread John McCosker
Cheers all, respect, J -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 3:38 PM To: CF-Talk Subject: RE: javascript:history.back() Cheers Matt exactly what I needed, Respectfully, J -Original Message- From: Matthew R. Small

RE: Session variable question

2002-04-23 Thread Christopher Olive
are they running behind a proxy sever? it's entirely possible that they appear to be coming from the same IP address, confusing the server. christopher olive cto, vp of web development, vp it security atnet solutions, inc. 410.931.4092 http://www.atnetsolutions.com -Original Message-

A way to hide the CF source on a website?

2002-04-23 Thread Charles Nahm
Is there a way to do this? Thanks, Charles __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Session variable question

2002-04-23 Thread Ben Densmore
There is no Proxy server, at the moment the IP addresses are static. I thought maybe the machines were using the same IP Address, but they are not. Ben At 11:14 AM 4/23/2002, you wrote: are they running behind a proxy sever? it's entirely possible that they appear to be coming from the same

Re: contacting congress /

2002-04-23 Thread Rick Walters
That's not entirely true, David. I worked on Capitol Hill for several years as a contractor and was able to visit almost all of the offices of our elected officials. It is true that all of the offices will screen your mail, and that this process may boil your comments down to a check box in the

RE: A way to hide the CF source on a website?

2002-04-23 Thread Tim Claremont
You can encrypt it, or you can disable the right mouse click. However, most browsers have a view source button or drop down which will still work. The problem is that once the code has reached the end user's 'puter, it is visible by necessity so the browser knows what to do with it.

Re: contacting congress /

2002-04-23 Thread BEN MORRIS
There are roughly a million companies that do this in DC. I don't know that any of them will give you access to raw data, and it really isn't that simple. You are best off buying a package from one of these advocacy companies. Some senators and reps have online forms that constituents need

RE: Session variable question

2002-04-23 Thread Kevin Schmidt
Are you locking your session variables? -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 10:19 AM To: CF-Talk Subject: RE: Session variable question There is no Proxy server, at the moment the IP addresses are static. I thought maybe the

RE: A way to hide the CF source on a website?

2002-04-23 Thread Ken Wilson
Depends on what you mean by hide and who you are wanting to hide it from. Ken -Original Message- From: Charles Nahm [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 11:33 AM To: CF-Talk Subject: A way to hide the CF source on a website? Is there a way to do this? Thanks,

RE: Session variable question

2002-04-23 Thread Christopher Olive
how are they accessing the application? with the machine's local (internal) name, or with www.blahblah.com (or whatever)? christopher olive cto, vp of web development, vp it security atnet solutions, inc. 410.931.4092 http://www.atnetsolutions.com -Original Message- From: Ben

RE: Session variable question

2002-04-23 Thread Chris Bohill
If there is a proxy server being used, the pages may be getting cached by the server. If cached, then user A can pull a cached page belonging to user B. The easiest solution is to add a random number at the end of each URL. This will mean the pages will never be the same (well the likelihood is

RE: Session variable question

2002-04-23 Thread Rafael (Alan Bleiweiss)
Are you setting client side cookies? At 11:18 AM 04/23/2002 -0400, you wrote: There is no Proxy server, at the moment the IP addresses are static. I thought maybe the machines were using the same IP Address, but they are not. Ben At 11:14 AM 4/23/2002, you wrote: are they running behind a

Re: A way to hide the CF source on a website?

2002-04-23 Thread Stephen Moretti
Is there a way to do this? What do you mean hide the CF source? Do you mean hide the fact that the page that a user is accessing is a ColdFusion page? Stephen __ This list and all House of Fusion resources hosted by

RE: A way to hide the CF source on a website?

2002-04-23 Thread Jerry Johnson
Except the CF source does not appear at the browser, that is server-side code. What appears at the browser is just the (HTML) or whatever mime info is being sent. Who is viewing the source that shouldn't? Is it the client/browser? They should not be seeing any CF. Is it the web host? Then

RE: A way to hide the CF source on a website?

2002-04-23 Thread Steve Green
You can't see the CF source on a website as its been processed server side 1st. All you see on the website is the resulting html. SteG. -Original Message- From: Charles Nahm [mailto:[EMAIL PROTECTED]] Sent: 23 April 2002 16:33 To: CF-Talk Subject: A way to hide the CF source on a

RE: Session variable question

2002-04-23 Thread Ben Densmore
They access it via http://machinename.domain.com:portnumber port 80 is blocked internally so we run the server on a different port for people to access it via url. Ben At 11:22 AM 4/23/2002, you wrote: how are they accessing the application? with the machine's local (internal) name,

RE: A way to hide the CF source on a website?

2002-04-23 Thread Haggerty, Michael A.
An excellent method I have used in the past is to include a file at the top of ech page with the following characters: !--- and another in the footer of each page with: //--- Good luck, M -Original Message- From: Charles Nahm [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002

Re: A way to hide the CF source on a website?

2002-04-23 Thread Alex
Try the encryption utility. Or if you have the time, write a utility like py2exe (python's executable generator). On Tue, 23 Apr 2002, Charles Nahm wrote: Is there a way to do this? Thanks, Charles __ Your ad could be

RE: A way to hide the CF source on a website?

2002-04-23 Thread Tony_Petruzzi
I'll be honest, there is not way! yes you can encrypt it with cfencrypt and I can download a program that will unencrypt it. there is no way for someone to right-click in their browser to view your CF code.(NOTE: this is possible with the .htr and a bunch of other security flaws. are you up to

Re: CFLIB question

2002-04-23 Thread Jeffry Houser
At 10:58 AM 4/23/2002 -0400, you wrote: I hope nobody takes offense at this question it is, however, a reasonable question from the bigger perspective of running a company... Does anyone at MM ever check the custom tags posted to the gallery or at MindTool check the UDFs posted to CFLIB for

RE: A way to hide the CF source on a website?

2002-04-23 Thread Tim Claremont
Yes, I guess I was not quite clear. Since the CF source does NOT appear, I only assumed that she meant the resultant HTML code. -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 11:29 AM To: CF-Talk Subject: RE: A way to hide the CF source

RE: CFLIB question

2002-04-23 Thread BillyC
I doubt MM would (nor should they be obligated to). However, I think (with the exception of CFX's and encrypted tags) the beauty of open source comes out (believe it or not, there's more to open source than politics and Slashdot MS bashing) - many eyes, so problems are unlikely to go unnoticed.

RE: A way to hide the CF source on a website?

2002-04-23 Thread Dave Watts
Subject: A way to hide the CF source on a website? Is there a way to do this? It depends on what you mean by this. The CFML within your script isn't sent to the browser; only the output of your script is sent to the browser. If you want to hide the CFML source from other people with access

end of month function

2002-04-23 Thread Perez, Percy
Hello all, Is there a End of month function in ColdFusion... I am trying to get the end of month for a date. excel has one, but I could not find one under the help files. eg: eomonth(1-15-2002) would return 1-31-2002 and of course, before I build one, I figure I ask first. Thanks Percy E

RE: A way to hide the CF source on a website?

2002-04-23 Thread Tony_Petruzzi
http://shrewm.net/cfd/ Anthony Petruzzi Webmaster 954-321-4703 [EMAIL PROTECTED] http://www.sheriff.org -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 11:28 AM To: CF-Talk Subject: Re: A way to hide the CF source on a website? Try the

RE: A way to hide the CF source on a website?

2002-04-23 Thread Charles Nahm
-Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED]] Depends on what you mean by hide and who you are wanting to hide it from. I guess by hide I mean things like file locations, IPs, certain keys and strings and such for server side processing of tasks such as CC validation or

Re: CF's Most Wanted ::

2002-04-23 Thread Douglas Brown
Hmmm why is this one going on so long. I realize that we have the ever so useful cffile tag, but would like to see something on the order of the cffile action=UPLOAD filefield=attachment ... being integrated into cfmail and on another note I would LOVE to see the ability for multiple attachments

RE: A way to hide the CF source on a website?

2002-04-23 Thread BillyC
Keep in mind that the Java .class file portability is only something that was mentioned in early whitepapers and some early demo's - until this is confirmed as being in the next product, I would caution against basing any business models on what is, until in a production-level product,

RE: CFLIB question

2002-04-23 Thread Raymond Camden
Does anyone at MM ever check the custom tags posted to the gallery or at MindTool check the UDFs posted to CFLIB for security flaws, hack code, etc? I can only speak for cflib.org. First, cflib.org is not run by Mindtool. Mindtool graciously allows us to use their server, so we

RE: Session variable question

2002-04-23 Thread Christopher Olive
win2k network? check the IIS logs, see what source IPs they're coming from. christopher olive cto, vp of web development, vp it security atnet solutions, inc. 410.931.4092 http://www.atnetsolutions.com -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: end of month function

2002-04-23 Thread Christopher Olive
the easy way would be to take the date, do a firstofmonth(dateadd(m, 1)) to it. christopher olive cto, vp of web development, vp it security atnet solutions, inc. 410.931.4092 http://www.atnetsolutions.com -Original Message- From: Perez, Percy [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: end of month function

2002-04-23 Thread BillyC
function eom(date) { return createDate(year(date),month(date),daysInMonth(date)); } --- Billy Cravens -Original Message- From: Perez, Percy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 10:33 AM To: CF-Talk Subject: end of month function Hello all, Is there a End

RE: A way to hide the CF source on a website?

2002-04-23 Thread Dave Watts
the only thing you can do is way until CFMX hits. if you happened to watch the presentation that they did for it at CFSOUTH, (can't remember which one, anyone know? they had this posted on MM site for awhile) supposedly you can now compile your CFM templates to JAVA CLASS files and

  1   2   3   >